OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:size_to_allocate
(Results
1 - 3
of
3
) sorted by relevancy
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_allocator.cc
205
uptr
size_to_allocate
= Max(size, GetPageSizeCached());
local
207
(char*)MmapOrDie(
size_to_allocate
, __func__);
208
allocated_end_ = allocated_current_ +
size_to_allocate
;
211
size_to_allocate
);
/src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_allocator.cpp
153
uptr
size_to_allocate
= RoundUpTo(
local
155
allocated_current_ = (char *)MmapOrDie(
size_to_allocate
, __func__);
156
allocated_end_ = allocated_current_ +
size_to_allocate
;
158
low_level_alloc_callback((uptr)allocated_current_,
size_to_allocate
);
/src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_allocator.cpp
199
uptr
size_to_allocate
= RoundUpTo(size, GetPageSizeCached());
local
201
(char*)MmapOrDie(
size_to_allocate
, __func__);
202
allocated_end_ = allocated_current_ +
size_to_allocate
;
205
size_to_allocate
);
Completed in 27 milliseconds
Indexes created Sat Jul 04 00:25:45 UTC 2026