Searched defs:tb_next (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/jinja2/
H A Ddebug.py44 def tb_next(self): member in class:TracebackFrameProxy
164 tb = tb.tb_next
172 tb = tb.tb_next
177 next = tb.tb_next
261 new_tb = exc_info[2].tb_next
269 traceback objects. The function returned allows resetting `tb_next` on
304 ('tb_next', ctypes.POINTER(_Traceback)),
311 """Set the tb_next attribute of a traceback object."""
316 if tb.tb_next is not None:
317 old = _Traceback.from_address(id(tb.tb_next))
[all...]
/external/qemu/include/exec/
H A Dexec-all.h176 uintptr_t tb_next[2]; /* address of jump generated code */ member in struct:TranslationBlock
304 tb->tb_next[n] = addr;
310 TranslationBlock *tb_next)
315 tb_set_jmp_target(tb, n, (uintptr_t)tb_next->tc_ptr);
318 tb->jmp_next[n] = tb_next->jmp_first;
319 tb_next->jmp_first = (TranslationBlock *)((uintptr_t)(tb) | (n));
309 tb_add_jump(TranslationBlock *tb, int n, TranslationBlock *tb_next) argument
/external/qemu/
H A Dtranslate-all.c162 s->tb_next = NULL;
169 s->tb_next = tb->tb_next;
230 s->tb_next = NULL;
233 s->tb_next = tb->tb_next;
1047 TranslationBlock *tb, *tb_next, *saved_tb; local
1080 tb_next = tb->page_next[n];
1130 tb = tb_next;
1455 TranslationBlock *tb1, *tb_next, **pt local
[all...]
/external/qemu/tcg/
H A Dtcg.h458 uintptr_t *tb_next; member in struct:TCGContext

Completed in 257 milliseconds