true_size         541 Zend/zend_alloc.c #define ZEND_MM_BUCKET_INDEX(true_size)		((true_size>>ZEND_MM_ALIGNMENT_LOG2)-(ZEND_MM_ALIGNED_MIN_HEADER_SIZE>>ZEND_MM_ALIGNMENT_LOG2))
true_size         543 Zend/zend_alloc.c #define ZEND_MM_SMALL_SIZE(true_size)		(true_size < ZEND_MM_MAX_SMALL_SIZE)
true_size        1631 Zend/zend_alloc.c 			size_t size, true_size, min_size, max_size;
true_size        1637 Zend/zend_alloc.c 				true_size = ZEND_MM_TRUE_SIZE(size);
true_size        1638 Zend/zend_alloc.c 				if (ZEND_MM_SMALL_SIZE(true_size)) {
true_size        1640 Zend/zend_alloc.c 					i = ZEND_MM_BUCKET_INDEX(true_size);
true_size        1643 Zend/zend_alloc.c 						true_size = ZEND_MM_TRUE_SIZE(size);
true_size        1644 Zend/zend_alloc.c 						if (ZEND_MM_SMALL_SIZE(true_size)) {
true_size        1645 Zend/zend_alloc.c 							j = ZEND_MM_BUCKET_INDEX(true_size);
true_size        1807 Zend/zend_alloc.c static zend_mm_free_block *zend_mm_search_large_block(zend_mm_heap *heap, size_t true_size)
true_size        1810 Zend/zend_alloc.c 	size_t index = ZEND_MM_LARGE_BUCKET_INDEX(true_size);
true_size        1826 Zend/zend_alloc.c 		for (m = true_size << (ZEND_MM_NUM_BUCKETS - index); ; m <<= 1) {
true_size        1827 Zend/zend_alloc.c 			if (UNEXPECTED(ZEND_MM_FREE_BLOCK_SIZE(p) == true_size)) {
true_size        1829 Zend/zend_alloc.c 			} else if (ZEND_MM_FREE_BLOCK_SIZE(p) >= true_size &&
true_size        1851 Zend/zend_alloc.c 			if (UNEXPECTED(ZEND_MM_FREE_BLOCK_SIZE(p) == true_size)) {
true_size        1853 Zend/zend_alloc.c 			} else if (ZEND_MM_FREE_BLOCK_SIZE(p) > true_size &&
true_size        1883 Zend/zend_alloc.c 	size_t true_size = ZEND_MM_TRUE_SIZE(size);
true_size        1895 Zend/zend_alloc.c 	if (EXPECTED(ZEND_MM_SMALL_SIZE(true_size))) {
true_size        1896 Zend/zend_alloc.c 		size_t index = ZEND_MM_BUCKET_INDEX(true_size);
true_size        1899 Zend/zend_alloc.c 		if (UNEXPECTED(true_size < size)) {
true_size        1911 Zend/zend_alloc.c 			heap->cached -= true_size;
true_size        1938 Zend/zend_alloc.c 	best_fit = zend_mm_search_large_block(heap, true_size);
true_size        1945 Zend/zend_alloc.c 			if (UNEXPECTED(ZEND_MM_FREE_BLOCK_SIZE(p) == true_size)) {
true_size        1948 Zend/zend_alloc.c 			} else if (ZEND_MM_FREE_BLOCK_SIZE(p) > true_size &&
true_size        1958 Zend/zend_alloc.c 		if (true_size > heap->block_size - (ZEND_MM_ALIGNED_SEGMENT_SIZE + ZEND_MM_ALIGNED_HEADER_SIZE)) {
true_size        1961 Zend/zend_alloc.c 			segment_size = true_size + ZEND_MM_ALIGNED_SEGMENT_SIZE + ZEND_MM_ALIGNED_HEADER_SIZE;
true_size        1968 Zend/zend_alloc.c 		if (segment_size < true_size ||
true_size        2026 Zend/zend_alloc.c 	remaining_size = block_size - true_size;
true_size        2029 Zend/zend_alloc.c 		true_size = block_size;
true_size        2030 Zend/zend_alloc.c 		ZEND_MM_BLOCK(best_fit, ZEND_MM_USED_BLOCK, true_size);
true_size        2035 Zend/zend_alloc.c 		ZEND_MM_BLOCK(best_fit, ZEND_MM_USED_BLOCK, true_size);
true_size        2036 Zend/zend_alloc.c 		new_free_block = (zend_mm_free_block *) ZEND_MM_BLOCK_AT(best_fit, true_size);
true_size        2049 Zend/zend_alloc.c 	heap->size += true_size;
true_size        2127 Zend/zend_alloc.c 	size_t true_size;
true_size        2140 Zend/zend_alloc.c 	true_size = ZEND_MM_TRUE_SIZE(size);
true_size        2144 Zend/zend_alloc.c 	if (UNEXPECTED(true_size < size)) {
true_size        2148 Zend/zend_alloc.c 	if (true_size <= orig_size) {
true_size        2149 Zend/zend_alloc.c 		size_t remaining_size = orig_size - true_size;
true_size        2161 Zend/zend_alloc.c 			ZEND_MM_BLOCK(mm_block, ZEND_MM_USED_BLOCK, true_size);
true_size        2162 Zend/zend_alloc.c 			new_free_block = (zend_mm_free_block *) ZEND_MM_BLOCK_AT(mm_block, true_size);
true_size        2168 Zend/zend_alloc.c 			heap->size += (true_size - orig_size);
true_size        2176 Zend/zend_alloc.c 	if (ZEND_MM_SMALL_SIZE(true_size)) {
true_size        2177 Zend/zend_alloc.c 		size_t index = ZEND_MM_BUCKET_INDEX(true_size);
true_size        2200 Zend/zend_alloc.c 			heap->cached -= true_size - orig_size;
true_size        2225 Zend/zend_alloc.c 		if (orig_size + ZEND_MM_FREE_BLOCK_SIZE(next_block) >= true_size) {
true_size        2227 Zend/zend_alloc.c 			size_t remaining_size = block_size - true_size;
true_size        2232 Zend/zend_alloc.c 				true_size = block_size;
true_size        2233 Zend/zend_alloc.c 				ZEND_MM_BLOCK(mm_block, ZEND_MM_USED_BLOCK, true_size);
true_size        2238 Zend/zend_alloc.c 				ZEND_MM_BLOCK(mm_block, ZEND_MM_USED_BLOCK, true_size);
true_size        2239 Zend/zend_alloc.c 				new_free_block = (zend_mm_free_block *) ZEND_MM_BLOCK_AT(mm_block, true_size);
true_size        2251 Zend/zend_alloc.c 			heap->size = heap->size + true_size - orig_size;
true_size        2271 Zend/zend_alloc.c 		if (true_size > heap->block_size - (ZEND_MM_ALIGNED_SEGMENT_SIZE + ZEND_MM_ALIGNED_HEADER_SIZE)) {
true_size        2272 Zend/zend_alloc.c 			segment_size = true_size+ZEND_MM_ALIGNED_SEGMENT_SIZE+ZEND_MM_ALIGNED_HEADER_SIZE;
true_size        2279 Zend/zend_alloc.c 		if (segment_size < true_size ||
true_size        2328 Zend/zend_alloc.c 		remaining_size = block_size - true_size;
true_size        2334 Zend/zend_alloc.c 			true_size = block_size;
true_size        2335 Zend/zend_alloc.c 			ZEND_MM_BLOCK(mm_block, ZEND_MM_USED_BLOCK, true_size);
true_size        2340 Zend/zend_alloc.c 			ZEND_MM_BLOCK(mm_block, ZEND_MM_USED_BLOCK, true_size);
true_size        2341 Zend/zend_alloc.c 			new_free_block = (zend_mm_free_block *) ZEND_MM_BLOCK_AT(mm_block, true_size);
true_size        2350 Zend/zend_alloc.c 		heap->size = heap->size + true_size - orig_size;