Lines Matching refs:unum
60 mp_uint_t unum = 0; \
62 unum = (unum << 7) + (*ip & 0x7f); \
74 void *ptr = (void*)(uintptr_t)code_state->fun_bc->const_table[unum]
77 mp_obj_t obj = (mp_obj_t)code_state->fun_bc->const_table[unum]
345 obj_shared = fastn[-unum]; in mp_execute_bytecode()
360 obj_shared = mp_obj_cell_get(fastn[-unum]); in mp_execute_bytecode()
473 fastn[-unum] = POP(); in mp_execute_bytecode()
479 mp_obj_cell_set(fastn[-unum], POP()); in mp_execute_bytecode()
542 if (fastn[-unum] == MP_OBJ_NULL) { in mp_execute_bytecode()
545 fastn[-unum] = MP_OBJ_NULL; in mp_execute_bytecode()
552 if (mp_obj_cell_get(fastn[-unum]) == MP_OBJ_NULL) { in mp_execute_bytecode()
555 mp_obj_cell_set(fastn[-unum], MP_OBJ_NULL); in mp_execute_bytecode()
719 mp_uint_t unum = (mp_uint_t)POP(); // get number of exception handlers to unwind in mp_execute_bytecode() local
720 while ((unum & 0x7f) > 0) { in mp_execute_bytecode()
721 unum -= 1; in mp_execute_bytecode()
738 PUSH(MP_OBJ_NEW_SMALL_INT(unum)); in mp_execute_bytecode()
749 if (unum != 0) { in mp_execute_bytecode()
856 sp -= unum - 1; in mp_execute_bytecode()
857 SET_TOP(mp_obj_new_tuple(unum, sp)); in mp_execute_bytecode()
864 sp -= unum - 1; in mp_execute_bytecode()
865 SET_TOP(mp_obj_new_list(unum, sp)); in mp_execute_bytecode()
872 PUSH(mp_obj_new_dict(unum)); in mp_execute_bytecode()
886 sp -= unum - 1; in mp_execute_bytecode()
887 SET_TOP(mp_obj_new_set(unum, sp)); in mp_execute_bytecode()
910 mp_obj_t obj = sp[-(unum >> 2)]; in mp_execute_bytecode()
911 if ((unum & 3) == 0) { in mp_execute_bytecode()
914 } else if (!MICROPY_PY_BUILTINS_SET || (unum & 3) == 1) { in mp_execute_bytecode()
929 mp_unpack_sequence(sp[0], unum, sp); in mp_execute_bytecode()
930 sp += unum - 1; in mp_execute_bytecode()
937 mp_unpack_ex(sp[0], unum, sp); in mp_execute_bytecode()
938 sp += (unum & 0xff) + ((unum >> 8) & 0xff); in mp_execute_bytecode()
980 sp -= (unum & 0xff) + ((unum >> 7) & 0x1fe); in mp_execute_bytecode()
986 …mp_code_state_t *new_state = mp_obj_fun_bc_prepare_codestate(*sp, unum & 0xff, (unum >> 8) & 0xff,… in mp_execute_bytecode()
1005 SET_TOP(mp_call_function_n_kw(*sp, unum & 0xff, (unum >> 8) & 0xff, sp + 1)); in mp_execute_bytecode()
1017 sp -= (unum & 0xff) + ((unum >> 7) & 0x1fe) + 2; in mp_execute_bytecode()
1025 mp_call_prepare_args_n_kw_var(false, unum, sp, &out_args); in mp_execute_bytecode()
1051 SET_TOP(mp_call_method_n_kw_var(false, unum, sp)); in mp_execute_bytecode()
1061 sp -= (unum & 0xff) + ((unum >> 7) & 0x1fe) + 1; in mp_execute_bytecode()
1068 size_t n_args = unum & 0xff; in mp_execute_bytecode()
1069 size_t n_kw = (unum >> 8) & 0xff; in mp_execute_bytecode()
1090 SET_TOP(mp_call_method_n_kw(unum & 0xff, (unum >> 8) & 0xff, sp)); in mp_execute_bytecode()
1102 sp -= (unum & 0xff) + ((unum >> 7) & 0x1fe) + 3; in mp_execute_bytecode()
1110 mp_call_prepare_args_n_kw_var(true, unum, sp, &out_args); in mp_execute_bytecode()
1136 SET_TOP(mp_call_method_n_kw_var(true, unum, sp)); in mp_execute_bytecode()