OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:allocated_current_
(Results
1 - 2
of
2
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc
58
if (allocated_end_ -
allocated_current_
< (sptr)size) {
60
allocated_current_
=
62
allocated_end_ =
allocated_current_
+ size_to_allocate;
64
low_level_alloc_callback((uptr)
allocated_current_
,
68
CHECK(allocated_end_ -
allocated_current_
>= (sptr)size);
69
void *res =
allocated_current_
;
70
allocated_current_
+= size;
sanitizer_common.h
99
char *
allocated_current_
;
member in class:__sanitizer::LowLevelAllocator
Completed in 35 milliseconds