HomeSort by relevance Sort by last modified time
    Searched refs:getTypeSize (Results 1 - 25 of 61) sorted by null

1 2 3

  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 117 size_t getTypeSize(Type * const T, bool dereferencePtr = false);
118 size_t getTypeSize(StructType * const ST, bool dereferencePtr = false);
119 size_t getTypeSize(IntegerType * const IT, bool dereferencePtr = false);
120 size_t getTypeSize(FunctionType * const FT,bool dereferencePtr = false);
121 size_t getTypeSize(ArrayType * const AT, bool dereferencePtr = false);
122 size_t getTypeSize(VectorType * const VT, bool dereferencePtr = false);
123 size_t getTypeSize(PointerType * const PT, bool dereferencePtr = false);
124 size_t getTypeSize(OpaqueType * const OT, bool dereferencePtr = false);
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 117 size_t getTypeSize(Type * const T, bool dereferencePtr = false);
118 size_t getTypeSize(StructType * const ST, bool dereferencePtr = false);
119 size_t getTypeSize(IntegerType * const IT, bool dereferencePtr = false);
120 size_t getTypeSize(FunctionType * const FT,bool dereferencePtr = false);
121 size_t getTypeSize(ArrayType * const AT, bool dereferencePtr = false);
122 size_t getTypeSize(VectorType * const VT, bool dereferencePtr = false);
123 size_t getTypeSize(PointerType * const PT, bool dereferencePtr = false);
124 size_t getTypeSize(OpaqueType * const OT, bool dereferencePtr = false);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BasicValueFactory.h 97 return APSIntType(Ctx.getTypeSize(T),
154 return getValue(0, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
158 return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
162 return getValue(b ? 1 : 0, Ctx.getTypeSize(T), false);
SValBuilder.h 69 ArrayIndexWidth(context.getTypeSize(ArrayIndexTy)) {}
  /external/clang/lib/CodeGen/
TargetInfo.cpp 287 if (Found && Context.getTypeSize(Found) != Context.getTypeSize(T))
305 uint64_t Size = Context.getTypeSize(Ty);
346 Size += Context.getTypeSize(FD->getType());
350 if (Size != Context.getTypeSize(Ty))
608 uint64_t Size = Context.getTypeSize(Ty);
674 uint64_t Size = getContext().getTypeSize(RetTy);
714 uint64_t Size = getContext().getTypeSize(RetTy);
743 return Ty->getAs<VectorType>() && Context.getTypeSize(Ty) == 128;
839 unsigned Size = getContext().getTypeSize(Ty)
    [all...]
CodeGenTypes.cpp 96 (unsigned)Context.getTypeSize(T));
353 static_cast<unsigned>(Context.getTypeSize(T)));
596 uint64_t valueSize = Context.getTypeSize(valueType);
597 uint64_t atomicSize = Context.getTypeSize(Ty);
622 return Context.getTypeSize(type) != Context.getTypeSize(type->getValueType());
CGDebugInfo.cpp 439 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
481 CGM.getContext().getTypeSize(BT),
523 uint64_t Size = CGM.getContext().getTypeSize(BT);
536 uint64_t Size = CGM.getContext().getTypeSize(Ty);
673 // Size is always the size of a pointer. We can't use getTypeSize here
689 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
723 uint64_t Size = CGM.getContext().getTypeSize(Ty);
738 FieldSize = CGM.getContext().getTypeSize(Ty);
    [all...]
CGStmt.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmtAsm.cpp 182 unsigned Size = Context.getTypeSize(Ty);
258 unsigned Size = Context.getTypeSize(Ty);
314 uint64_t OutSize = Context.getTypeSize(OutTy);
315 uint64_t InSize = Context.getTypeSize(InTy);
SemaCast.cpp     [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 53 static size_t getTypeSize(uint8_t type) {
73 size_t typeSize = getTypeSize(type);
242 size_t tagSize = Helpers::getTypeSize(tagType);
279 size_t tagSize = Helpers::getTypeSize(tagType);
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersASTChecker.cpp 40 return (ASTC.getTypeSize(T) == PtrWidth);
CallAndMessageChecker.cpp 448 const uint64_t voidPtrSize = Ctx.getTypeSize(Ctx.VoidPtrTy);
449 const uint64_t returnTypeSize = Ctx.getTypeSize(CanRetTy);
BasicObjCFoundationChecks.cpp 367 return Ctx.getTypeSize(T);
451 uint64_t SourceSize = Ctx.getTypeSize(T);
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraMetadataNative.java 160 private static int getTypeSize(int nativeType) {
240 return getTypeSize(nativeType);
384 int elementSize = getTypeSize(nativeType);
412 int primitiveSize = getTypeSize(nativeType);
  /external/clang/lib/Analysis/
BodyFarm.cpp 202 IntegerLiteral::Create(C, llvm::APInt(C.getTypeSize(C.IntTy), (uint64_t) 1),
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 77 unsigned castSize = Context.getTypeSize(castTy);
141 unsigned BitWidth = Context.getTypeSize(castTy);
260 uint64_t TypeWidth = Ctx.getTypeSize(SymbolType);
    [all...]
  /external/clang/include/clang/AST/
ASTContext.h     [all...]
  /external/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp     [all...]
  /external/clang/lib/AST/
ASTContext.cpp     [all...]

Completed in 1510 milliseconds

1 2 3