Searched refs:SizeInBits (Results 1 – 7 of 7) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
D | DIBuilder.h | 111 DIType createBasicType(StringRef Name, uint64_t SizeInBits, 125 DIType createPointerType(DIType PointeeTy, uint64_t SizeInBits, 166 unsigned LineNo, uint64_t SizeInBits, 186 unsigned LineNo, uint64_t SizeInBits, 206 unsigned LineNo, uint64_t SizeInBits, 243 unsigned LineNumber, uint64_t SizeInBits, 260 unsigned LineNumber, uint64_t SizeInBits, 275 unsigned LineNumber, uint64_t SizeInBits, 334 uint64_t SizeInBits,
|
/external/llvm/lib/Analysis/ |
D | DIBuilder.cpp | 173 DIType DIBuilder::createBasicType(StringRef Name, uint64_t SizeInBits, in createBasicType() argument 185 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits), in createBasicType() 214 DIType DIBuilder::createPointerType(DIType PointeeTy, uint64_t SizeInBits, in createPointerType() argument 223 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits), in createPointerType() 315 uint64_t SizeInBits, uint64_t AlignInBits, in createMemberType() argument 325 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits), in createMemberType() 338 uint64_t SizeInBits, uint64_t AlignInBits, in createObjCIVar() argument 350 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits), in createObjCIVar() 367 uint64_t SizeInBits, uint64_t AlignInBits, in createObjCIVar() argument 377 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits), in createObjCIVar() [all …]
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopIdiomRecognize.cpp | 276 uint64_t SizeInBits = TD->getTypeSizeInBits(StoredVal->getType()); in processLoopStore() local 277 if ((SizeInBits & 7) || (SizeInBits >> 32) != 0) in processLoopStore() 290 unsigned StoreSize = (unsigned)SizeInBits >> 3; in processLoopStore()
|
/external/clang/lib/Serialization/ |
D | Module.cpp | 24 : Kind(Kind), DirectlyImported(false), Generation(Generation), SizeInBits(0), in ModuleFile()
|
D | ASTReader.cpp | 2728 F.SizeInBits = F.Buffer->getBufferSize() * 8; in ReadASTCore() 2792 TotalModulesSizeInBits += F.SizeInBits; in ReadASTCore()
|
/external/clang/include/clang/Serialization/ |
D | Module.h | 89 uint64_t SizeInBits; variable
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 473 static bool isTypeSigned(DIType Ty, int *SizeInBits) { in isTypeSigned() argument 475 return isTypeSigned(DIDerivedType(Ty).getTypeDerivedFrom(), SizeInBits); in isTypeSigned() 479 *SizeInBits = Ty.getSizeInBits(); in isTypeSigned() 490 int SizeInBits = -1; in addConstantValue() local 491 bool SignedConstant = isTypeSigned(Ty, &SizeInBits); in addConstantValue() 493 switch (SizeInBits) { in addConstantValue()
|