Home
last modified time | relevance | path

Searched defs:tte (Results 1 – 2 of 2) sorted by relevance

/qemu/target/sparc/
H A Dcpu.h289 #define TTE_IS_VALID(tte) ((tte) & TTE_VALID_BIT) argument
290 #define TTE_IS_NFO(tte) ((tte) & TTE_NFO_BIT) argument
291 #define TTE_IS_IE(tte) ((tte) & TTE_IE_BIT) argument
292 #define TTE_IS_USED(tte) ((tte) & TTE_USED_BIT) argument
293 #define TTE_IS_LOCKED(tte) ((tte) & TTE_LOCKED_BIT) argument
294 #define TTE_IS_SIDEEFFECT(tte) ((tte) & TTE_SIDEEFFECT_BIT) argument
295 #define TTE_IS_SIDEEFFECT_UA2005(tte) ((tte) & TTE_SIDEEFFECT_BIT_UA2005) argument
296 #define TTE_IS_PRIV(tte) ((tte) & TTE_PRIV_BIT) argument
297 #define TTE_IS_W_OK(tte) ((tte) & TTE_W_OK_BIT) argument
299 #define TTE_IS_NFO_UA2005(tte) ((tte) & TTE_NFO_BIT_UA2005) argument
[all …]
/qemu/hw/sparc64/
H A Dsun4u_iommu.c81 uint64_t tte; in sun4u_translate_iommu() local