Lines Matching defs:value
748 # define UNLIKELY(value) __builtin_expect((value), 0)
749 # define LIKELY(value) __builtin_expect((value), 1)
751 # define UNLIKELY(value) (value)
752 # define LIKELY(value) (value)
872 * The alignment value is also used for grouping small requests in size
892 * this value according to your application behaviour and memory needs.
1128 block is stored in the pool_header nextoffset member, and the largest value
1271 /* High water mark (max value ever seen) for narenas_currently_allocated. */
1576 * `usable_arenas` to the return value.
1774 // another thread may be concurrently modifying the value without holding
1834 /* This arena already had the smallest nfreepools value, so decreasing
2064 * are no arenas in usable_arenas with that value.
2877 printone(FILE *out, const char* msg, size_t value)
2881 size_t origvalue = value;
2888 /* Write the value with commas. */
2894 size_t nextvalue = value / 10;
2895 unsigned int digit = (unsigned int)(value - nextvalue * 10);
2896 value = nextvalue;
2899 if (k == 0 && value && i >= 0) {
2903 } while (value && i >= 0);