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
116
if (allocated_end_ -
allocated_current_
< (sptr)size) {
118
allocated_current_
=
120
allocated_end_ =
allocated_current_
+ size_to_allocate;
122
low_level_alloc_callback((uptr)
allocated_current_
,
126
CHECK(allocated_end_ -
allocated_current_
>= (sptr)size);
127
void *res =
allocated_current_
;
128
allocated_current_
+= size;
sanitizer_common.h
100
char *
allocated_current_
;
member in class:__sanitizer::LowLevelAllocator
Completed in 167 milliseconds