Searched refs:SMALL_REQUEST_THRESHOLD (Results 1 - 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dobmalloc.c103 * Requests greater than SMALL_REQUEST_THRESHOLD bytes are routed to the
139 * 0, SMALL_REQUEST_THRESHOLD + 1 and up: routed to the underlying
170 * 1) ALIGNMENT <= SMALL_REQUEST_THRESHOLD <= 256
171 * 2) SMALL_REQUEST_THRESHOLD is evenly divisible by ALIGNMENT
177 * it is recommended that SMALL_REQUEST_THRESHOLD is set to a power of 2.
179 #define SMALL_REQUEST_THRESHOLD 512 macro
180 #define NB_SMALL_SIZE_CLASSES (SMALL_REQUEST_THRESHOLD / ALIGNMENT)
816 if ((nbytes - 1) < SMALL_REQUEST_THRESHOLD) {
1283 * SMALL_REQUEST_THRESHOLD, it's tempting to try to take over this
1790 const uint numclasses = SMALL_REQUEST_THRESHOLD >> ALIGNMENT_SHIF
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dobmalloc.c143 * 1) ALIGNMENT <= SMALL_REQUEST_THRESHOLD <= 256
144 * 2) SMALL_REQUEST_THRESHOLD is evenly divisible by ALIGNMENT
147 * it is recommended that SMALL_REQUEST_THRESHOLD is set to a power of 2.
149 #define SMALL_REQUEST_THRESHOLD 256 macro
150 #define NB_SMALL_SIZE_CLASSES (SMALL_REQUEST_THRESHOLD / ALIGNMENT)
773 if ((nbytes - 1) < SMALL_REQUEST_THRESHOLD) {
1234 * SMALL_REQUEST_THRESHOLD, it's tempting to try to take over this
1741 const uint numclasses = SMALL_REQUEST_THRESHOLD >> ALIGNMENT_SHIFT;
1743 size_t numpools[SMALL_REQUEST_THRESHOLD >> ALIGNMENT_SHIFT];
1744 size_t numblocks[SMALL_REQUEST_THRESHOLD >> ALIGNMENT_SHIF
[all...]

Completed in 32 milliseconds