max_size 1631 Zend/zend_alloc.c size_t size, true_size, min_size, max_size; max_size 1647 Zend/zend_alloc.c max_size = size-1; max_size 1651 Zend/zend_alloc.c max_size = size-1; max_size 1658 Zend/zend_alloc.c fprintf(f, "%2d %8d %8d %9d %8d %8d %8d\n", i, (int)min_size, (int)max_size, ZEND_MM_TRUE_SIZE(max_size), heap->cache_stat[i].max_count, heap->cache_stat[i].hit, heap->cache_stat[i].miss); max_size 64 ext/spl/spl_heap.c int max_size; max_size 232 ext/spl/spl_heap.c heap->max_size = PTR_HEAP_BLOCK_SIZE; max_size 243 ext/spl/spl_heap.c if (heap->count+1 > heap->max_size) { max_size 245 ext/spl/spl_heap.c heap->elements = (void **) safe_erealloc(heap->elements, sizeof(spl_ptr_heap_element), (heap->max_size), (sizeof(spl_ptr_heap_element) * (heap->max_size))); max_size 246 ext/spl/spl_heap.c heap->max_size *= 2; max_size 324 ext/spl/spl_heap.c heap->max_size = from->max_size; max_size 328 ext/spl/spl_heap.c heap->elements = safe_emalloc(sizeof(spl_ptr_heap_element),from->max_size,0); max_size 329 ext/spl/spl_heap.c memcpy(heap->elements, from->elements, sizeof(spl_ptr_heap_element)*from->max_size);