Searched refs:idx_shift (Results 1 – 1 of 1) sorted by relevance
836 const rt_ubase_t idx_shift = 2; in _noncache() local837 const rt_ubase_t idx_mask = 0x7 << idx_shift; in _noncache()839 if ((entry & idx_mask) == (NORMAL_MEM << idx_shift)) in _noncache()841 *pte = (entry & ~idx_mask) | (NORMAL_NOCACHE_MEM << idx_shift); in _noncache()854 const rt_ubase_t idx_shift = 2; in _cache() local855 const rt_ubase_t idx_mask = 0x7 << idx_shift; in _cache()857 if ((entry & idx_mask) == (NORMAL_NOCACHE_MEM << idx_shift)) in _cache()859 *pte = (entry & ~idx_mask) | (NORMAL_MEM << idx_shift); in _cache()
Completed in 5 milliseconds