/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
H A D | BPF.cpp | 53 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 54 if (EIT->getNumBits() > Context.getTypeSize(Context.Int128Ty)) in classifyArgumentType() 73 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 74 if (EIT->getNumBits() > Context.getTypeSize(Context.Int128Ty)) in classifyReturnType()
|
H A D | PNaCl.cpp | 74 } else if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 77 if (EIT->getNumBits() > 64) in classifyArgumentType() 95 if (const auto *EIT = RetTy->getAs<BitIntType>()) { in classifyReturnType() local 96 if (EIT->getNumBits() > 64) in classifyReturnType()
|
H A D | Mips.cpp | 230 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 231 if (EIT->getNumBits() > 128 || in classifyArgumentType() 232 (EIT->getNumBits() > 64 && in classifyArgumentType() 321 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 322 if (EIT->getNumBits() > 128 || in classifyReturnType() 323 (EIT->getNumBits() > 64 && in classifyReturnType()
|
H A D | NVPTX.cpp | 114 if (const auto *EIT = T->getAs<BitIntType>()) in isUnsupportedType() local 115 return EIT->getNumBits() > in isUnsupportedType() 192 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 193 if ((EIT->getNumBits() > 128) || in classifyArgumentType() 195 EIT->getNumBits() > 64)) in classifyArgumentType()
|
H A D | Lanai.cpp | 129 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 130 if (EIT->getNumBits() > 64) in classifyArgumentType()
|
H A D | CSKY.cpp | 125 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 126 if (EIT->getNumBits() < XLen) in classifyArgumentType()
|
H A D | LoongArch.cpp | 378 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 379 if (EIT->getNumBits() < GRLen) in classifyArgumentType() 381 if (EIT->getNumBits() > 128 || in classifyArgumentType() 383 EIT->getNumBits() > 64)) in classifyArgumentType()
|
H A D | ARC.cpp | 130 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 131 if (EIT->getNumBits() > 64) in classifyArgumentType()
|
H A D | RISCV.cpp | 436 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 437 if (EIT->getNumBits() < XLen) in classifyArgumentType() 439 if (EIT->getNumBits() > 128 || in classifyArgumentType() 441 EIT->getNumBits() > 64)) in classifyArgumentType()
|
H A D | PPC.cpp | 723 if (const auto *EIT = Ty->getAs<BitIntType>()) in isPromotableTypeForABI() local 724 if (EIT->getNumBits() < 64) in isPromotableTypeForABI() 842 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 843 if (EIT->getNumBits() > 128) in classifyArgumentType() 918 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 919 if (EIT->getNumBits() > 128) in classifyReturnType()
|
H A D | ARM.cpp | 356 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 357 if (EIT->getNumBits() > 64) in classifyArgumentType() 558 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 559 if (EIT->getNumBits() > 64) in classifyReturnType()
|
H A D | Sparc.cpp | 245 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyType() local 246 if (EIT->getNumBits() < 64) in classifyType()
|
H A D | AArch64.cpp | 302 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 303 if (EIT->getNumBits() > 128) in classifyArgumentType() 405 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 406 if (EIT->getNumBits() > 128) in classifyReturnType()
|
H A D | SystemZ.cpp | 154 if (const auto *EIT = Ty->getAs<BitIntType>()) in isPromotableIntegerTypeForABI() local 155 if (EIT->getNumBits() < 64) in isPromotableIntegerTypeForABI()
|
H A D | X86.cpp | 570 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 571 if (EIT->getNumBits() > 64) in classifyReturnType() 897 if (const auto *EIT = Ty->getAs<BitIntType>()) { in classifyArgumentType() local 898 if (EIT->getNumBits() <= 64) { in classifyArgumentType()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | ABIInfoImpl.cpp | 34 if (const auto *EIT = Ty->getAs<BitIntType>()) in classifyArgumentType() local 35 if (EIT->getNumBits() > in classifyArgumentType() 56 if (const auto *EIT = RetTy->getAs<BitIntType>()) in classifyReturnType() local 57 if (EIT->getNumBits() > in classifyReturnType()
|
H A D | ABIInfo.cpp | 167 if (const auto *EIT = Ty->getAs<BitIntType>()) in isPromotableIntegerTypeForABI() local 168 if (EIT->getNumBits() < getContext().getTypeSize(getContext().IntTy)) in isPromotableIntegerTypeForABI()
|
H A D | CodeGenTBAA.cpp | 265 if (const auto *EIT = dyn_cast<BitIntType>(Ty)) { in getTypeInfoHelper() local 270 Out << "_BitInt(" << EIT->getNumBits() << ')'; in getTypeInfoHelper()
|
H A D | CodeGenTypes.cpp | 769 const auto &EIT = cast<BitIntType>(Ty); in ConvertType() local 770 ResultType = llvm::Type::getIntNTy(getLLVMContext(), EIT->getNumBits()); in ConvertType()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTContext.cpp | 2302 const auto *EIT = cast<BitIntType>(T); in getTypeInfoImpl() local 2303 Align = Target->getBitIntAlign(EIT->getNumBits()); in getTypeInfoImpl() 2304 Width = Target->getBitIntWidth(EIT->getNumBits()); in getTypeInfoImpl() 4968 if (BitIntType *EIT = BitIntTypes.FindNodeOrInsertPos(ID, InsertPos)) in getBitIntType() local 4969 return QualType(EIT, 0); in getBitIntType() 7498 if (const auto *EIT = dyn_cast<BitIntType>(T)) in getIntegerRank() local 7499 return 0 + (EIT->getNumBits() << 3); in getIntegerRank() 11492 if (const auto *EIT = T->getAs<BitIntType>()) in getIntWidth() local 11493 return EIT->getNumBits(); in getIntWidth()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaChecking.cpp | 9318 if (const auto *EIT = dyn_cast<BitIntType>(T)) in forValueOfCanonicalType() local 9319 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); in forValueOfCanonicalType() 9344 if (const auto *EIT = dyn_cast<BitIntType>(T)) in forTargetOfCanonicalType() local 9345 return IntRange(EIT->getNumBits(), EIT->isUnsigned()); in forTargetOfCanonicalType()
|
H A D | TreeTransform.h | 6976 const BitIntType *EIT = TL.getTypePtr(); in TransformBitIntType() local 6980 Result = getDerived().RebuildBitIntType(EIT->isUnsigned(), in TransformBitIntType() 6981 EIT->getNumBits(), TL.getNameLoc()); in TransformBitIntType() 6994 const DependentBitIntType *EIT = TL.getTypePtr(); in TransformDependentBitIntType() local 6998 ExprResult BitsExpr = getDerived().TransformExpr(EIT->getNumBitsExpr()); in TransformDependentBitIntType() 7006 if (getDerived().AlwaysRebuild() || BitsExpr.get() != EIT->getNumBitsExpr()) { in TransformDependentBitIntType() 7008 EIT->isUnsigned(), BitsExpr.get(), TL.getNameLoc()); in TransformDependentBitIntType()
|
/freebsd/contrib/tzcode/ |
H A D | NEWS | 4208 Use WIB/WITA/WIT rather than WIT/CIT/EIT for alphabetic Indonesian
|
/freebsd/contrib/tzdata/ |
H A D | NEWS | 4286 Use WIB/WITA/WIT rather than WIT/CIT/EIT for alphabetic Indonesian
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | funstack.in | 14367 @Article{Shwayder:1974:EIT,
|