/AliOS-Things-master/components/py_engine/engine/py/ |
A D | showbc.c | 101 mp_printf(print, "Raw bytecode (code_info_size=" UINT_FMT ", bytecode_size=" UINT_FMT "):\n", in mp_bytecode_print() 200 mp_printf(print, "LOAD_FAST_N " UINT_FMT, unum); in mp_bytecode_print_str() 205 mp_printf(print, "LOAD_DEREF " UINT_FMT, unum); in mp_bytecode_print_str() 405 mp_printf(print, "BUILD_LIST " UINT_FMT, unum); in mp_bytecode_print_str() 410 mp_printf(print, "BUILD_MAP " UINT_FMT, unum); in mp_bytecode_print_str() 419 mp_printf(print, "BUILD_SET " UINT_FMT, unum); in mp_bytecode_print_str() 441 mp_printf(print, "UNPACK_EX " UINT_FMT, unum); in mp_bytecode_print_str() 470 … mp_printf(print, "CALL_FUNCTION n=" UINT_FMT " nkw=" UINT_FMT, unum & 0xff, (unum >> 8) & 0xff); in mp_bytecode_print_str() 475 …mp_printf(print, "CALL_FUNCTION_VAR_KW n=" UINT_FMT " nkw=" UINT_FMT, unum & 0xff, (unum >> 8) & 0… 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 D | modmicropython.c | 72 mp_printf(&mp_plat_print, "mem: total=" UINT_FMT ", current=" UINT_FMT ", peak=" UINT_FMT "\n", in mp_micropython_mem_info() 76 mp_printf(&mp_plat_print, "stack: " UINT_FMT " out of " UINT_FMT "\n", in mp_micropython_mem_info() 79 mp_printf(&mp_plat_print, "stack: " UINT_FMT "\n", mp_stack_usage()); in mp_micropython_mem_info()
|
A D | emitglue.c | 91 …DEBUG_printf("assign byte code: code=%p len=" UINT_FMT " flags=%x\n", code, len, (uint)scope_flags… in mp_emit_glue_assign_bytecode() 153 …DEBUG_printf("assign native: kind=%d fun=%p len=" UINT_FMT " n_pos_args=" UINT_FMT " flags=%x\n", … in mp_emit_glue_assign_native() 222 DEBUG_OP_printf("make_closure_from_raw_code %p " UINT_FMT " %p\n", rc, n_closed_over, args); in mp_make_closure_from_raw_code()
|
A D | gc.c | 112 …DEBUG_printf("Initializing GC heap: %p..%p = " UINT_FMT " bytes\n", start, end, (byte *)end - (byt… in gc_init() 169 …DEBUG_printf(" alloc table at %p, length " UINT_FMT " bytes, " UINT_FMT " blocks\n", MP_STATE_MEM… in gc_init() 171 …DEBUG_printf(" finaliser table at %p, length " UINT_FMT " bytes, " UINT_FMT " blocks\n", MP_STATE… in gc_init() 173 …DEBUG_printf(" pool at %p, length " UINT_FMT " bytes, " UINT_FMT " blocks\n", MP_STATE_MEM(gc_poo… in gc_init() 441 DEBUG_printf("gc_alloc(" UINT_FMT " bytes -> " UINT_FMT " blocks)\n", n_bytes, n_blocks); in gc_alloc() 490 DEBUG_printf("gc_alloc(" UINT_FMT "): no free mem, triggering GC\n", n_bytes); in gc_alloc()
|
A D | nativeglue.c | 70 DEBUG_printf("mp_native_from_obj(%p, " UINT_FMT ")\n", obj, type); in mp_native_from_obj() 97 DEBUG_printf("mp_native_to_obj(" UINT_FMT ", " UINT_FMT ")\n", val, type); in mp_native_to_obj()
|
A D | runtime.c | 236 DEBUG_OP_printf("unary " UINT_FMT " %q %p\n", op, mp_unary_op_method_name[op], arg); in mp_unary_op() 315 DEBUG_OP_printf("binary " UINT_FMT " %q %p %p\n", op, mp_binary_op_method_name[op], lhs, rhs); in mp_binary_op() 648 …DEBUG_OP_printf("calling function %p(n_args=" UINT_FMT ", n_kw=" UINT_FMT ", args=%p)\n", fun_in, … in mp_call_function_n_kw() 669 …DEBUG_OP_printf("call method (fun=%p, self=%p, n_args=" UINT_FMT ", n_kw=" UINT_FMT ", args=%p)\n"… in mp_call_method_n_kw() 904 DEBUG_OP_printf("unpack ex " UINT_FMT " " UINT_FMT "\n", num_left, num_right); in mp_unpack_ex()
|
A D | mpconfig.h | 1645 #define UINT_FMT "%lu" macro 1648 #define UINT_FMT "%llu" macro 1652 #define UINT_FMT "%u" macro
|
A D | objfun.c | 252 DEBUG_printf("Input n_args: " UINT_FMT ", n_kw: " UINT_FMT "\n", n_args, n_kw); in fun_bc_call() 317 …mp_printf(MICROPY_DEBUG_PRINTER, "VM stack overflow state=%p n_state+1=" UINT_FMT "\n", code_state… in fun_bc_call()
|
A D | map.c | 113 DEBUG_printf("mp_map_rehash(%p): " UINT_FMT " -> " UINT_FMT "\n", map, old_alloc, new_alloc); in mp_map_rehash()
|
A D | emitnative.c | 1069 DEBUG_printf(" convert_native_to_obj(local_num=" UINT_FMT ")\n", local_num); in emit_get_stack_pointer_to_reg_for_pop() 1166 DEBUG_printf("label_assign(" UINT_FMT ")\n", l); in emit_native_label_assign() 1440 DEBUG_printf("load_fast(%s, " UINT_FMT ")\n", qstr_str(qst), local_num); in emit_native_load_fast() 1456 DEBUG_printf("load_deref(%s, " UINT_FMT ")\n", qstr_str(qst), local_num); in emit_native_load_deref() 1686 DEBUG_printf("store_deref(%s, " UINT_FMT ")\n", qstr_str(qst), local_num); in emit_native_store_deref() 2007 DEBUG_printf("jump(label=" UINT_FMT ")\n", label); in emit_native_jump() 2053 DEBUG_printf("pop_jump_if(cond=%u, label=" UINT_FMT ")\n", cond, label); in emit_native_pop_jump_if() 2058 DEBUG_printf("jump_if_or_pop(cond=%u, label=" UINT_FMT ")\n", cond, label); in emit_native_jump_if_or_pop() 2314 DEBUG_printf("binary_op(" UINT_FMT ")\n", op); in emit_native_binary_op() 2714 …DEBUG_printf("call_function(n_pos=" UINT_FMT ", n_kw=" UINT_FMT ", star_flags=" UINT_FMT ")\n", n_… in emit_native_call_function()
|
A D | lexer.c | 893 …printf("(" UINT_FMT ":" UINT_FMT ") kind:%u str:%p len:%zu", lex->tok_line, lex->tok_column, lex->…
|
A D | parse.c | 890 printf("depth=" UINT_FMT " ", parser.rule_stack_top); in mp_parse() 894 … printf("%s n=" UINT_FMT " i=" UINT_FMT " bt=%d\n", rule_name_table[rule_id], n, i, backtrack); in mp_parse()
|
/AliOS-Things-master/components/py_engine/engine/extmod/ |
A D | moduzlib.c | 156 DEBUG_printf("sizeof(TINF_DATA)=" UINT_FMT "\n", sizeof(*decomp)); in mod_uzlib_decompress() 163 DEBUG_printf("uzlib: Initial out buffer: " UINT_FMT " bytes\n", dest_buf_size); in mod_uzlib_decompress() 197 …DEBUG_printf("uzlib: Resizing from " UINT_FMT " to final size: " UINT_FMT " bytes\n", dest_buf_siz… in mod_uzlib_decompress()
|
A D | modutimeq.c | 182 printf(UINT_FMT "\t%p\t%p\n", heap->items[i].time, in mod_utimeq_dump()
|
/AliOS-Things-master/components/py_engine/engine/extmod/nimble/ |
A D | modbluetooth_nimble.c | 507 …f("central_gap_event_cb: passkey action: conn_handle=%d action=%d num=" UINT_FMT "\n", event->pass… in central_gap_event_cb() 1107 …uetooth_gap_passkey: injecting IO: conn_handle=%d, action=%d, passkey=" UINT_FMT ", numcmp_accept=… in mp_bluetooth_gap_passkey() 1872 …("ble_store_ram_read: Key not found: type=%d, index=%u, key=0x%p, len=" UINT_FMT "\n", obj_type, k… in ble_store_ram_read() 1877 …DEBUG_printf("ble_store_ram_read: Invalid key data: actual=" UINT_FMT " expected=" UINT_FMT "\n", … in ble_store_ram_read()
|
/AliOS-Things-master/components/py_engine/adapter/haas510/ |
A D | mpconfigport.h | 224 #define UINT_FMT "%u" macro
|
/AliOS-Things-master/components/py_engine/adapter/haas600/ |
A D | mpconfigport.h | 224 #define UINT_FMT "%u" macro
|
/AliOS-Things-master/components/py_engine/adapter/haas/ |
A D | mpconfigport.h | 239 #define UINT_FMT "%u" macro
|
/AliOS-Things-master/components/py_engine/engine/shared/runtime/ |
A D | pyexec.c | 152 printf("took " UINT_FMT " ms\n", ticks); in parse_compile_execute()
|