Lines Matching defs:total
1032 /* The total number of pools in the arena, whether or not available. */
1063 /* Return total number of blocks in pool of size index I, as a uint. */
2485 size_t total; /* nbytes + PYMEM_DEBUG_EXTRA_BYTES */
2488 /* integer overflow: can't represent total as a Py_ssize_t */
2491 total = nbytes + PYMEM_DEBUG_EXTRA_BYTES;
2505 p = (uint8_t *)api->alloc.calloc(api->alloc.ctx, 1, total);
2508 p = (uint8_t *)api->alloc.malloc(api->alloc.ctx, total);
2591 size_t total; /* 2 * SST + nbytes + 2 * SST */
2602 /* integer overflow: can't represent total as a Py_ssize_t */
2605 total = nbytes + PYMEM_DEBUG_EXTRA_BYTES;
2628 r = (uint8_t *)api->alloc.realloc(api->alloc.ctx, head, total);
2970 /* total # of allocated bytes in used and full pools */
2972 /* total # of available bytes in used pools */
2987 /* running total -- should equal narenas * ARENA_SIZE */
2988 size_t total;
3071 (void)printone(out, "# arenas allocated total", ntimes_arena_allocated);
3084 total = printone(out, "# bytes in allocated blocks", allocated_bytes);
3085 total += printone(out, "# bytes in available blocks", available_bytes);
3089 total += printone(out, buf, (size_t)numfreepools * POOL_SIZE);
3091 total += printone(out, "# bytes lost to pool headers", pool_header_bytes);
3092 total += printone(out, "# bytes lost to quantization", quantization);
3093 total += printone(out, "# bytes lost to arena alignment", arena_alignment);
3094 (void)printone(out, "Total", total);
3095 assert(narenas * ARENA_SIZE == total);
3104 total = printone(out, "# bytes lost to arena map root", sizeof(arena_map_root));
3106 total += printone(out, "# bytes lost to arena map mid",
3108 total += printone(out, "# bytes lost to arena map bot",
3110 (void)printone(out, "Total", total);