Searched defs:PtrWidth (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Support/
H A DSignals.cpp61 unsigned PtrWidth = 2 + 2 * sizeof(void *); local
62 return format_hex((uint64_t)PC, PtrWidth);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp33 uint64_t PtrWidth; member in class:__anon1525::WalkAST
41 return (ASTC.getTypeSize(T) == PtrWidth);
77 PtrWidth(ASTC.getTargetInfo().getPointerWidth(0)) {}
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp1038 unsigned PtrWidth = DL.getPointerTypeSizeInBits(CE->getType()); local
1039 if (PtrWidth < InWidth) {
1042 APInt::getLowBitsSet(InWidth, PtrWidth));
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp740 uint32_t PtrWidth = DL.getTypeSizeInBits(Op0->getType()); local
741 assert(PtrWidth <= 64 && "Bad pointer width");
742 GV.IntVal = APInt(PtrWidth, uintptr_t(GV.PointerVal));
749 uint32_t PtrWidth = DL.getTypeSizeInBits(CE->getType()); local
750 GV.IntVal = GV.IntVal.zextOrTrunc(PtrWidth);
/external/clang/lib/AST/
H A DRecordLayoutBuilder.cpp1020 CharUnits PtrWidth = local
1026 setSize(getSize() + PtrWidth);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp7069 unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType()); local
7070 APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0);

Completed in 256 milliseconds