| /OK3568_Linux_fs/kernel/drivers/net/wireless/ralink/rt2x00/ |
| H A D | rt2x00reg.h | 206 #define FIELD_CHECK(__mask, __type) \ argument 207 BUILD_BUG_ON(!(__mask) || \ 208 !is_valid_mask(__mask) || \ 209 (__mask) != (__type)(__mask)) \ 211 #define FIELD8(__mask) \ argument 213 FIELD_CHECK(__mask, u8); \ 215 compile_ffs8(__mask), (__mask) \ 219 #define FIELD16(__mask) \ argument 221 FIELD_CHECK(__mask, u16); \ 223 compile_ffs16(__mask), (__mask) \ [all …]
|
| /OK3568_Linux_fs/kernel/arch/s390/include/asm/ |
| H A D | irqflags.h | 17 unsigned long __mask; \ 20 : "=Q" (__mask) : "i" (__or) : "memory"); \ 21 __mask; \ 27 unsigned long __mask; \ 30 : "=Q" (__mask) : "i" (__and) : "memory"); \ 31 __mask; \
|
| /OK3568_Linux_fs/kernel/drivers/pinctrl/spear/ |
| H A D | pinctrl-spear.h | 60 #define DEFINE_MUXREG(__pins, __muxreg, __mask, __ste) \ argument 64 .mask = __mask, \ 65 .val = __ste ? __mask : 0, \ 69 #define DEFINE_2_MUXREG(__pins, __muxreg1, __muxreg2, __mask, __ste1, __ste2) \ argument 73 .mask = __mask, \ 74 .val = __ste1 ? __mask : 0, \ 77 .mask = __mask, \ 78 .val = __ste2 ? __mask : 0, \
|
| /OK3568_Linux_fs/kernel/arch/riscv/include/asm/ |
| H A D | bitops.h | 39 unsigned long __res, __mask; \ 40 __mask = BIT_MASK(nr); \ 44 : "r" (mod(__mask)) \ 46 ((__res & __mask) != 0); \
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/smsc/ |
| H A D | smc911x.h | 717 int __mask; \ 719 __mask = SMC_GET_FIFO_INT((lp)) & ~(0xFF<<24); \ 720 SMC_SET_FIFO_INT( (lp), __mask | (x)<<24 ); \ 726 int __mask; \ 728 __mask = SMC_GET_FIFO_INT((lp)) & ~(0xFF<<16); \ 729 SMC_SET_FIFO_INT( (lp), __mask | (((x) & 0xFF)<<16)); \ 735 int __mask; \ 737 __mask = SMC_GET_FIFO_INT((lp)) & ~(0xFF<<8); \ 738 SMC_SET_FIFO_INT( (lp), __mask | (((x) & 0xFF)<<8)); \ 744 int __mask; \ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i2c/ |
| H A D | ch7006_priv.h | 142 #define __mask(src, bitfield) \ macro 144 #define mask(bitfield) __mask(bitfield) 147 (((x) >> (src) << (0 ? bitfield)) & __mask(src, bitfield)) 155 ((x & __mask(src, bitfield)) >> (0 ? bitfield) << (src))
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/pstl/ |
| H A D | unseq_backend_simd.h | 283 __simd_calc_mask_2(_InputIterator __first, _DifferenceType __n, bool* __mask, _BinaryPredicate __pr… in __simd_calc_mask_2() argument 290 __mask[__i] = !__pred(__first[__i], __first[__i - 1]); in __simd_calc_mask_2() 291 __count += __mask[__i]; in __simd_calc_mask_2() 298 __simd_calc_mask_1(_InputIterator __first, _DifferenceType __n, bool* __mask, _UnaryPredicate __pre… in __simd_calc_mask_1() argument 305 __mask[__i] = __pred(__first[__i]); in __simd_calc_mask_1() 306 __count += __mask[__i]; in __simd_calc_mask_1() 313 …d_copy_by_mask(_InputIterator __first, _DifferenceType __n, _OutputIterator __result, bool* __mask, in __simd_copy_by_mask() argument 320 if (__mask[__i]) in __simd_copy_by_mask() 334 _OutputIterator2 __out_false, bool* __mask) noexcept in __simd_partition_by_mask() argument 341 if (__mask[__i]) in __simd_partition_by_mask()
|
| H A D | algorithm_impl.h | 953 __brick_calc_mask_1(_ForwardIterator __first, _ForwardIterator __last, bool* __restrict __mask, _Un… in __brick_calc_mask_1() argument 962 for (; __first != __last; ++__first, ++__mask) in __brick_calc_mask_1() 964 *__mask = __pred(*__first); in __brick_calc_mask_1() 965 if (*__mask) in __brick_calc_mask_1() 975 __brick_calc_mask_1(_RandomAccessIterator __first, _RandomAccessIterator __last, bool* __mask, _Una… in __brick_calc_mask_1() argument 978 auto __result = __unseq_backend::__simd_calc_mask_1(__first, __last - __first, __mask, __pred); in __brick_calc_mask_1() 984 …_by_mask(_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __result, bool* __mask, in __brick_copy_by_mask() argument 987 for (; __first != __last; ++__first, ++__mask) in __brick_copy_by_mask() 989 if (*__mask) in __brick_copy_by_mask() 1000 … bool* __restrict __mask, _Assigner __assigner, /*vector=*/std::true_type) noexcept in __brick_copy_by_mask() argument [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/pstl/ |
| H A D | unseq_backend_simd.h | 283 __simd_calc_mask_2(_InputIterator __first, _DifferenceType __n, bool* __mask, _BinaryPredicate __pr… in __simd_calc_mask_2() argument 290 __mask[__i] = !__pred(__first[__i], __first[__i - 1]); in __simd_calc_mask_2() 291 __count += __mask[__i]; in __simd_calc_mask_2() 298 __simd_calc_mask_1(_InputIterator __first, _DifferenceType __n, bool* __mask, _UnaryPredicate __pre… in __simd_calc_mask_1() argument 305 __mask[__i] = __pred(__first[__i]); in __simd_calc_mask_1() 306 __count += __mask[__i]; in __simd_calc_mask_1() 313 …d_copy_by_mask(_InputIterator __first, _DifferenceType __n, _OutputIterator __result, bool* __mask, in __simd_copy_by_mask() argument 320 if (__mask[__i]) in __simd_copy_by_mask() 334 _OutputIterator2 __out_false, bool* __mask) noexcept in __simd_partition_by_mask() argument 341 if (__mask[__i]) in __simd_partition_by_mask()
|
| H A D | algorithm_impl.h | 953 __brick_calc_mask_1(_ForwardIterator __first, _ForwardIterator __last, bool* __restrict __mask, _Un… in __brick_calc_mask_1() argument 962 for (; __first != __last; ++__first, ++__mask) in __brick_calc_mask_1() 964 *__mask = __pred(*__first); in __brick_calc_mask_1() 965 if (*__mask) in __brick_calc_mask_1() 975 __brick_calc_mask_1(_RandomAccessIterator __first, _RandomAccessIterator __last, bool* __mask, _Una… in __brick_calc_mask_1() argument 978 auto __result = __unseq_backend::__simd_calc_mask_1(__first, __last - __first, __mask, __pred); in __brick_calc_mask_1() 984 …_by_mask(_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __result, bool* __mask, in __brick_copy_by_mask() argument 987 for (; __first != __last; ++__first, ++__mask) in __brick_copy_by_mask() 989 if (*__mask) in __brick_copy_by_mask() 1000 … bool* __restrict __mask, _Assigner __assigner, /*vector=*/std::true_type) noexcept in __brick_copy_by_mask() argument [all …]
|
| /OK3568_Linux_fs/kernel/arch/x86/include/asm/ |
| H A D | paravirt_types.h | 480 ({ unsigned long __mask = ~0UL; \ 482 case 1: __mask = 0xffUL; break; \ 483 case 2: __mask = 0xffffUL; break; \ 484 case 4: __mask = 0xffffffffUL; break; \ 487 __mask; \
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/display/ |
| H A D | intel_display.h | 190 #define for_each_dbuf_slice_in_mask(__slice, __mask) \ argument 192 for_each_if((BIT(__slice)) & (__mask)) 326 #define for_each_pipe_masked(__dev_priv, __p, __mask) \ argument 328 for_each_if((__mask) & BIT(__p)) 334 #define for_each_cpu_transcoder_masked(__dev_priv, __t, __mask) \ argument 336 for_each_if ((__mask) & BIT(__t))
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | iomanip | 60 * @param __mask A format flags mask. 63 * via @e stream.setf(0,__mask). 66 resetiosflags(ios_base::fmtflags __mask) 67 { return { __mask }; } 90 * @param __mask A format flags mask. 93 * to @a __mask. 96 setiosflags(ios_base::fmtflags __mask) 97 { return { __mask }; }
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | iomanip | 60 * @param __mask A format flags mask. 63 * via @e stream.setf(0,__mask). 66 resetiosflags(ios_base::fmtflags __mask) 67 { return { __mask }; } 90 * @param __mask A format flags mask. 93 * to @a __mask. 96 setiosflags(ios_base::fmtflags __mask) 97 { return { __mask }; }
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/ |
| H A D | ios_base.h | 693 setf(fmtflags __fmtfl, fmtflags __mask) in _GLIBCXX_VISIBILITY() 696 _M_flags &= ~__mask; in _GLIBCXX_VISIBILITY() 697 _M_flags |= (__fmtfl & __mask); in _GLIBCXX_VISIBILITY() 708 unsetf(fmtflags __mask) in _GLIBCXX_VISIBILITY() 709 { _M_flags &= ~__mask; } in _GLIBCXX_VISIBILITY()
|
| H A D | regex_compiler.h | 474 auto __mask = _M_traits.lookup_classname(__s.data(), in _GLIBCXX_VISIBILITY() 477 if (__mask == 0) in _GLIBCXX_VISIBILITY() 481 _M_class_set |= __mask; in _GLIBCXX_VISIBILITY() 483 _M_neg_class_set.push_back(__mask); in _GLIBCXX_VISIBILITY()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/ |
| H A D | ios_base.h | 693 setf(fmtflags __fmtfl, fmtflags __mask) in _GLIBCXX_VISIBILITY() 696 _M_flags &= ~__mask; in _GLIBCXX_VISIBILITY() 697 _M_flags |= (__fmtfl & __mask); in _GLIBCXX_VISIBILITY() 708 unsetf(fmtflags __mask) in _GLIBCXX_VISIBILITY() 709 { _M_flags &= ~__mask; } in _GLIBCXX_VISIBILITY()
|
| H A D | regex_compiler.h | 474 auto __mask = _M_traits.lookup_classname(__s.data(), in _GLIBCXX_VISIBILITY() 477 if (__mask == 0) in _GLIBCXX_VISIBILITY() 481 _M_class_set |= __mask; in _GLIBCXX_VISIBILITY() 483 _M_neg_class_set.push_back(__mask); in _GLIBCXX_VISIBILITY()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/ |
| H A D | bitmap_allocator.h | 489 std::size_t __mask = 1 << __pos; in _GLIBCXX_VISIBILITY() 490 __mask = ~__mask; in _GLIBCXX_VISIBILITY() 491 *__pbmap &= __mask; in _GLIBCXX_VISIBILITY() 500 std::size_t __mask = 1 << __pos; in _GLIBCXX_VISIBILITY() 501 *__pbmap |= __mask; in _GLIBCXX_VISIBILITY()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/ |
| H A D | bitmap_allocator.h | 489 std::size_t __mask = 1 << __pos; in _GLIBCXX_VISIBILITY() 490 __mask = ~__mask; in _GLIBCXX_VISIBILITY() 491 *__pbmap &= __mask; in _GLIBCXX_VISIBILITY() 500 std::size_t __mask = 1 << __pos; in _GLIBCXX_VISIBILITY() 501 *__pbmap |= __mask; in _GLIBCXX_VISIBILITY()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/ |
| H A D | signal.h | 173 extern int sigblock (int __mask) __THROW __attribute_deprecated__; 176 extern int sigsetmask (int __mask) __THROW __attribute_deprecated__;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/ |
| H A D | signal.h | 173 extern int sigblock (int __mask) __THROW __attribute_deprecated__; 176 extern int sigsetmask (int __mask) __THROW __attribute_deprecated__;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sys/ |
| H A D | fanotify.h | 33 uint64_t __mask, int __dfd, const char *__pathname)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/ |
| H A D | fanotify.h | 33 uint64_t __mask, int __dfd, const char *__pathname)
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/ |
| H A D | statx-generic.h | 61 unsigned int __mask, struct statx *__restrict __buf)
|