Searched refs:Blocks (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_blocks.h50 typedef struct Blocks { struct
56 } Blocks; typedef in typeref:struct:Blocks
58 Blocks * blocks_init(int alignment, int elem_size, int population);
59 void * blocks_alloc(Blocks *blocks, int nbytes);
60 void blocks_term(Blocks *blocks);
H A Dhprof_blocks.c69 /* Add a new current_block to the Blocks* chain, adjust size if nbytes big. */
71 add_block(Blocks *blocks, int nbytes)
100 /* Initialize a new Blocks */
101 Blocks *
104 Blocks *blocks;
110 blocks = (Blocks*)HPROF_MALLOC(sizeof(Blocks));
119 /* Allocate bytes from a Blocks area. */
121 blocks_alloc(Blocks *blocks, int nbytes)
146 /* Terminate the Blocks */
[all...]
H A Dhprof_table.c116 Blocks *info_blocks; /* Blocks space for info */
117 Blocks *key_blocks; /* Blocks space for keys */
614 /* This could leak space in the Blocks if keys are variable

Completed in 154 milliseconds