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.c66 struct instr *b_instr; member
517 if (block->b_instr != NULL) { in compiler_unit_check()
537 if (b->b_instr) in compiler_unit_free()
538 PyObject_Free((void *)b->b_instr); in compiler_unit_free()
810 if (b->b_instr == NULL) { in compiler_next_instr()
811 b->b_instr = (struct instr *)PyObject_Calloc( in compiler_next_instr()
813 if (b->b_instr == NULL) { in compiler_next_instr()
836 (void *)b->b_instr, newsize); in compiler_next_instr()
841 b->b_instr = tmp; in compiler_next_instr()
842 memset((char *)b->b_instr + oldsize, 0, newsize - oldsize); in compiler_next_instr()
[all …]