Home
last modified time | relevance | path

Searched refs:__bits (Results 1 – 8 of 8) sorted by relevance

/openbmc/linux/tools/perf/util/
H A Dcpu-set-sched.h17 ({ const __cpu_mask *__arr1 = (cpusetp1)->__bits; \
18 const __cpu_mask *__arr2 = (cpusetp2)->__bits; \
37 const __cpu_mask *__arr1 = (srcset1)->__bits; \
38 const __cpu_mask *__arr2 = (srcset2)->__bits; \
42 ((__cpu_mask *) __dest->__bits)[__i] = __arr1[__i] op __arr2[__i]; \
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/
H A D__intrusive_ptr.hpp40 enum struct __bits : std::size_t enum
44 friend constexpr std::size_t __count(__bits __b) noexcept in __count()
50 friend constexpr bool __bit(__bits __b) noexcept in __bit()
58 using __bits_t = typename __count_and_bits<_ReservedBits>::__bits;
75 using __bits_t = typename __count_and_bits<_ReservedBits>::__bits;
94 using __bits_t = typename __count_and_bits<_ReservedBits>::__bits;
/openbmc/qemu/bsd-user/
H A Dsignal.c75 set->__bits[signum / TARGET_NSIG_BPW] |= mask; in target_sigaddset()
82 return (set->__bits[signum / TARGET_NSIG_BPW] & mask) != 0; in target_sigismember()
121 d->__bits[i] = tswap32(d1.__bits[i]); in host_to_target_sigset()
144 s1.__bits[i] = tswap32(s->__bits[i]); in target_to_host_sigset()
755 __put_user(set->__bits[i], &frame->sf_uc.uc_sigmask.__bits[i]); in setup_frame()
792 __get_user(target_set.__bits[i], &ucontext->uc_sigmask.__bits[i]); in reset_signal_mask()
/openbmc/linux/drivers/gpu/drm/i915/
H A Di915_utils.h128 unsigned long __bits = (bits); \
129 GEM_BUG_ON(__bits & -BIT(n)); \
130 ((typeof(ptr))((unsigned long)(ptr) | __bits)); \
/openbmc/qemu/bsd-user/openbsd/
H A Dtarget_os_siginfo.h16 uint32_t __bits[TARGET_NSIG_WORDS]; member
/openbmc/qemu/bsd-user/netbsd/
H A Dtarget_os_siginfo.h16 uint32_t __bits[TARGET_NSIG_WORDS]; member
/openbmc/qemu/bsd-user/freebsd/
H A Dtarget_os_siginfo.h35 uint32_t __bits[TARGET_NSIG_WORDS]; member
/openbmc/linux/lib/
H A Dbitmap.c338 unsigned int __bits = (bits), idx, w = 0; \
340 for (idx = 0; idx < __bits / BITS_PER_LONG; idx++) \
343 if (__bits % BITS_PER_LONG) \
344 w += hweight_long((FETCH) & BITMAP_LAST_WORD_MASK(__bits)); \