Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/utils/TableGen/
HDNeonEmitter.cpp958 char typeCode = '\0'; in getInstTypeCode() local
965 typeCode = 'p'; in getInstTypeCode()
967 typeCode = T.isSigned() ? 's' : 'u'; in getInstTypeCode()
969 typeCode = 'f'; in getInstTypeCode()
972 switch (typeCode) { in getInstTypeCode()
978 typeCode = 'i'; in getInstTypeCode()
983 typeCode = '\0'; in getInstTypeCode()
987 if (typeCode != '\0') in getInstTypeCode()
988 S.push_back(typeCode); in getInstTypeCode()
1064 std::string typeCode = getInstTypeCode(BaseType, LocalCK); in mangleName() local
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaInit.cpp1438 const char *typeCode; in CheckVectorType() local
1442 typeCode = "f"; in CheckVectorType()
1444 typeCode = "s"; in CheckVectorType()
1446 typeCode = "u"; in CheckVectorType()
1454 << typeCode << typeSize; in CheckVectorType()