Lines Matching refs:bit
54 #define test_cpu_cap(c, bit) \ argument
55 arch_test_bit(bit, (unsigned long *)((c)->x86_capability))
64 #define CHECK_BIT_IN_MASK_WORD(maskname, word, bit) \ argument
65 (((bit)>>5)==(word) && (1UL<<((bit)&31) & maskname##word ))
124 #define cpu_has(c, bit) \ argument
125 (__builtin_constant_p(bit) && REQUIRED_MASK_BIT_SET(bit) ? 1 : \
126 test_cpu_cap(c, bit))
128 #define this_cpu_has(bit) \ argument
129 (__builtin_constant_p(bit) && REQUIRED_MASK_BIT_SET(bit) ? 1 : \
130 x86_this_cpu_test_bit(bit, \
141 #define cpu_feature_enabled(bit) \ argument
142 (__builtin_constant_p(bit) && DISABLED_MASK_BIT_SET(bit) ? 0 : static_cpu_has(bit))
144 #define boot_cpu_has(bit) cpu_has(&boot_cpu_data, bit) argument
146 #define set_cpu_cap(c, bit) set_bit(bit, (unsigned long *)((c)->x86_capability)) argument
148 extern void setup_clear_cpu_cap(unsigned int bit);
149 extern void clear_cpu_cap(struct cpuinfo_x86 *c, unsigned int bit);
151 #define setup_force_cpu_cap(bit) do { \ argument
152 set_cpu_cap(&boot_cpu_data, bit); \
153 set_bit(bit, (unsigned long *)cpu_caps_set); \
156 #define setup_force_cpu_bug(bit) setup_force_cpu_cap(bit) argument
168 #define static_cpu_has(bit) boot_cpu_has(bit) argument
180 static __always_inline bool _static_cpu_has(u16 bit) in _static_cpu_has() argument
190 : : [feature] "i" (bit), in _static_cpu_has()
191 [bitnum] "i" (1 << (bit & 7)), in _static_cpu_has()
192 [cap_byte] "m" (((const char *)boot_cpu_data.x86_capability)[bit >> 3]) in _static_cpu_has()
200 #define static_cpu_has(bit) \ argument
202 __builtin_constant_p(boot_cpu_has(bit)) ? \
203 boot_cpu_has(bit) : \
204 _static_cpu_has(bit) \
208 #define cpu_has_bug(c, bit) cpu_has(c, (bit)) argument
209 #define set_cpu_bug(c, bit) set_cpu_cap(c, (bit)) argument
210 #define clear_cpu_bug(c, bit) clear_cpu_cap(c, (bit)) argument
212 #define static_cpu_has_bug(bit) static_cpu_has((bit)) argument
213 #define boot_cpu_has_bug(bit) cpu_has_bug(&boot_cpu_data, (bit)) argument
214 #define boot_cpu_set_bug(bit) set_cpu_cap(&boot_cpu_data, (bit)) argument