/dalvik/hit/src/com/android/hit/ |
Types.java | 36 public static final int getTypeSize(int type) {
|
ArrayInstance.java | 46 int idSize = Types.getTypeSize(mType); 101 int idSize = Types.getTypeSize(mType); 145 int idSize = Types.getTypeSize(mType);
|
ClassInstance.java | 60 int size = Types.getTypeSize(type); 120 int size = Types.getTypeSize(type); 174 int size = Types.getTypeSize(type);
|
ClassObj.java | 63 int size = Types.getTypeSize(type); 205 int size = Types.getTypeSize(type);
|
HprofParser.java | 471 int fieldSize = Types.getTypeSize(fieldType); 558 int size = Types.getTypeSize(type); 591 int size = Types.getTypeSize(type);
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
BasicValueFactory.h | 110 unsigned bitwidth = Ctx.getTypeSize(T); 137 return getValue(llvm::APSInt::getMaxValue(Ctx.getTypeSize(T), isUnsigned)); 144 return getValue(llvm::APSInt::getMinValue(Ctx.getTypeSize(T), isUnsigned)); 160 return getValue(0, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned); 164 return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned); 168 return getValue(b ? 1 : 0, Ctx.getTypeSize(T), false);
|
SValBuilder.h | 65 ArrayIndexWidth(context.getTypeSize(ArrayIndexTy)) {}
|
/external/clang/lib/CodeGen/ |
TargetInfo.cpp | 245 uint64_t Size = Context.getTypeSize(Ty); 444 uint64_t Size = Context.getTypeSize(Ty); 501 uint64_t Size = getContext().getTypeSize(RetTy); 546 uint64_t Size = getContext().getTypeSize(RetTy); 552 assert(getContext().getTypeSize(RetTy) == 553 getContext().getTypeSize(SeltTy) && 559 assert(getContext().getTypeSize(RetTy) == 560 getContext().getTypeSize(SeltTy) && 572 uint64_t Size = getContext().getTypeSize(RetTy); 583 uint64_t Size = getContext().getTypeSize(RetTy) [all...] |
CGDebugInfo.cpp | 311 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy); 363 uint64_t Size = CGM.getContext().getTypeSize(BT); 376 uint64_t Size = CGM.getContext().getTypeSize(Ty); 477 // Size is always the size of a pointer. We can't use getTypeSize here 516 uint64_t Size = CGM.getContext().getTypeSize(Ty); 531 FieldSize = CGM.getContext().getTypeSize(Ty); [all...] |
CodeGenTypes.cpp | 93 (unsigned)Context.getTypeSize(T)); 342 static_cast<unsigned>(Context.getTypeSize(T)));
|
CGStmt.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
FlatStore.cpp | 197 int64_t Size = Ctx.getTypeSize(T); 209 int64_t Size = Ctx.getTypeSize(cast<TypedRegion>(R)->getValueType());
|
SimpleSValBuilder.cpp | 69 unsigned castSize = Context.getTypeSize(castTy); 102 i = i.extOrTrunc(Context.getTypeSize(castTy)); 127 unsigned BitWidth = Context.getTypeSize(castTy); 313 i = i.extOrTrunc(Context.getTypeSize(Context.VoidPtrTy)); 856 if (ctx.getTypeSize(ctx.VoidPtrTy) == x->getBitWidth()) { [all...] |
BasicValueFactory.cpp | 103 unsigned bits = Ctx.getTypeSize(T);
|
SimpleConstraintManager.cpp | 264 unsigned bitwidth = Ctx.getTypeSize(T);
|
BasicStore.cpp | 121 if (T->isIntegerType() && C.getTypeSize(T) == C.getTypeSize(C.VoidPtrTy))
|
/external/clang/lib/Sema/ |
SemaCXXCast.cpp | [all...] |
SemaExpr.cpp | [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
CallAndMessageChecker.cpp | 321 const uint64_t voidPtrSize = Ctx.getTypeSize(Ctx.VoidPtrTy); 322 const uint64_t returnTypeSize = Ctx.getTypeSize(CanRetTy);
|
BasicObjCFoundationChecks.cpp | 221 return Ctx.getTypeSize(T); 305 uint64_t SourceSize = Ctx.getTypeSize(T);
|
/frameworks/compile/slang/ |
slang_rs_object_ref_count.cpp | 523 llvm::APInt(C.getTypeSize(C.IntTy), 0), C.IntTy, Loc); 536 llvm::APInt(C.getTypeSize(C.IntTy), NumArrayElements), C.IntTy, Loc); 886 llvm::APInt(C.getTypeSize(C.IntTy), 0), C.IntTy, Loc); 899 llvm::APInt(C.getTypeSize(C.IntTy), NumArrayElements), C.IntTy, Loc); [all...] |
/external/clang/include/clang/AST/ |
ASTContext.h | [all...] |
/external/clang/lib/AST/ |
ASTContext.cpp | 693 MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType))) 743 /// getTypeSize - Return the size of the specified type, in bits. This method [all...] |
ExprConstant.cpp | 721 Value.getInt() = Value.getInt().extOrTrunc((unsigned)Info.Ctx.getTypeSize(E->getType())); 792 unsigned EltWidth = Info.Ctx.getTypeSize(EltTy); [all...] |
Type.cpp | 59 unsigned SizeTypeBits = Context.getTypeSize(Context.getSizeType()); 72 unsigned Bits = Context.getTypeSize(Context.getSizeType()); [all...] |