OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:malloc_usable_size
(Results
26 - 33
of
33
) sorted by null
1
2
/bionic/libc/bionic/
ndk_cruft.cpp
316
// Old versions of the NDK did not export
malloc_usable_size
, but did
318
// so make this call
malloc_usable_size
.
320
return
malloc_usable_size
(ptr);
malloc_debug_check.cpp
548
return g_malloc_dispatch->
malloc_usable_size
(ptr);
551
//
malloc_usable_size
returns 0 for NULL and unknown blocks.
/external/jemalloc/include/jemalloc/
jemalloc.h
20
* size_t
malloc_usable_size
(const void *ptr);
191
# define
malloc_usable_size
je_malloc_usable_size
macro
/external/compiler-rt/lib/msan/
msan_interceptors.cc
211
INTERCEPTOR(uptr,
malloc_usable_size
, void *ptr) {
[
all
...]
/external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc
521
TSAN_INTERCEPTOR(uptr,
malloc_usable_size
, void *p) {
522
SCOPED_INTERCEPTOR_RAW(
malloc_usable_size
, p);
[
all
...]
/external/compiler-rt/lib/msan/tests/
msan_test.cc
[
all
...]
/external/chromium_org/v8/test/mjsunit/
unicode-test.js
[
all
...]
/bionic/libc/upstream-dlmalloc/
malloc.c
[
all
...]
Completed in 598 milliseconds
1
2