cache_stat        449 Zend/zend_alloc.c 	} cache_stat[ZEND_MM_NUM_BUCKETS+1];
cache_stat        905 Zend/zend_alloc.c 		heap->cache_stat[i].count = 0;
cache_stat        969 Zend/zend_alloc.c 			heap->cache_stat[i].count = 0;
cache_stat       1112 Zend/zend_alloc.c 	memset(heap->cache_stat, 0, sizeof(heap->cache_stat));
cache_stat       1656 Zend/zend_alloc.c 					hit += heap->cache_stat[i].hit;
cache_stat       1657 Zend/zend_alloc.c 					miss += heap->cache_stat[i].miss;
cache_stat       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);
cache_stat       1664 Zend/zend_alloc.c 			fprintf(f, "                                        %8d %8d\n", heap->cache_stat[ZEND_MM_NUM_BUCKETS].hit, heap->cache_stat[ZEND_MM_NUM_BUCKETS].miss);
cache_stat       1906 Zend/zend_alloc.c 			heap->cache_stat[index].count--;
cache_stat       1907 Zend/zend_alloc.c 			heap->cache_stat[index].hit++;
cache_stat       1918 Zend/zend_alloc.c 		heap->cache_stat[index].miss++;
cache_stat       1928 Zend/zend_alloc.c 			heap->cache_stat[ZEND_MM_NUM_BUCKETS].hit++;
cache_stat       1935 Zend/zend_alloc.c 	heap->cache_stat[ZEND_MM_NUM_BUCKETS].miss++;
cache_stat       2092 Zend/zend_alloc.c 		if (++heap->cache_stat[index].count > heap->cache_stat[index].max_count) {
cache_stat       2093 Zend/zend_alloc.c 			heap->cache_stat[index].max_count = heap->cache_stat[index].count;
cache_stat       2184 Zend/zend_alloc.c 			heap->cache_stat[index].count--;
cache_stat       2185 Zend/zend_alloc.c 			heap->cache_stat[index].hit++;
cache_stat       2209 Zend/zend_alloc.c 			if (++heap->cache_stat[index].count > heap->cache_stat[index].max_count) {
cache_stat       2210 Zend/zend_alloc.c 				heap->cache_stat[index].max_count = heap->cache_stat[index].count;