Home | History | Annotate | Download | only in libpcap

Lines Matching refs:blocks

147 struct block **blocks;
1661 blocks[i]->in_edges = 0;
1831 blocks[i]->link = 0;
1836 if (!isMarked(blocks[i]))
1839 if (!isMarked(blocks[j]))
1841 if (eq_blk(blocks[i], blocks[j])) {
1842 blocks[i]->link = blocks[j]->link ?
1843 blocks[j]->link : blocks[j];
1849 p = blocks[i];
1873 free((void *)blocks);
1907 * the basic blocks, and entering them into the 'blocks' array.`
1921 blocks[n] = p;
1961 * from the total number of blocks and/or statements.
1971 * First, count the blocks, so we can malloc an array to map
1972 * block number to block. Then, put the blocks into the array.
1976 blocks = (struct block **)calloc(n, sizeof(*blocks));
1977 if (blocks == NULL)
2006 blocks[i]->dom = p;
2011 blocks[i]->closure = p;
2016 register struct block *b = blocks[i];
2031 max_stmts += slength(blocks[i]->stmts) + 1;