Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/runtime/
H A Drandom.cpp111 RUNTIME_CHECK(terminator, typeCode && typeCode->first == TypeCategory::Real); in RTNAME()
112 int kind{typeCode->second}; in RTNAME()
144 auto typeCode{size.type().GetCategoryAndKind()}; in RTNAME() local
146 size.rank() == 0 && typeCode && typeCode->first == TypeCategory::Integer); in RTNAME()
147 int kind{typeCode->second}; in RTNAME()
164 auto typeCode{put.type().GetCategoryAndKind()}; in RTNAME() local
166 put.rank() == 1 && typeCode && typeCode->first == TypeCategory::Integer && in RTNAME()
168 int kind{typeCode->second}; in RTNAME()
198 auto typeCode{got.type().GetCategoryAndKind()}; in RTNAME() local
200 got.rank() == 1 && typeCode && typeCode->first == TypeCategory::Integer && in RTNAME()
[all …]
H A Dcommand.cpp56 auto typeCode{length->type().GetCategoryAndKind()}; in IsValidIntDescriptor() local
60 length->type().IsInteger() && typeCode && typeCode->second != 1; in IsValidIntDescriptor()
146 auto typeCode{length->type().GetCategoryAndKind()}; in RTNAME() local
147 int kind{typeCode->second}; in RTNAME()
196 auto typeCode{length->type().GetCategoryAndKind()}; in RTNAME() local
197 int kind{typeCode->second}; in RTNAME()
H A Dtime-intrinsic.cpp211 auto typeCode{values->type().GetCategoryAndKind()}; in DateAndTimeUnavailable() local
214 typeCode && in DateAndTimeUnavailable()
215 typeCode->first == Fortran::common::TypeCategory::Integer); in DateAndTimeUnavailable()
218 int kind{typeCode->second}; in DateAndTimeUnavailable()
302 auto typeCode{values->type().GetCategoryAndKind()}; in GetDateAndTime() local
305 typeCode && in GetDateAndTime()
306 typeCode->first == Fortran::common::TypeCategory::Integer); in GetDateAndTime()
309 int kind{typeCode->second}; in GetDateAndTime()
H A Dreduction-templates.h166 TypeCode typeCode) { in CreatePartialReductionResult() argument
180 result.Establish(typeCode, x.ElementBytes(), nullptr, xRank - 1, resultExtent, in CreatePartialReductionResult()
/llvm-project-15.0.7/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()
1066 if (!typeCode.empty()) { in mangleName()
[all …]
/llvm-project-15.0.7/flang/lib/Optimizer/CodeGen/
H A DCodeGen.cpp1168 int typeCode = fir::integerBitsToTypeCode(width); in __anon447c3e180902() local
1170 this->genConstantOffset(loc, rewriter, typeCode)}; in __anon447c3e180902()
1174 int typeCode = fir::logicalBitsToTypeCode(width); in __anon447c3e180a02() local
1176 this->genConstantOffset(loc, rewriter, typeCode)}; in __anon447c3e180a02()
1179 int typeCode = fir::realBitsToTypeCode(width); in __anon447c3e180b02() local
1181 this->genConstantOffset(loc, rewriter, typeCode)}; in __anon447c3e180b02()
1185 auto typeCode = fir::complexBitsToTypeCode(width); in __anon447c3e180c02() local
1187 this->genConstantOffset(loc, rewriter, typeCode)}; in __anon447c3e180c02()
1192 auto typeCode = fir::characterBitsToTypeCode(width); in __anon447c3e180d02() local
1193 auto typeCodeVal = this->genConstantOffset(loc, rewriter, typeCode); in __anon447c3e180d02()
/llvm-project-15.0.7/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()