Lines Matching refs:MP_OBJ_NULL

283             if (inject_exc != MP_OBJ_NULL && *ip != MP_BC_YIELD_FROM) {  in mp_execute_bytecode()
285 inject_exc = MP_OBJ_NULL; in mp_execute_bytecode()
340 PUSH(MP_OBJ_NULL); in mp_execute_bytecode()
347 if (obj_shared == MP_OBJ_NULL) { in mp_execute_bytecode()
518 if (mp_obj_is_instance_type(mp_obj_get_type(top)) && sp[-1] != MP_OBJ_NULL) { 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()
812 sp[-MP_OBJ_ITER_BUF_NSLOTS + 1] = MP_OBJ_NULL; in mp_execute_bytecode()
824 if (sp[-MP_OBJ_ITER_BUF_NSLOTS + 1] == MP_OBJ_NULL) { in mp_execute_bytecode()
944 PUSH(mp_make_function_from_raw_code(ptr, MP_OBJ_NULL, MP_OBJ_NULL)); in mp_execute_bytecode()
1070 int adjust = (sp[1] == MP_OBJ_NULL) ? 0 : 1; in mp_execute_bytecode()
1201 mp_obj_t obj = MP_OBJ_NULL; in mp_execute_bytecode()
1208 if (obj == MP_OBJ_NULL) { in mp_execute_bytecode()
1241 #define GENERATOR_EXIT_IF_NEEDED(t) if (t != MP_OBJ_NULL && EXC_MATCH(t, MP_OBJ_FROM_PTR(&mp_type_G… in mp_execute_bytecode()
1244 mp_obj_t t_exc = MP_OBJ_NULL; in mp_execute_bytecode()
1247 if (inject_exc != MP_OBJ_NULL) { in mp_execute_bytecode()
1249 inject_exc = MP_OBJ_NULL; in mp_execute_bytecode()
1250 ret_kind = mp_resume(TOP(), MP_OBJ_NULL, t_exc, &ret_value); in mp_execute_bytecode()
1252 ret_kind = mp_resume(TOP(), send_value, MP_OBJ_NULL, &ret_value); in mp_execute_bytecode()
1372 if (obj != MP_OBJ_NULL) { in mp_execute_bytecode()
1373 MP_STATE_THREAD(mp_pending_exception) = MP_OBJ_NULL; in mp_execute_bytecode()
1387 if (MP_STATE_THREAD(mp_pending_exception) != MP_OBJ_NULL) { in mp_execute_bytecode()
1390 MP_STATE_THREAD(mp_pending_exception) = MP_OBJ_NULL; in mp_execute_bytecode()