HomeSort by relevance Sort by last modified time
    Searched refs:PaddedSize (Results 1 - 10 of 10) 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/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
WebAssemblyMCCodeEmitter.cpp 130 size_t PaddedSize = 5;
135 PaddedSize = 10;
149 encodeULEB128(0, OS, 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Allocator.h 243 size_t PaddedSize = SizeToAllocate + Alignment - 1;
244 if (PaddedSize > SizeThreshold) {
245 void *NewSlab = Allocator.Allocate(PaddedSize, 0);
248 __asan_poison_memory_region(NewSlab, PaddedSize);
249 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize));
252 assert(AlignedAddr + Size <= (uintptr_t)NewSlab + PaddedSize);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Allocator.h 235 size_t PaddedSize = Size + Alignment - 1;
236 if (PaddedSize > SizeThreshold) {
237 void *NewSlab = Allocator.Allocate(PaddedSize, 0);
240 __asan_poison_memory_region(NewSlab, PaddedSize);
241 CustomSizedSlabs.push_back(std::make_pair(NewSlab, PaddedSize));
244 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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
COFFDumper.cpp     [all...]
ELFDumper.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 415 milliseconds