/third_party/python/Lib/ |
H A D | dis.py | 271 "start end target depth lasti") 415 lasti = bool(dl&1) 416 entries.append(_ExceptionTableEntry(start, end, target, depth, lasti)) 519 def disassemble(co, lasti=-1, *, file=None, show_caches=False, adaptive=False): 524 lasti, co._varname_from_oparg, 542 def _disassemble_bytes(code, lasti=-1, varname_from_oparg=None, 572 is_current_instr = instr.offset == lasti 578 lasti = " lasti" if entry.lasti els [all...] |
H A D | pdb.py | 110 def lasti2lineno(code, lasti): 114 if lasti >= i:
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_shader.c | 497 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 in r600_store_tcs_output() 4529 int i, j, r, lasti = tgsi_last_instruction(write_mask); tgsi_op2_64_params() local 4679 int lasti = 3; tgsi_op3_64() local 4712 int i, j, r, lasti = tgsi_last_instruction(write_mask); tgsi_op2_s() local 4800 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_ineg() local 4831 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_dneg() local 5038 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); egcm_double_to_int() local 5107 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); cayman_emit_double_instr() local 5178 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); cayman_mul_int_instr() local 5227 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); cayman_mul_double_instr() local 5441 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_trig() local 5850 int lasti = tgsi_last_instruction(write_mask); tgsi_divmod() local 7065 int r, i = 0, k, interp_gpr, interp_base_chan, tmp, lasti; tgsi_interp_egcm() local 7258 int lasti = tgsi_last_instruction(writemask); tgsi_make_src_for_op3() local 7298 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_op3_dst() local 7458 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); do_vtx_fetch_inst() local 9029 int lasti; tgsi_store_buffer_rat() local 9168 int r, i, lasti; tgsi_store_lds() local 9662 unsigned lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_lrp() local 9771 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_cmp() local 9819 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_ucmp() local 10237 int i, lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_eg_arl() local 10283 int i, lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_r600_arl() local 10804 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_umad() local 10857 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_pk2h() local 10905 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_up2h() local 10955 int lasti = tgsi_last_instruction(inst->Dst[0].Register.WriteMask); tgsi_bfe() local [all...] |
/third_party/python/Objects/ |
H A D | frameobject.c | 62 int lasti = _PyInterpreterFrame_LASTI(f->f_frame); in frame_getlasti() local 63 if (lasti < 0) { in frame_getlasti() 66 return PyLong_FromLong(lasti * sizeof(_Py_CODEUNIT)); in frame_getlasti() 484 int lasti = depth_and_lasti & 1; in mark_stacks() local 489 if (lasti) { in mark_stacks() 794 /* Finally set the new lasti and return OK. */ in frame_setlineno() 1117 int lasti = _PyInterpreterFrame_LASTI(frame); in _PyFrame_FastToLocalsWithError() local 1118 if (lasti < 0 && _Py_OPCODE(_PyCode_CODE(co)[0]) == COPY_FREE_VARS) { in _PyFrame_FastToLocalsWithError() 1363 int lasti = _PyInterpreterFrame_LASTI(frame->f_frame); in PyFrame_GetLasti() local 1364 if (lasti < in PyFrame_GetLasti() [all...] |
H A D | codeobject.c | 802 the same line as lasti. Return the number of that line, or -1 if lasti is out of bounds. */ 804 _PyCode_CheckLineNumber(int lasti, PyCodeAddressRange *bounds) in _PyCode_CheckLineNumber() argument 806 while (bounds->ar_end <= lasti) { in _PyCode_CheckLineNumber() 811 while (bounds->ar_start > lasti) { in _PyCode_CheckLineNumber()
|
/third_party/python/Include/cpython/ |
H A D | code.h | 187 same line as lasti. Return the number of that line. 189 PyAPI_FUNC(int) _PyCode_CheckLineNumber(int lasti, PyCodeAddressRange *bounds);
|
/third_party/node/deps/openssl/openssl/crypto/bn/ |
H A D | bn_lib.c | 485 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/openssl/crypto/bn/ |
H A D | bn_lib.c | 485 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/Lib/test/ |
H A D | test_dis.py | 720 def get_disassembly(self, func, lasti=-1, wrapper=True, **kwargs): 727 dis.disassemble(func, lasti, **kwargs) 730 def get_disassemble_as_string(self, func, lasti=-1): 731 return self.get_disassembly(func, lasti, False) 1070 def get_disassembly(self, func, lasti=-1, wrapper=True, **kwargs): 1075 dis.disassemble(func, lasti, file=output, **kwargs)
|
H A D | test_traceback.py | 1974 lasti = 0 1976 tb = types.TracebackType(tb_next, frame, lasti, lineno)
|
/third_party/python/Python/ |
H A D | traceback.c | 44 tb_create_raw(PyTracebackObject *next, PyFrameObject *frame, int lasti, in tb_create_raw() argument 59 tb->tb_lasti = lasti; in tb_create_raw()
|
H A D | ceval.c | 2670 PyObject *lasti = PEEK(oparg + 1); local 2671 if (PyLong_Check(lasti)) { 2672 frame->prev_instr = first_instr + PyLong_AsLong(lasti); 2676 assert(PyLong_Check(lasti)); 2677 _PyErr_SetString(tstate, PyExc_SystemError, "lasti is not an int"); 4440 - THIRD: lasti of exception in exc_info() 5771 int level, handler, lasti; local 5772 if (get_exception_handler(frame->f_code, offset, &level, &handler, &lasti) == 0) { 5796 if (lasti) { 5798 PyObject *lasti local 6087 get_exception_handler(PyCodeObject *code, int index, int *level, int *handler, int *lasti) global() argument [all...] |
/third_party/python/Modules/ |
H A D | _testcapimodule.c | 6035 int lasti = PyFrame_GetLasti((PyFrameObject *)frame); in frame_getlasti() local 6036 if (lasti < 0) { in frame_getlasti() 6037 assert(lasti == -1); in frame_getlasti() 6040 return PyLong_FromLong(lasti); in frame_getlasti()
|