/external/jemalloc/include/jemalloc/internal/ |
stats.h | 170 UNUSED size_t cactive; local 175 cactive = atomic_add_z(&stats_cactive, size); 176 assert(cactive - size < cactive); 182 UNUSED size_t cactive; local 187 cactive = atomic_sub_z(&stats_cactive, size); 188 assert(cactive + size > cactive);
|
/external/jemalloc/test/unit/ |
stats.c | 5 size_t *cactive; local 9 sz = sizeof(cactive); 10 assert_d_eq(mallctl("stats.cactive", &cactive, &sz, NULL, 0), expected, 24 assert_zu_le(active, *cactive, 25 "active should be no larger than cactive");
|
/external/jemalloc/src/ |
stats.c | 599 size_t *cactive; local 602 CTL_GET("stats.cactive", &cactive, size_t *); 614 atomic_read_z(cactive));
|
ctl.c | 479 {NAME("cactive"), CTL(stats_cactive)}, [all...] |
/external/jemalloc/ |
ChangeLog | 60 - Fix stats.cactive accounting regression. (@rustyx, @jasone) 313 - Fix the cactive statistic to decrease (rather than increase) when active [all...] |
/external/jemalloc/doc/ |
jemalloc.xml.in | [all...] |
/prebuilts/misc/android-arm/gdbserver/ |
gdbserver | |
/prebuilts/misc/android-mips/gdbserver/ |
gdbserver | |
/prebuilts/misc/android-x86/gdbserver/ |
gdbserver | |
/prebuilts/sdk/renderscript/lib/arm/ |
libc.so | |
/prebuilts/sdk/renderscript/lib/x86/ |
libc.so | |
/prebuilts/sdk/renderscript/lib/mips/ |
libc.so | |