Searched defs:footprint (Results 1 - 2 of 2) sorted by relevance

/external/dlmalloc/
H A Dmalloc.c980 value will be greater than current footprint if deallocated space
2545 Max allowed footprint
2592 size_t footprint; member in struct:malloc_state
3493 assert(total <= m->footprint);
3494 assert(m->footprint <= m->max_footprint);
3528 nm.hblkhd = m->footprint - sum;
3529 /* BEGIN android-changed: usmblks set to footprint from max_footprint */
3530 nm.usmblks = m->footprint;
3532 nm.uordblks = m->footprint - mfree;
3554 fp = m->footprint;
[all...]
/external/python/cpython2/Modules/_ctypes/libffi/src/
H A Ddlmalloc.c789 value will be greater than current footprint if deallocated space
2086 size_t footprint; member in struct:malloc_state
2880 assert(total <= m->footprint);
2881 assert(m->footprint <= m->max_footprint);
2914 nm.hblkhd = m->footprint - sum;
2916 nm.uordblks = m->footprint - mfree;
2936 fp = m->footprint;
3236 if ((m->footprint += mmsize) > m->max_footprint)
3237 m->max_footprint = m->footprint;
3272 if ((m->footprint
[all...]

Completed in 376 milliseconds