Searched defs:StorageSize (Results 1 - 7 of 7) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGRecordLayout.h79 unsigned StorageSize; member in struct:clang::CodeGen::CGBitFieldInfo
85 : Offset(), Size(), IsSigned(), StorageSize(), StorageAlignment() {}
88 unsigned StorageSize, unsigned StorageAlignment)
90 StorageSize(StorageSize), StorageAlignment(StorageAlignment) {}
101 uint64_t StorageSize,
87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned, unsigned StorageSize, unsigned StorageAlignment) argument
H A DCGObjCRuntime.cpp123 CharUnits StorageSize = local
136 CGF.CGM.getContext().toBits(StorageSize),
141 Info->StorageSize));
H A DCGRecordLayoutBuilder.cpp219 Info.StorageSize = (unsigned)DataLayout.getTypeAllocSizeInBits(StorageType);
225 if (Info.Size > Info.StorageSize)
226 Info.Size = Info.StorageSize;
232 Info.Offset = Info.StorageSize - (Info.Offset + Info.Size);
606 uint64_t StorageSize,
636 Offset = StorageSize - (Offset + Size);
639 return CGBitFieldInfo(Offset, Size, IsSigned, StorageSize, StorageAlignment);
747 Info.StorageSize &&
752 assert(Info.StorageSize <= SL->getSizeInBits() &&
755 assert(Info.StorageSize
603 MakeInfo(CodeGenTypes &Types, const FieldDecl *FD, uint64_t Offset, uint64_t Size, uint64_t StorageSize, uint64_t StorageAlignment) argument
[all...]
/external/openfst/src/include/fst/extensions/ngram/
H A Dbitmap-index.h43 static size_t StorageSize(size_t size) { function in class:fst::BitmapIndex
67 return StorageSize(size_);
H A Dngram-fst.h132 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...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dstats.cc155 int Stats::StorageSize() { function in class:disk_cache::Stats
/external/chromium_org/third_party/skia/src/core/
H A DSkTextBlob.cpp62 static size_t StorageSize(int glyphCount, SkTextBlob::GlyphPositioning positioning) { function in class:SkTextBlob::RunRecord
76 + StorageSize(run->glyphCount(), run->positioning()));
373 size_t sizeDelta = SkTextBlob::RunRecord::StorageSize(run->glyphCount() + count, positioning) -
374 SkTextBlob::RunRecord::StorageSize(run->glyphCount(), positioning);
404 size_t runSize = SkTextBlob::RunRecord::StorageSize(count, positioning);
473 validateSize += SkTextBlob::RunRecord::StorageSize(run->fCount, run->fPositioning);

Completed in 143 milliseconds