SIZE_T_ONE 1466 src/utils/dlmalloc.c #define CHUNK_ALIGN_MASK (MALLOC_ALIGNMENT - SIZE_T_ONE) SIZE_T_ONE 1578 src/utils/dlmalloc.c #define USE_MMAP_BIT (SIZE_T_ONE) SIZE_T_ONE 2108 src/utils/dlmalloc.c #define MIN_REQUEST (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE) SIZE_T_ONE 2129 src/utils/dlmalloc.c #define PINUSE_BIT (SIZE_T_ONE) SIZE_T_ONE 2450 src/utils/dlmalloc.c #define SMALLBIN_WIDTH (SIZE_T_ONE << SMALLBIN_SHIFT) SIZE_T_ONE 2452 src/utils/dlmalloc.c #define MIN_LARGE_SIZE (SIZE_T_ONE << TREEBIN_SHIFT) SIZE_T_ONE 2453 src/utils/dlmalloc.c #define MAX_SMALL_SIZE (MIN_LARGE_SIZE - SIZE_T_ONE) SIZE_T_ONE 2538 src/utils/dlmalloc.c (((S) + (mparams.page_size - SIZE_T_ONE)) & ~(mparams.page_size - SIZE_T_ONE)) SIZE_T_ONE 2542 src/utils/dlmalloc.c (((S) + (mparams.granularity - SIZE_T_ONE))\ SIZE_T_ONE 2543 src/utils/dlmalloc.c & ~(mparams.granularity - SIZE_T_ONE)) SIZE_T_ONE 2557 src/utils/dlmalloc.c (((size_t)(S) & (mparams.page_size - SIZE_T_ONE)) == 0) SIZE_T_ONE 2559 src/utils/dlmalloc.c (((size_t)(S) & (mparams.granularity - SIZE_T_ONE)) == 0) SIZE_T_ONE 2773 src/utils/dlmalloc.c ((SIZE_T_BITSIZE-SIZE_T_ONE) - (((i) >> 1) + TREEBIN_SHIFT - 2))) SIZE_T_ONE 2777 src/utils/dlmalloc.c ((SIZE_T_ONE << (((i) >> 1) + TREEBIN_SHIFT)) | \ SIZE_T_ONE 2778 src/utils/dlmalloc.c (((size_t)((i) & SIZE_T_ONE)) << (((i) >> 1) + TREEBIN_SHIFT - 1))) SIZE_T_ONE 2998 src/utils/dlmalloc.c ((MALLOC_ALIGNMENT & (MALLOC_ALIGNMENT-SIZE_T_ONE)) != 0) || SIZE_T_ONE 2999 src/utils/dlmalloc.c ((MCHUNK_SIZE & (MCHUNK_SIZE-SIZE_T_ONE)) != 0) || SIZE_T_ONE 3000 src/utils/dlmalloc.c ((gsize & (gsize-SIZE_T_ONE)) != 0) || SIZE_T_ONE 3001 src/utils/dlmalloc.c ((psize & (psize-SIZE_T_ONE)) != 0)) SIZE_T_ONE 3103 src/utils/dlmalloc.c assert((len & (mparams.page_size-SIZE_T_ONE)) == 0); SIZE_T_ONE 3263 src/utils/dlmalloc.c t = t->child[(sizebits >> (SIZE_T_BITSIZE-SIZE_T_ONE)) & 1]; SIZE_T_ONE 3348 src/utils/dlmalloc.c size_t nfree = SIZE_T_ONE; /* top always free */ SIZE_T_ONE 3516 src/utils/dlmalloc.c tchunkptr* C = &(T->child[(K >> (SIZE_T_BITSIZE-SIZE_T_ONE)) & 1]);\ SIZE_T_ONE 4140 src/utils/dlmalloc.c size_t extra = ((m->topsize - pad + (unit - SIZE_T_ONE)) / unit - SIZE_T_ONE 4141 src/utils/dlmalloc.c SIZE_T_ONE) * unit; SIZE_T_ONE 4159 src/utils/dlmalloc.c extra = (HALF_MAX_SIZE_T) + SIZE_T_ONE - unit; SIZE_T_ONE 4218 src/utils/dlmalloc.c t = t->child[(sizebits >> (SIZE_T_BITSIZE-SIZE_T_ONE)) & 1]; SIZE_T_ONE 4389 src/utils/dlmalloc.c if ((alignment & (alignment-SIZE_T_ONE)) != 0) {/* Ensure a power of 2 */ SIZE_T_ONE 4421 src/utils/dlmalloc.c SIZE_T_ONE)) & SIZE_T_ONE 4912 src/utils/dlmalloc.c return dlmemalign(pagesz, (bytes + pagesz - SIZE_T_ONE) & ~(pagesz - SIZE_T_ONE));