Searched refs:StorageSize (Results 1 - 12 of 12) 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 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...]
H A DCGObjCRuntime.cpp123 CharUnits StorageSize = local
136 CGF.CGM.getContext().toBits(StorageSize),
141 Info->StorageSize));
H A DCGExpr.cpp1305 assert(static_cast<unsigned>(Info.Offset + Info.Size) <= Info.StorageSize);
1306 unsigned HighBits = Info.StorageSize - Info.Offset - Info.Size;
1314 if (static_cast<unsigned>(Info.Offset) + Info.Size < Info.StorageSize)
1315 Val = Builder.CreateAnd(Val, llvm::APInt::getLowBitsSet(Info.StorageSize,
1489 if (Info.StorageSize != Info.Size) {
1490 assert(Info.StorageSize > Info.Size && "Invalid bitfield size.");
1498 llvm::APInt::getLowBitsSet(Info.StorageSize,
1507 ~llvm::APInt::getBitsSet(Info.StorageSize,
1529 assert(Info.Size <= Info.StorageSize);
1530 unsigned HighBits = Info.StorageSize
[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.h63 int StorageSize();
H A Dstats.cc155 int Stats::StorageSize() { function in class:disk_cache::Stats
H A Dbackend_worker_v3.cc422 int size = stats_.StorageSize();
H A Dbackend_impl_v3.cc769 int size = stats_.StorageSize();
806 int size = stats_.StorageSize();
H A Dbackend_impl.cc1406 int size = stats_.StorageSize();
1445 int size = stats_.StorageSize();
/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 6235 milliseconds