Searched defs:IntSize (Results 1 - 7 of 7) sorted by relevance
/external/clang/lib/AST/ |
H A D | MicrosoftCXXABI.cpp | 247 unsigned IntSize = Target.getIntWidth(); local 251 uint64_t Width = Ptrs * PtrSize + Ints * IntSize;
|
H A D | ASTContext.cpp | 4682 uint64_t IntSize = getTypeSize(IntTy); local 4697 if (BitWidth < IntSize) 4700 if (BitWidth == IntSize) 4750 uint64_t IntSize = getIntWidth(IntTy); local 4751 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); 4752 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy;
|
/external/v8/tools/ |
H A D | grokdump.py | 1092 return self.InstanceSizesOffset() + self.heap.IntSize() 1108 return self.InstanceAttributesOffset() + self.heap.IntSize() 1500 return 12 * self.heap.PointerSize() + 4 * self.heap.IntSize() 1503 return 12 * self.heap.PointerSize() + 5 * self.heap.IntSize() 1570 return (heap.PointerSize() + heap.IntSize() + \ 1571 4 * heap.PointerSize() + 3 * heap.IntSize() + \ 1662 def IntSize(self): member in class:V8Heap
|
/external/clang/lib/CodeGen/ |
H A D | MicrosoftCXXABI.cpp | 1052 CharUnits IntSize = Context.getTypeSizeInChars(Context.IntTy); local 1054 IntSize * 2099 int32_t IntSize = CGF.getIntSize().getQuantity(); local 2103 IntSize * RA.Virtual.Microsoft.VBIndex, &VBPtr);
|
/external/clang/lib/Frontend/Rewrite/ |
H A D | RewriteObjC.cpp | 2993 unsigned IntSize = local 2996 llvm::APInt(IntSize, 8), 4143 unsigned IntSize = local 4148 unsigned offset = (VoidPtrSize*4 + IntSize + IntSize)/Context->getCharWidth(); 4543 unsigned IntSize = local 4545 Expr *FlagExp = IntegerLiteral::Create(*Context, llvm::APInt(IntSize, flag),
|
H A D | RewriteModernObjC.cpp | 2626 unsigned IntSize = local 2630 llvm::APInt(IntSize, Exp->getValue()), 5057 unsigned IntSize = local 5062 unsigned offset = (VoidPtrSize*4 + IntSize + IntSize)/Context->getCharWidth(); 5474 unsigned IntSize = local 5476 Expr *FlagExp = IntegerLiteral::Create(*Context, llvm::APInt(IntSize, flag),
|
/external/clang/lib/Sema/ |
H A D | SemaExpr.cpp | 3111 unsigned IntSize = Context.getTargetInfo().getIntWidth(); local 3112 return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val), 3366 unsigned IntSize = Context.getTargetInfo().getIntWidth(); local 3369 if (ResultVal.isIntN(IntSize)) { 3371 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) 3375 Width = IntSize;
|
Completed in 304 milliseconds