Home
last modified time | relevance | path

Searched refs:typeCode (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/clang/utils/TableGen/
H A DNeonEmitter.cpp952 char typeCode = '\0'; in getInstTypeCode() local
962 typeCode = 'p'; in getInstTypeCode()
964 typeCode = T.isSigned() ? 's' : 'u'; in getInstTypeCode()
966 typeCode = 'f'; in getInstTypeCode()
969 switch (typeCode) { in getInstTypeCode()
975 typeCode = 'i'; in getInstTypeCode()
980 typeCode = '\0'; in getInstTypeCode()
984 if (typeCode != '\0') in getInstTypeCode()
985 S.push_back(typeCode); in getInstTypeCode()
1059 std::string typeCode = getInstTypeCode(BaseType, LocalCK); in mangleName() local
[all …]
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaInit.cpp1908 const char *typeCode; in CheckVectorType() local
1912 typeCode = "f"; in CheckVectorType()
1914 typeCode = "s"; in CheckVectorType()
1916 typeCode = "u"; in CheckVectorType()
1924 << typeCode << typeSize; in CheckVectorType()