Home
last modified time | relevance | path

Searched refs:unum (Results 1 – 6 of 6) sorted by relevance

/AliOS-Things-master/components/py_engine/engine/py/
A Dshowbc.c36 unum = 0; \
38 unum = (unum << 7) + (*ip & 0x7f); \
51 unum = mp_showbc_const_table[unum]
54 unum = mp_showbc_const_table[unum]
66 unum = (uintptr_t)*(void **)ip; \
71 unum = (mp_uint_t)*(mp_obj_t *)ip; \
154 mp_uint_t unum; in mp_bytecode_print_str() local
470 … mp_printf(print, "CALL_FUNCTION n=" UINT_FMT " nkw=" UINT_FMT, unum & 0xff, (unum >> 8) & 0xff); in mp_bytecode_print_str()
475 …printf(print, "CALL_FUNCTION_VAR_KW n=" UINT_FMT " nkw=" UINT_FMT, unum & 0xff, (unum >> 8) & 0xff… in mp_bytecode_print_str()
480 … mp_printf(print, "CALL_METHOD n=" UINT_FMT " nkw=" UINT_FMT, unum & 0xff, (unum >> 8) & 0xff); in mp_bytecode_print_str()
[all …]
A Dprofile.c445 unum = 0; \
447 unum = (unum << 7) + (*ip & 0x7f); \
471 mp_uint_t unum; in mp_prof_opcode_decode() local
518 instruction->arg = unum; in mp_prof_opcode_decode()
529 instruction->arg = unum; in mp_prof_opcode_decode()
535 instruction->arg = unum; in mp_prof_opcode_decode()
593 instruction->arg = unum; in mp_prof_opcode_decode()
599 instruction->arg = unum; in mp_prof_opcode_decode()
633 instruction->arg = unum; in mp_prof_opcode_decode()
639 instruction->arg = unum; in mp_prof_opcode_decode()
[all …]
A Dvm.c60 mp_uint_t unum = 0; \
62 unum = (unum << 7) + (*ip & 0x7f); \
721 unum -= 1; in mp_execute_bytecode()
856 sp -= unum - 1; 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()
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()
1061 sp -= (unum & 0xff) + ((unum >> 7) & 0x1fe) + 1; in mp_execute_bytecode()
1090 SET_TOP(mp_call_method_n_kw(unum & 0xff, (unum >> 8) & 0xff, sp)); in mp_execute_bytecode()
[all …]
A Dbc.c46 mp_uint_t unum = 0; in mp_decode_uint() local
51 unum = (unum << 7) | (val & 0x7f); in mp_decode_uint()
54 return unum; in mp_decode_uint()
A Dpersistentcode.c251 size_t unum = 0; in read_uint() local
258 unum = (unum << 7) | (b & 0x7f); in read_uint()
263 return unum; in read_uint()
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/tools/
A Dpngfix.c177 #define UDIGITS(unum) ((sizeof unum)/(sizeof (udigit)) argument

Completed in 17 milliseconds