Searched refs:bitop (Results 1 – 9 of 9) sorted by relevance
/linux-6.1.9/tools/include/linux/ |
D | bitops.h | 33 #define bitop(op, nr, addr) \ macro 36 #define __set_bit(nr, addr) bitop(___set_bit, nr, addr) 37 #define __clear_bit(nr, addr) bitop(___clear_bit, nr, addr) 38 #define __change_bit(nr, addr) bitop(___change_bit, nr, addr) 39 #define __test_and_set_bit(nr, addr) bitop(___test_and_set_bit, nr, addr) 40 #define __test_and_clear_bit(nr, addr) bitop(___test_and_clear_bit, nr, addr) 41 #define __test_and_change_bit(nr, addr) bitop(___test_and_change_bit, nr, addr) 42 #define test_bit(nr, addr) bitop(_test_bit, nr, addr)
|
/linux-6.1.9/include/linux/ |
D | bitops.h | 48 #define bitop(op, nr, addr) \ macro 55 #define __set_bit(nr, addr) bitop(___set_bit, nr, addr) 56 #define __clear_bit(nr, addr) bitop(___clear_bit, nr, addr) 57 #define __change_bit(nr, addr) bitop(___change_bit, nr, addr) 58 #define __test_and_set_bit(nr, addr) bitop(___test_and_set_bit, nr, addr) 59 #define __test_and_clear_bit(nr, addr) bitop(___test_and_clear_bit, nr, addr) 60 #define __test_and_change_bit(nr, addr) bitop(___test_and_change_bit, nr, addr) 61 #define test_bit(nr, addr) bitop(_test_bit, nr, addr) 62 #define test_bit_acquire(nr, addr) bitop(_test_bit_acquire, nr, addr)
|
/linux-6.1.9/arch/x86/kvm/vmx/ |
D | vmx.h | 455 #define __BUILD_VMX_MSR_BITMAP_HELPER(rtype, action, bitop, access, base) \ argument 462 return bitop##_bit(msr, bitmap + base / f); \ 464 return bitop##_bit(msr & 0x1fff, bitmap + (base + 0x400) / f); \ 467 #define BUILD_VMX_MSR_BITMAP_HELPERS(ret_type, action, bitop) \ argument 468 __BUILD_VMX_MSR_BITMAP_HELPER(ret_type, action, bitop, read, 0x0) \ 469 __BUILD_VMX_MSR_BITMAP_HELPER(ret_type, action, bitop, write, 0x800)
|
/linux-6.1.9/arch/arm/lib/ |
D | setbit.S | 12 bitop _set_bit, orr label
|
D | changebit.S | 12 bitop _change_bit, eor label
|
D | clearbit.S | 12 bitop _clear_bit, bic label
|
D | bitops.h | 6 .macro bitop, name, instr 61 .macro bitop, name, instr
|
/linux-6.1.9/Documentation/translations/ko_KR/ |
D | memory-barriers.txt | 1848 어토믹 RMW bitop 함수들을 위해서도 사용될 수 있습니다.
|
/linux-6.1.9/Documentation/ |
D | memory-barriers.txt | 1891 These are also used for atomic RMW bitop functions that do not imply a
|