/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ObjCContainersASTChecker.cpp | 33 uint64_t PtrWidth; member in __anon8b1e948a0111::WalkAST 41 return (ASTC.getTypeSize(T) == PtrWidth); in isPointerSize() 76 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {} in WalkAST()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | Signals.cpp | 61 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local 62 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
|
/external/llvm/lib/Support/ |
D | Signals.cpp | 61 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local 62 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | Signals.cpp | 99 unsigned PtrWidth = 2 + 2 * sizeof(void *); in format_ptr() local 100 return format_hex((uint64_t)PC, PtrWidth); in format_ptr()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 637 uint32_t PtrWidth = TD->getPointerSizeInBits(); in getConstantValue() local 638 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue() 643 uint32_t PtrWidth = TD->getPointerSizeInBits(); in getConstantValue() local 644 if (PtrWidth != GV.IntVal.getBitWidth()) in getConstantValue() 645 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
|
/external/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 735 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); in getConstantValue() local 736 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue() 737 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue() 744 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); in getConstantValue() local 745 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/ |
D | ExecutionEngine.cpp | 738 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); in getConstantValue() local 739 assert(PtrWidth <= 64 && "Bad pointer width"); in getConstantValue() 740 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal)); in getConstantValue() 747 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); in getConstantValue() local 748 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth); in getConstantValue()
|
/external/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 1194 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); in ConstantFoldCastOperand() local 1195 if (PtrWidth < InWidth) { in ConstantFoldCastOperand() 1198 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldCastOperand()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 1286 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); in ConstantFoldCastOperand() local 1287 if (PtrWidth < InWidth) { in ConstantFoldCastOperand() 1290 APInt::getLowBitsSet(InWidth, PtrWidth)); in ConstantFoldCastOperand()
|
/external/clang/lib/AST/ |
D | RecordLayoutBuilder.cpp | 1020 CharUnits PtrWidth = in LayoutNonVirtualBases() local 1026 setSize(getSize() + PtrWidth); in LayoutNonVirtualBases()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 7025 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); in InferPtrAlignment() local 7026 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0); in InferPtrAlignment()
|
/external/clang/lib/CodeGen/ |
D | TargetInfo.cpp | 6482 unsigned PtrWidth = getTarget().getPointerWidth(0); in EmitVAArg() local 6486 (Ty->isPointerType() && PtrWidth < SlotSizeInBits)) { in EmitVAArg()
|