Home
last modified time | relevance | path

Searched refs:b_ialloc (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dcompile.c64 int b_ialloc; member
427 assert(block->b_ialloc > 0); in compiler_unit_check()
429 assert(block->b_ialloc >= block->b_iused); in compiler_unit_check()
433 assert (block->b_ialloc == 0); in compiler_unit_check()
630 b->b_ialloc = DEFAULT_BLOCK_SIZE; in compiler_next_instr()
634 else if (b->b_iused == b->b_ialloc) { in compiler_next_instr()
637 oldsize = b->b_ialloc * sizeof(struct instr); in compiler_next_instr()
649 b->b_ialloc <<= 1; in compiler_next_instr()
/external/python/cpython3/Python/
Dcompile.c61 int b_ialloc; member
502 assert(block->b_ialloc > 0); in compiler_unit_check()
504 assert(block->b_ialloc >= block->b_iused); in compiler_unit_check()
508 assert (block->b_ialloc == 0); in compiler_unit_check()
809 b->b_ialloc = DEFAULT_BLOCK_SIZE; in compiler_next_instr()
813 else if (b->b_iused == b->b_ialloc) { in compiler_next_instr()
816 oldsize = b->b_ialloc * sizeof(struct instr); in compiler_next_instr()
828 b->b_ialloc <<= 1; in compiler_next_instr()