Lines Matching refs:val
56 unsigned long val; in get_cr() local
57 asm("mrc p15, 0, %0, c1, c0, 0 @ get CR" : "=r" (val) : : "cc"); in get_cr()
58 return val; in get_cr()
61 static inline void set_cr(unsigned long val) in set_cr() argument
64 : : "r" (val) : "cc"); in set_cr()
70 unsigned int val; in get_auxcr() local
71 asm("mrc p15, 0, %0, c1, c0, 1 @ get AUXCR" : "=r" (val)); in get_auxcr()
72 return val; in get_auxcr()
75 static inline void set_auxcr(unsigned int val) in set_auxcr() argument
78 : : "r" (val)); in set_auxcr()
88 unsigned int val; in get_copro_access() local
90 : "=r" (val) : : "cc"); in get_copro_access()
91 return val; in get_copro_access()
94 static inline void set_copro_access(unsigned int val) in set_copro_access() argument
97 : : "r" (val) : "cc"); in set_copro_access()