Searched refs:bitop (Results 1 – 8 of 8) sorted by relevance
| /linux/tools/include/linux/ |
| H A D | bitops.h | 35 #define bitop(op, nr, addr) \ macro 38 #define __set_bit(nr, addr) bitop(___set_bit, nr, addr) 39 #define __clear_bit(nr, addr) bitop(___clear_bit, nr, addr) 40 #define __change_bit(nr, addr) bitop(___change_bit, nr, addr) 41 #define __test_and_set_bit(nr, addr) bitop(___test_and_set_bit, nr, addr) 42 #define __test_and_clear_bit(nr, addr) bitop(___test_and_clear_bit, nr, addr) 43 #define __test_and_change_bit(nr, addr) bitop(___test_and_change_bit, nr, addr) 44 #define test_bit(nr, addr) bitop(_test_bit, nr, addr)
|
| /linux/arch/arm/lib/ |
| H A D | setbit.S | 12 bitop _set_bit, orr label
|
| H A D | clearbit.S | 12 bitop _clear_bit, bic label
|
| H A D | changebit.S | 12 bitop _change_bit, eor label
|
| H A D | bitops.h | 6 .macro bitop, name, instr 69 .macro bitop, name, instr
|
| /linux/arch/x86/kvm/svm/ |
| H A D | svm.h | 742 #define __BUILD_SVM_MSR_BITMAP_HELPER(rtype, action, bitop, access, bit_rw) \ argument 752 return bitop##_bit(bit_nr + bit_rw, bitmap); \ 755 #define BUILD_SVM_MSR_BITMAP_HELPERS(ret_type, action, bitop) \ argument 756 __BUILD_SVM_MSR_BITMAP_HELPER(ret_type, action, bitop, read, 0) \ 757 __BUILD_SVM_MSR_BITMAP_HELPER(ret_type, action, bitop, write, 1)
|
| /linux/Documentation/ |
| H A D | memory-barriers.txt | 1898 These are also used for atomic RMW bitop functions that do not imply a
|
| /linux/Documentation/translations/sp_SP/ |
| H A D | memory-barriers.txt | 1975 Estos también se utilizan para funciones atómicas RMW bitop que no
|