HomeSort by relevance Sort by last modified time
    Searched refs:PaddedSize (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Support/
Allocator.cpp 109 size_t PaddedSize = Size + sizeof(MemSlab) + Alignment - 1;
110 if (PaddedSize > SizeThreshold) {
111 MemSlab *NewSlab = Allocator.Allocate(PaddedSize);
  /external/llvm/include/llvm/Support/
Allocator.h 232 size_t PaddedSize = Size + Alignment - 1;
233 if (PaddedSize > SizeThreshold) {
234 void *NewSlab = Allocator.Allocate(PaddedSize, 0);
237 __asan_poison_memory_region(NewSlab, PaddedSize);
238 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize));
241 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize);
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 733 uint32_t PaddedSize = alignTo(SubSectionSize, 4);
734 if (PaddedSize > Data.size())
736 Data = Data.drop_front(PaddedSize)
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]

Completed in 93 milliseconds