Searched refs:block_cnt (Results 1 – 4 of 4) sorted by relevance
74 if(!heap->block_cnt) { in heap_pool_alloc()86 heap->block_cnt = 1; in heap_pool_alloc()96 if(heap->last_block+1 == heap->block_cnt) { in heap_pool_alloc()97 tmp = heap_realloc(heap->blocks, (heap->block_cnt+1)*sizeof(void*)); in heap_pool_alloc()102 heap->blocks[heap->block_cnt] = heap_alloc(block_size(heap->block_cnt)); in heap_pool_alloc()103 if(!heap->blocks[heap->block_cnt]) in heap_pool_alloc()106 heap->block_cnt++; in heap_pool_alloc()153 for(i=0; i < heap->block_cnt; i++) in heap_pool_clear()167 for(i=0; i < heap->block_cnt; i++) in heap_pool_free()
44 DWORD block_cnt; member
82 if(!heap->block_cnt) { in heap_pool_alloc()94 heap->block_cnt = 1; in heap_pool_alloc()104 if(heap->last_block+1 == heap->block_cnt) { in heap_pool_alloc()105 tmp = heap_realloc(heap->blocks, (heap->block_cnt+1)*sizeof(void*)); in heap_pool_alloc()110 heap->blocks[heap->block_cnt] = heap_alloc(block_size(heap->block_cnt)); in heap_pool_alloc()111 if(!heap->blocks[heap->block_cnt]) in heap_pool_alloc()114 heap->block_cnt++; in heap_pool_alloc()161 for(i=0; i < heap->block_cnt; i++) in heap_pool_clear()175 for(i=0; i < heap->block_cnt; i++) in heap_pool_free()
62 DWORD block_cnt; member