reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/utils/TableGen/NeonEmitter.cpp
  621     S += "v";
  624     case 8: S += "c"; break;
  625     case 16: S += "s"; break;
  626     case 32: S += "i"; break;
  627     case 64: S += "Wi"; break;
  628     case 128: S += "LLLi"; break;
  633     case 16: S += "h"; break;
  634     case 32: S += "f"; break;
  635     case 64: S += "d"; break;
  641     S = "S" + S;
  641     S = "S" + S;
  643     S = "U" + S;
  643     S = "U" + S;
  648     S = "I" + S;
  648     S = "I" + S;
  652     if (Constant) S += "C";
  653     if (Pointer) S += "*";
  654     return S;
  659     Ret += "V" + utostr(getNumElements()) + S;