best_fit         1809 Zend/zend_alloc.c 	zend_mm_free_block *best_fit;
best_fit         1824 Zend/zend_alloc.c 		best_fit = NULL;
best_fit         1832 Zend/zend_alloc.c 				best_fit = p;
best_fit         1856 Zend/zend_alloc.c 				best_fit = p;
best_fit         1860 Zend/zend_alloc.c 		if (best_fit) {
best_fit         1861 Zend/zend_alloc.c 			return best_fit->next_free_block;
best_fit         1871 Zend/zend_alloc.c 	best_fit = p = heap->large_free_buckets[index + zend_mm_low_bit(bitmap)];
best_fit         1873 Zend/zend_alloc.c 		if (ZEND_MM_FREE_BLOCK_SIZE(p) < ZEND_MM_FREE_BLOCK_SIZE(best_fit)) {
best_fit         1874 Zend/zend_alloc.c 			best_fit = p;
best_fit         1877 Zend/zend_alloc.c 	return best_fit->next_free_block;
best_fit         1882 Zend/zend_alloc.c 	zend_mm_free_block *best_fit;
best_fit         1909 Zend/zend_alloc.c 			best_fit = heap->cache[index];
best_fit         1910 Zend/zend_alloc.c 			heap->cache[index] = best_fit->prev_free_block;
best_fit         1912 Zend/zend_alloc.c 			ZEND_MM_CHECK_MAGIC(best_fit, MEM_BLOCK_CACHED);
best_fit         1913 Zend/zend_alloc.c 			ZEND_MM_SET_DEBUG_INFO(best_fit, size, 1, 0);
best_fit         1915 Zend/zend_alloc.c 			return ZEND_MM_DATA_OF(best_fit);
best_fit         1926 Zend/zend_alloc.c 			best_fit = heap->free_buckets[index*2];
best_fit         1938 Zend/zend_alloc.c 	best_fit = zend_mm_search_large_block(heap, true_size);
best_fit         1940 Zend/zend_alloc.c 	if (!best_fit && heap->real_size >= heap->limit - heap->block_size) {
best_fit         1946 Zend/zend_alloc.c 				best_fit = p;
best_fit         1951 Zend/zend_alloc.c 				best_fit = p;
best_fit         1957 Zend/zend_alloc.c 	if (!best_fit) {
best_fit         2008 Zend/zend_alloc.c 		best_fit = (zend_mm_free_block *) ((char *) segment + ZEND_MM_ALIGNED_SEGMENT_SIZE);
best_fit         2009 Zend/zend_alloc.c 		ZEND_MM_MARK_FIRST_BLOCK(best_fit);
best_fit         2013 Zend/zend_alloc.c 		ZEND_MM_LAST_BLOCK(ZEND_MM_BLOCK_AT(best_fit, block_size));
best_fit         2018 Zend/zend_alloc.c 		ZEND_MM_CHECK_MAGIC(best_fit, MEM_BLOCK_FREED);
best_fit         2019 Zend/zend_alloc.c 		ZEND_MM_CHECK_COOKIE(best_fit);
best_fit         2020 Zend/zend_alloc.c 		ZEND_MM_CHECK_BLOCK_LINKAGE(best_fit);
best_fit         2021 Zend/zend_alloc.c 		zend_mm_remove_from_free_list(heap, best_fit);
best_fit         2023 Zend/zend_alloc.c 		block_size = ZEND_MM_FREE_BLOCK_SIZE(best_fit);
best_fit         2030 Zend/zend_alloc.c 		ZEND_MM_BLOCK(best_fit, ZEND_MM_USED_BLOCK, true_size);
best_fit         2035 Zend/zend_alloc.c 		ZEND_MM_BLOCK(best_fit, ZEND_MM_USED_BLOCK, true_size);
best_fit         2036 Zend/zend_alloc.c 		new_free_block = (zend_mm_free_block *) ZEND_MM_BLOCK_AT(best_fit, true_size);
best_fit         2047 Zend/zend_alloc.c 	ZEND_MM_SET_DEBUG_INFO(best_fit, size, 1, 1);
best_fit         2056 Zend/zend_alloc.c 	return ZEND_MM_DATA_OF(best_fit);
best_fit         2180 Zend/zend_alloc.c 			zend_mm_free_block *best_fit;
best_fit         2187 Zend/zend_alloc.c 			best_fit = heap->cache[index];
best_fit         2188 Zend/zend_alloc.c 			heap->cache[index] = best_fit->prev_free_block;
best_fit         2189 Zend/zend_alloc.c 			ZEND_MM_CHECK_MAGIC(best_fit, MEM_BLOCK_CACHED);
best_fit         2190 Zend/zend_alloc.c 			ZEND_MM_SET_DEBUG_INFO(best_fit, size, 1, 0);
best_fit         2192 Zend/zend_alloc.c 			ptr = ZEND_MM_DATA_OF(best_fit);