Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DNeonEmitter.cpp951 char typeCode = '\0'; in getInstTypeCode() local
961 typeCode = 'p'; in getInstTypeCode()
963 typeCode = T.isSigned() ? 's' : 'u'; in getInstTypeCode()
965 typeCode = 'f'; in getInstTypeCode()
968 switch (typeCode) { in getInstTypeCode()
974 typeCode = 'i'; in getInstTypeCode()
979 typeCode = '\0'; in getInstTypeCode()
983 if (typeCode != '\0') in getInstTypeCode()
984 S.push_back(typeCode); in getInstTypeCode()
1058 std::string typeCode = getInstTypeCode(BaseType, LocalCK); in mangleName() local
[all …]
/netbsd-src/external/bsd/ipf/dist/perl/
H A Dplog969 my $typeCode = shift;
970 my ($type, $code) = split ('\.', $typeCode);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaInit.cpp1768 const char *typeCode; in CheckVectorType() local
1772 typeCode = "f"; in CheckVectorType()
1774 typeCode = "s"; in CheckVectorType()
1776 typeCode = "u"; in CheckVectorType()
1784 << typeCode << typeSize; in CheckVectorType()