Searched refs:bytecode_offset (Results 1 – 1 of 1) sorted by relevance
63 size_t bytecode_offset; member254 emit->bytecode_offset = (size_t)MP_ALIGN(emit->bytecode_offset, sizeof(mp_obj_t)); in emit_write_bytecode_byte_obj()270 emit->bytecode_offset = (size_t)MP_ALIGN(emit->bytecode_offset, sizeof(void *)); in emit_write_bytecode_byte_raw_code()284 mp_uint_t bytecode_offset; in emit_write_bytecode_byte_unsigned_label() local286 bytecode_offset = 0; in emit_write_bytecode_byte_unsigned_label()288 bytecode_offset = emit->label_offsets[label] - emit->bytecode_offset - 3; in emit_write_bytecode_byte_unsigned_label()292 c[1] = bytecode_offset; in emit_write_bytecode_byte_unsigned_label()299 int bytecode_offset; in emit_write_bytecode_byte_signed_label() local301 bytecode_offset = 0; in emit_write_bytecode_byte_signed_label()303 bytecode_offset = emit->label_offsets[label] - emit->bytecode_offset - 3 + 0x8000; in emit_write_bytecode_byte_signed_label()[all …]
Completed in 5 milliseconds