/external/iproute2/netem/ |
D | maketable.c | 164 int i, j, last, lasti = -1; in interpolatetable() local 173 table[i] = last + (i-lasti)*(table[j]-last)/(j-lasti); in interpolatetable() 175 table[i] = last + (i-lasti)*(MAXSHORT-last)/(limit-lasti); in interpolatetable() 179 lasti = i; in interpolatetable()
|
/external/python/cpython2/Lib/ |
D | dis.py | 61 def disassemble(co, lasti=-1): argument 80 if i == lasti: print '-->', 110 def disassemble_string(code, lasti=-1, varnames=None, names=None, argument 118 if i == lasti: print '-->',
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_shader.c | 402 int i, lasti = 0; in tgsi_last_instruction() local 406 lasti = i; in tgsi_last_instruction() 409 return lasti; in tgsi_last_instruction() 1814 int r, i, lasti; in do_lds_fetch_values() local 1819 lasti = tgsi_last_instruction(mask); in do_lds_fetch_values() 1820 for (i = 1; i <= lasti; i++) { in do_lds_fetch_values() 1831 for (i = 0; i <= lasti; i++) { in do_lds_fetch_values() 1849 for (i = 0; i <= lasti; i++) { in do_lds_fetch_values() 2782 int i, r, lasti; in r600_store_tcs_output() local 2801 lasti = tgsi_last_instruction(write_mask); in r600_store_tcs_output() [all …]
|
/external/python/cpython3/Lib/ |
D | dis.py | 352 def disassemble(co, lasti=-1, *, file=None): argument 356 _disassemble_bytes(co.co_code, lasti, co.co_varnames, co.co_names, 370 def _disassemble_bytes(code, lasti=-1, varnames=None, names=None, argument 396 is_current_instr = instr.offset == lasti 518 lasti=offset)
|
D | pdb.py | 114 def lasti2lineno(code, lasti): argument 118 if lasti >= i:
|
/external/python/cpython2/Include/ |
D | code.h | 99 int lasti, PyAddrPair *bounds);
|
/external/python/cpython3/Include/ |
D | code.h | 130 int lasti, PyAddrPair *bounds);
|
/external/python/cpython3/Lib/test/ |
D | test_dis.py | 409 def get_disassembly(self, func, lasti=-1, wrapper=True, **kwargs): argument 416 dis.disassemble(func, lasti, **kwargs) 419 def get_disassemble_as_string(self, func, lasti=-1): argument 420 return self.get_disassembly(func, lasti, False) 607 def get_disassembly(self, func, lasti=-1, wrapper=True, **kwargs): argument 612 dis.disassemble(func, lasti, file=output, **kwargs)
|
/external/python/cpython2/Objects/ |
D | codeobject.c | 717 _PyCode_CheckLineNumber(PyCodeObject* co, int lasti, PyAddrPair *bounds) in _PyCode_CheckLineNumber() argument 740 if (addr + *p > lasti) in _PyCode_CheckLineNumber()
|
/external/python/cpython3/Python/ |
D | traceback.c | 38 tb_create_raw(PyTracebackObject *next, PyFrameObject *frame, int lasti, in tb_create_raw() argument 53 tb->tb_lasti = lasti; in tb_create_raw()
|
/external/python/cpython3/Objects/ |
D | codeobject.c | 792 _PyCode_CheckLineNumber(PyCodeObject* co, int lasti, PyAddrPair *bounds) in _PyCode_CheckLineNumber() argument 816 if (addr + *p > lasti) in _PyCode_CheckLineNumber()
|
/external/python/cpython2/Doc/library/ |
D | dis.rst | 57 .. function:: disassemble(code[, lasti]) 59 Disassembles a code object, indicating the last instruction if *lasti* was 74 .. function:: disco(code[, lasti])
|
/external/python/cpython3/Doc/library/ |
D | dis.rst | 193 .. function:: disassemble(code, lasti=-1, *, file=None) 194 disco(code, lasti=-1, *, file=None) 196 Disassemble a code object, indicating the last instruction if *lasti* was
|