Lines Matching defs:stack_adj

186 STATIC void emit_write_bytecode_byte(emit_t *emit, int stack_adj, byte b1) {  in emit_write_bytecode_byte()
193 STATIC void emit_write_bytecode_byte_int(emit_t *emit, int stack_adj, byte b1, mp_int_t num) { in emit_write_bytecode_byte_int()
219 STATIC void emit_write_bytecode_byte_uint(emit_t *emit, int stack_adj, byte b, mp_uint_t val) { in emit_write_bytecode_byte_uint()
225 STATIC void emit_write_bytecode_byte_const(emit_t *emit, int stack_adj, byte b, mp_uint_t n, mp_uin… in emit_write_bytecode_byte_const()
233 STATIC void emit_write_bytecode_byte_qstr(emit_t *emit, int stack_adj, byte b, qstr qst) { in emit_write_bytecode_byte_qstr()
246 STATIC void emit_write_bytecode_byte_obj(emit_t *emit, int stack_adj, byte b, mp_obj_t obj) { in emit_write_bytecode_byte_obj()
262 STATIC void emit_write_bytecode_byte_raw_code(emit_t *emit, int stack_adj, byte b, mp_raw_code_t *r… in emit_write_bytecode_byte_raw_code()
282 STATIC void emit_write_bytecode_byte_unsigned_label(emit_t *emit, int stack_adj, byte b1, mp_uint_t… in emit_write_bytecode_byte_unsigned_label()
297 STATIC void emit_write_bytecode_byte_signed_label(emit_t *emit, int stack_adj, byte b1, mp_uint_t l… in emit_write_bytecode_byte_signed_label()
507 int stack_adj = kind == MP_EMIT_IMPORT_FROM ? 1 : -1; in mp_emit_bc_import() local
569 int stack_adj = 1 - 2 * is_super; in mp_emit_bc_load_method() local
697 int stack_adj = kind == MP_EMIT_SETUP_BLOCK_WITH ? 2 : 0; in mp_emit_bc_setup_block() local
715 int stack_adj = use_stack ? MP_OBJ_ITER_BUF_NSLOTS - 1 : 0; in mp_emit_bc_get_iter() local
757 int stack_adj = kind == MP_EMIT_BUILD_MAP ? 1 : 1 - n_args; in mp_emit_bc_build() local
800 int stack_adj = -n_closed_over + 1; in mp_emit_bc_make_closure() local
805 int stack_adj = -2 - (mp_int_t)n_closed_over + 1; in mp_emit_bc_make_closure() local
811 STATIC void emit_bc_call_function_method_helper(emit_t *emit, int stack_adj, mp_uint_t bytecode_bas… in emit_bc_call_function_method_helper()