Lines Matching refs:bit

53 #define test_cpu_cap(c, bit)						\  argument
54 test_bit(bit, (unsigned long *)((c)->x86_capability))
63 #define CHECK_BIT_IN_MASK_WORD(maskname, word, bit) \ argument
64 (((bit)>>5)==(word) && (1UL<<((bit)&31) & maskname##word ))
121 #define cpu_has(c, bit) \ argument
122 (__builtin_constant_p(bit) && REQUIRED_MASK_BIT_SET(bit) ? 1 : \
123 test_cpu_cap(c, bit))
125 #define this_cpu_has(bit) \ argument
126 (__builtin_constant_p(bit) && REQUIRED_MASK_BIT_SET(bit) ? 1 : \
127 x86_this_cpu_test_bit(bit, \
138 #define cpu_feature_enabled(bit) \ argument
139 (__builtin_constant_p(bit) && DISABLED_MASK_BIT_SET(bit) ? 0 : static_cpu_has(bit))
141 #define boot_cpu_has(bit) cpu_has(&boot_cpu_data, bit) argument
143 #define set_cpu_cap(c, bit) set_bit(bit, (unsigned long *)((c)->x86_capability)) argument
145 extern void setup_clear_cpu_cap(unsigned int bit);
146 extern void clear_cpu_cap(struct cpuinfo_x86 *c, unsigned int bit);
148 #define setup_force_cpu_cap(bit) do { \ argument
149 set_cpu_cap(&boot_cpu_data, bit); \
150 set_bit(bit, (unsigned long *)cpu_caps_set); \
153 #define setup_force_cpu_bug(bit) setup_force_cpu_cap(bit) argument
165 #define static_cpu_has(bit) boot_cpu_has(bit) argument
182 static __always_inline bool _static_cpu_has(u16 bit) in _static_cpu_has() argument
192 : : [feature] "i" (bit), in _static_cpu_has()
193 [bitnum] "i" (1 << (bit & 7)), in _static_cpu_has()
194 [cap_byte] "i" (&((const char *)boot_cpu_data.x86_capability)[bit >> 3]) in _static_cpu_has()
202 #define static_cpu_has(bit) \ argument
204 __builtin_constant_p(boot_cpu_has(bit)) ? \
205 boot_cpu_has(bit) : \
206 _static_cpu_has(bit) \
210 #define cpu_has_bug(c, bit) cpu_has(c, (bit)) argument
211 #define set_cpu_bug(c, bit) set_cpu_cap(c, (bit)) argument
212 #define clear_cpu_bug(c, bit) clear_cpu_cap(c, (bit)) argument
214 #define static_cpu_has_bug(bit) static_cpu_has((bit)) argument
215 #define boot_cpu_has_bug(bit) cpu_has_bug(&boot_cpu_data, (bit)) argument
216 #define boot_cpu_set_bug(bit) set_cpu_cap(&boot_cpu_data, (bit)) argument