Searched defs:StorageSize (Results 1 - 5 of 5) sorted by relevance
/external/clang/lib/CodeGen/ |
H A D | CGRecordLayout.h | 79 unsigned StorageSize; member in struct:clang::CodeGen::CGBitFieldInfo 85 : Offset(), Size(), IsSigned(), StorageSize(), StorageOffset() {} 88 unsigned StorageSize, CharUnits StorageOffset) 90 StorageSize(StorageSize), StorageOffset(StorageOffset) {} 101 uint64_t StorageSize, 87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned, unsigned StorageSize, CharUnits StorageOffset) argument
|
H A D | CGObjCRuntime.cpp | 123 CharUnits StorageSize = local 136 CGF.CGM.getContext().toBits(StorageSize), 142 Info->StorageSize));
|
H A D | CGRecordLayoutBuilder.cpp | 230 Info.StorageSize = (unsigned)DataLayout.getTypeAllocSizeInBits(StorageType); 232 if (Info.Size > Info.StorageSize) 233 Info.Size = Info.StorageSize; 239 Info.Offset = Info.StorageSize - (Info.Offset + Info.Size); 649 uint64_t StorageSize, 679 Offset = StorageSize - (Offset + Size); 682 return CGBitFieldInfo(Offset, Size, IsSigned, StorageSize, StorageOffset); 794 Info.StorageSize && 799 assert(Info.StorageSize <= SL->getSizeInBits() && 802 assert(Info.StorageSize 646 MakeInfo(CodeGenTypes &Types, const FieldDecl *FD, uint64_t Offset, uint64_t Size, uint64_t StorageSize, CharUnits StorageOffset) argument [all...] |
/external/openfst/src/include/fst/extensions/ngram/ |
H A D | bitmap-index.h | 43 static size_t StorageSize(size_t size) { function in class:fst::BitmapIndex 67 return StorageSize(size_);
|
H A D | ngram-fst.h | 132 strm.write(data_, StorageSize()); 185 BitmapIndex::StorageSize(num_states * 2 + 1) + 186 BitmapIndex::StorageSize(num_futures + num_states + 1) + 187 BitmapIndex::StorageSize(num_states)); 229 *data_size = StorageSize(); 241 size_t StorageSize() const { function in class:fst::NGramFstImpl 422 offset += BitmapIndex::StorageSize(num_states * 2 + 1) * sizeof(b64); 425 BitmapIndex::StorageSize(num_futures + num_states + 1) * sizeof(b64); 427 offset += BitmapIndex::StorageSize(num_states) * sizeof(b64); 530 offset += BitmapIndex::StorageSize(context_bit 722 size_t StorageSize() const { function in class:fst::NGramFst [all...] |
Completed in 86 milliseconds