Home
last modified time | relevance | path

Searched refs:lasti (Results 1 – 9 of 9) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_shader.c497 int i, lasti = 0; in tgsi_last_instruction() local
501 lasti = i; in tgsi_last_instruction()
504 return lasti; in tgsi_last_instruction()
2148 int r, i, lasti; in do_lds_fetch_values() local
2153 lasti = tgsi_last_instruction(mask); in do_lds_fetch_values()
2154 for (i = 1; i <= lasti; i++) { in do_lds_fetch_values()
2165 for (i = 0; i <= lasti; i++) { in do_lds_fetch_values()
2183 for (i = 0; i <= lasti; i++) { in do_lds_fetch_values()
3117 int i, r, lasti; in r600_store_tcs_output() local
3136 lasti = tgsi_last_instruction(write_mask); in r600_store_tcs_output()
[all …]
/third_party/python/Lib/
Ddis.py368 def disassemble(co, lasti=-1, *, file=None): argument
372 _disassemble_bytes(co.co_code, lasti, co.co_varnames, co.co_names,
386 def _disassemble_bytes(code, lasti=-1, varnames=None, names=None, argument
412 is_current_instr = instr.offset == lasti
523 lasti=offset)
Dpdb.py116 def lasti2lineno(code, lasti): argument
120 if lasti >= i:
/third_party/python/Include/cpython/
Dcode.h154 PyAPI_FUNC(int) _PyCode_CheckLineNumber(int lasti, PyCodeAddressRange *bounds);
/third_party/python/Lib/test/
Dtest_dis.py491 def get_disassembly(self, func, lasti=-1, wrapper=True, **kwargs): argument
498 dis.disassemble(func, lasti, **kwargs)
501 def get_disassemble_as_string(self, func, lasti=-1): argument
502 return self.get_disassembly(func, lasti, False)
701 def get_disassembly(self, func, lasti=-1, wrapper=True, **kwargs): argument
706 dis.disassemble(func, lasti, file=output, **kwargs)
/third_party/openssl/crypto/bn/
Dbn_lib.c485 size_t i, lasti, j, atop, mask; in bn2binpad() local
513 lasti = atop - 1; in bn2binpad()
526 i += (i - lasti) >> (8 * sizeof(i) - 1); /* stay on last limb */ in bn2binpad()
/third_party/python/Python/
Dtraceback.c38 tb_create_raw(PyTracebackObject *next, PyFrameObject *frame, int lasti, in tb_create_raw() argument
53 tb->tb_lasti = lasti; in tb_create_raw()
/third_party/python/Objects/
Dcodeobject.c1280 _PyCode_CheckLineNumber(int lasti, PyCodeAddressRange *bounds) in _PyCode_CheckLineNumber() argument
1282 while (bounds->ar_end <= lasti) { in _PyCode_CheckLineNumber()
1287 while (bounds->ar_start > lasti) { in _PyCode_CheckLineNumber()
/third_party/python/Doc/library/
Ddis.rst193 .. 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