OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SlabSize
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Support/
Allocator.cpp
25
:
SlabSize
(size), SizeThreshold(threshold), Allocator(allocator),
50
if (BytesAllocated >=
SlabSize
* 128)
51
SlabSize
*= 2;
53
MemSlab *NewSlab = Allocator.Allocate(
SlabSize
);
/external/llvm/unittests/ExecutionEngine/JIT/
JITMemoryManagerTest.cpp
239
size_t
SlabSize
= MemMgr->GetDefaultDataSlabSize();
241
int Iters = (
SlabSize
/ Size) + 1;
262
size_t
SlabSize
= MemMgr->GetDefaultStubSlabSize();
264
int Iters = (
SlabSize
/ Size) + 1;
/external/llvm/include/llvm/Support/
Allocator.h
94
///
SlabSize
- Allocate data into slabs of this size unless we get an
96
size_t
SlabSize
;
/external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp
374
size_t
SlabSize
= std::max(DefaultCodeSlabSize, PaddedMin);
375
sys::MemoryBlock B = allocateNewSlab(
SlabSize
);
Completed in 145 milliseconds