Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dcompile.c66 struct instr *b_instr; member
426 if (block->b_instr != NULL) { in compiler_unit_check()
446 if (b->b_instr) in compiler_unit_free()
447 PyObject_Free((void *)b->b_instr); in compiler_unit_free()
623 if (b->b_instr == NULL) { in compiler_next_instr()
624 b->b_instr = (struct instr *)PyObject_Malloc( in compiler_next_instr()
626 if (b->b_instr == NULL) { in compiler_next_instr()
631 memset((char *)b->b_instr, 0, in compiler_next_instr()
651 (void *)b->b_instr, newsize); in compiler_next_instr()
656 b->b_instr = tmp; in compiler_next_instr()
[all …]
/external/python/cpython3/Python/
Dcompile.c63 struct instr *b_instr; member
501 if (block->b_instr != NULL) { in compiler_unit_check()
521 if (b->b_instr) in compiler_unit_free()
522 PyObject_Free((void *)b->b_instr); in compiler_unit_free()
802 if (b->b_instr == NULL) { in compiler_next_instr()
803 b->b_instr = (struct instr *)PyObject_Malloc( in compiler_next_instr()
805 if (b->b_instr == NULL) { in compiler_next_instr()
810 memset((char *)b->b_instr, 0, in compiler_next_instr()
830 (void *)b->b_instr, newsize); in compiler_next_instr()
835 b->b_instr = tmp; in compiler_next_instr()
[all …]