Lines Matching refs:tte
289 #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
300 #define TTE_IS_USED_UA2005(tte) ((tte) & TTE_USED_BIT_UA2005) argument
301 #define TTE_IS_LOCKED_UA2005(tte) ((tte) & TTE_LOCKED_BIT_UA2005) argument
302 #define TTE_IS_SIDEEFFECT_UA2005(tte) ((tte) & TTE_SIDEEFFECT_BIT_UA2005) argument
303 #define TTE_IS_PRIV_UA2005(tte) ((tte) & TTE_PRIV_BIT_UA2005) argument
304 #define TTE_IS_W_OK_UA2005(tte) ((tte) & TTE_W_OK_BIT_UA2005) argument
306 #define TTE_IS_GLOBAL(tte) ((tte) & TTE_GLOBAL_BIT) argument
308 #define TTE_SET_USED(tte) ((tte) |= TTE_USED_BIT) argument
309 #define TTE_SET_UNUSED(tte) ((tte) &= ~TTE_USED_BIT) argument
311 #define TTE_PGSIZE(tte) (((tte) >> 61) & 3ULL) argument
312 #define TTE_PGSIZE_UA2005(tte) ((tte) & 7ULL) argument
313 #define TTE_PA(tte) ((tte) & 0x1ffffffe000ULL) argument
367 uint64_t tte; member