Home | History | Annotate | Download | only in wtf

Lines Matching refs:waste

68     // some number of system pages. The only waste is the waste associated with
72 // so small that the waste would be tiny with just 4, or 1, system pages.
85 size_t waste = pageSize - (numSlots * size);
90 waste += sizeof(void*) * numUnfaultedPages;
91 double wasteRatio = (double) waste / (double) pageSize;
974 printf("bucket size %zu (pageSize %zu waste %zu): %zu alloc/%zu commit/%zu freeable bytes, %zu/%zu/%zu full/active/free pages\n", bucketSlotSize, bucketPageSize, bucketWaste, numActiveBytes, numResidentBytes, numFreeableBytes, static_cast<size_t>(bucket.numFullPages), numActivePages, numFreePages);