Searched refs:qstrs (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | makeqstrdata.py | 248 qstrs = {} 256 assert ident not in qstrs 259 order = len(qstrs) - 300000 260 qstrs[ident] = (order, ident, qstr) 296 if ident in qstrs: 300 order = len(qstrs) 311 qstrs[ident] = (order, ident, qstr) 317 return qcfgs, qstrs 342 def print_qstr_data(qcfgs, qstrs): argument 364 qcfgs, qstrs = parse_input_headers(infiles) [all …]
|
A D | qstr.c | 140 return pool->qstrs[q - pool->total_prev_len]; in find_qstr() 168 MP_STATE_VM(last_pool)->qstrs[MP_STATE_VM(last_pool)->len++] = q_ptr; in qstr_add() 180 for (const byte **q = pool->qstrs, **q_top = pool->qstrs + pool->len; q < q_top; q++) { in qstr_find_strn() 182 return pool->total_prev_len + (q - pool->qstrs); in qstr_find_strn() 289 for (const byte **q = pool->qstrs, **q_top = pool->qstrs + pool->len; q < q_top; q++) { in qstr_pool_info() 306 for (const byte **q = pool->qstrs, **q_top = pool->qstrs + pool->len; q < q_top; q++) { in qstr_dump_data()
|
A D | qstr.h | 55 const byte *qstrs[]; member
|
A D | dynruntime.mk | 140 $(Q)$(MPY_LD) --arch $(ARCH) --qstrs $(CONFIG_H) -o $@ $^
|
A D | mkrules.cmake | 65 # Generate qstrs
|
A D | gc.c | 914 … for (const byte **q = pool->qstrs, **q_top = pool->qstrs + pool->len; q < q_top; q++) { in gc_dump_alloc_table()
|
/AliOS-Things-master/components/py_engine/engine/tools/ |
A D | mpy-tool.py | 243 self.qstrs = qstrs 349 const_table_len = len(self.qstrs) + len(self.objs) + len(self.raw_codes) 355 for qst in self.qstrs: 389 if len(self.qstrs) + len(self.objs) + len(self.raw_codes): 429 def __init__(self, bytecode, qstrs, objs, raw_codes): argument 431 MP_CODE_BYTECODE, bytecode, 0, qstrs, objs, raw_codes 481 qstrs, argument 487 code_kind, fun_data, prelude_offset, qstrs, objs, raw_codes 763 qstrs = [] 777 return RawCodeBytecode(fun_data.buf, qstrs, objs, raw_codes) [all …]
|
A D | mpy_ld.py | 1036 if args.qstrs is not None: 1037 with open(args.qstrs) as f:
|
Completed in 13 milliseconds