Searched refs:mp_make_function_from_raw_code (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | emitglue.c | 173 mp_obj_t mp_make_function_from_raw_code(const mp_raw_code_t *rc, mp_obj_t def_args, mp_obj_t def_kw… in mp_make_function_from_raw_code() function 227 ffun = mp_make_function_from_raw_code(rc, args[0], args[1]); in mp_make_closure_from_raw_code() 230 ffun = mp_make_function_from_raw_code(rc, MP_OBJ_NULL, MP_OBJ_NULL); in mp_make_closure_from_raw_code()
|
A D | emitglue.h | 107 mp_obj_t mp_make_function_from_raw_code(const mp_raw_code_t *rc, mp_obj_t def_args, mp_obj_t def_kw…
|
A D | dynruntime.h | 180 #define mp_make_function_from_raw_code(rc, def_args, def_kw_args) \ macro 202 (mp_make_function_from_raw_code((rc.fun_data = (f), &rc), MP_OBJ_NULL, MP_OBJ_NULL))
|
A D | nativeglue.c | 282 mp_make_function_from_raw_code,
|
A D | builtinimport.c | 166 mp_obj_t module_fun = mp_make_function_from_raw_code(raw_code, MP_OBJ_NULL, MP_OBJ_NULL); in do_execute_raw_code()
|
A D | vm.c | 944 PUSH(mp_make_function_from_raw_code(ptr, MP_OBJ_NULL, MP_OBJ_NULL)); in mp_execute_bytecode() 952 SET_TOP(mp_make_function_from_raw_code(ptr, TOP(), def_dict)); in mp_execute_bytecode()
|
A D | compile.c | 3673 return mp_make_function_from_raw_code(rc, MP_OBJ_NULL, MP_OBJ_NULL); in mp_compile()
|
/AliOS-Things-master/components/py_engine/engine/shared/runtime/ |
A D | pyexec.c | 86 module_fun = mp_make_function_from_raw_code(source, MP_OBJ_NULL, MP_OBJ_NULL); in parse_compile_execute()
|
Completed in 20 milliseconds