Lines Matching refs:level
77 rt_base_t level; in rt_soft_atomic_exchange() local
79 level = rt_hw_interrupt_disable(); in rt_soft_atomic_exchange()
82 rt_hw_interrupt_enable(level); in rt_soft_atomic_exchange()
88 rt_base_t level; in rt_soft_atomic_add() local
90 level = rt_hw_interrupt_disable(); in rt_soft_atomic_add()
93 rt_hw_interrupt_enable(level); in rt_soft_atomic_add()
99 rt_base_t level; in rt_soft_atomic_sub() local
101 level = rt_hw_interrupt_disable(); in rt_soft_atomic_sub()
104 rt_hw_interrupt_enable(level); in rt_soft_atomic_sub()
110 rt_base_t level; in rt_soft_atomic_xor() local
112 level = rt_hw_interrupt_disable(); in rt_soft_atomic_xor()
115 rt_hw_interrupt_enable(level); in rt_soft_atomic_xor()
121 rt_base_t level; in rt_soft_atomic_and() local
123 level = rt_hw_interrupt_disable(); in rt_soft_atomic_and()
126 rt_hw_interrupt_enable(level); in rt_soft_atomic_and()
132 rt_base_t level; in rt_soft_atomic_or() local
134 level = rt_hw_interrupt_disable(); in rt_soft_atomic_or()
137 rt_hw_interrupt_enable(level); in rt_soft_atomic_or()
143 rt_base_t level; in rt_soft_atomic_load() local
145 level = rt_hw_interrupt_disable(); in rt_soft_atomic_load()
147 rt_hw_interrupt_enable(level); in rt_soft_atomic_load()
153 rt_base_t level; in rt_soft_atomic_store() local
154 level = rt_hw_interrupt_disable(); in rt_soft_atomic_store()
156 rt_hw_interrupt_enable(level); in rt_soft_atomic_store()
161 rt_base_t level; in rt_soft_atomic_flag_test_and_set() local
163 level = rt_hw_interrupt_disable(); in rt_soft_atomic_flag_test_and_set()
171 rt_hw_interrupt_enable(level); in rt_soft_atomic_flag_test_and_set()
177 rt_base_t level; in rt_soft_atomic_flag_clear() local
178 level = rt_hw_interrupt_disable(); in rt_soft_atomic_flag_clear()
180 rt_hw_interrupt_enable(level); in rt_soft_atomic_flag_clear()
186 rt_base_t level; in rt_soft_atomic_compare_exchange_strong() local
188 level = rt_hw_interrupt_disable(); in rt_soft_atomic_compare_exchange_strong()
199 rt_hw_interrupt_enable(level); in rt_soft_atomic_compare_exchange_strong()