Home
last modified time | relevance | path

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

/external/qemu/
Dexec.c706 static inline void tb_remove(TranslationBlock **ptb, TranslationBlock *tb, in tb_remove() argument
711 tb1 = *ptb; in tb_remove()
713 *ptb = *(TranslationBlock **)((char *)tb1 + next_offset); in tb_remove()
716 ptb = (TranslationBlock **)((char *)tb1 + next_offset); in tb_remove()
720 static inline void tb_page_remove(TranslationBlock **ptb, TranslationBlock *tb) in tb_page_remove() argument
726 tb1 = *ptb; in tb_page_remove()
730 *ptb = tb1->page_next[n1]; in tb_page_remove()
733 ptb = &tb1->page_next[n1]; in tb_page_remove()
739 TranslationBlock *tb1, **ptb; in tb_jmp_remove() local
742 ptb = &tb->jmp_next[n]; in tb_jmp_remove()
[all …]