Home
last modified time | relevance | path

Searched refs:stack_top (Results 1 – 12 of 12) sorted by relevance

/AliOS-Things-master/components/py_engine/engine/extmod/
A Dmodujson.c156 mp_obj_t stack_top = MP_OBJ_NULL; in mod_ujson_load() local
289 if (stack_top == MP_OBJ_NULL) { in mod_ujson_load()
298 stack_top = stack.items[stack.len]; in mod_ujson_load()
305 if (stack_top == MP_OBJ_NULL) { in mod_ujson_load()
306 stack_top = next; in mod_ujson_load()
307 stack_top_type = mp_obj_get_type(stack_top); in mod_ujson_load()
315 mp_obj_list_append(stack_top, next); in mod_ujson_load()
330 stack.items[0] = stack_top; in mod_ujson_load()
334 stack_top = next; in mod_ujson_load()
348 if (stack_top == MP_OBJ_NULL || stack.len != 0) { in mod_ujson_load()
[all …]
/AliOS-Things-master/components/py_engine/engine/py/
A Dstackctrl.c32 MP_STATE_THREAD(stack_top) = (char *)&stack_dummy; in mp_stack_ctrl_init()
36 MP_STATE_THREAD(stack_top) = top; in mp_stack_set_top()
42 return MP_STATE_THREAD(stack_top) - (char *)&stack_dummy; in mp_stack_usage()
A Dmpstate.h242 char *stack_top; member
A Dmodthread.c192 DEBUG_printf("[thread] start ts=%p args=%p stack=%p\n", &ts, &args, MP_STATE_THREAD(stack_top)); in thread_entry()
/AliOS-Things-master/components/freetype/src/lzw/
A Dftzopen.c112 if ( state->stack_top >= state->stack_size ) in ft_lzwstate_stack_grow()
192 state->stack_top = 0; in ft_lzwstate_reset()
238 if ( state->stack_top >= state->stack_size && \
242 state->stack[state->stack_top++] = (FT_Byte)(c); \
366 while ( state->stack_top > 0 ) in ft_lzwstate_io()
368 --state->stack_top; in ft_lzwstate_io()
371 buffer[result] = state->stack[state->stack_top]; in ft_lzwstate_io()
A Dftzopen.h139 FT_UInt stack_top; member
/AliOS-Things-master/components/py_engine/engine/shared/runtime/
A Dgchelper_native.c47 gc_collect_root((void **)sp, ((uint32_t)MP_STATE_THREAD(stack_top) - sp) / sizeof(uint32_t)); in gc_helper_collect_regs_and_stack()
A Dgchelper_generic.c186 …gc_collect_root(regs_ptr, ((uintptr_t)MP_STATE_THREAD(stack_top) - (uintptr_t)&regs) / sizeof(uint… in gc_helper_collect_regs_and_stack()
/AliOS-Things-master/components/py_engine/adapter/haas510/
A Dmain.c39 static char *stack_top = NULL; variable
242 mp_stack_set_top(stack_top); in mpy_init()
/AliOS-Things-master/components/py_engine/adapter/haas600/
A Dmain.c39 static char *stack_top = NULL; variable
242 mp_stack_set_top(stack_top); in mpy_init()
/AliOS-Things-master/components/py_engine/adapter/
A Dmain.c41 static int8_t *stack_top = NULL; variable
413 mp_stack_set_top(stack_top); in mpy_init()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dquickjs.c288 const uint8_t* stack_top; member
1596 size = rt->stack_top - js_get_stack_pointer(); in js_check_stack_overflow()
1657 rt->stack_top = js_get_stack_pointer(); in JS_NewRuntime2()

Completed in 102 milliseconds