/openbmc/phosphor-host-ipmid/test/message/ |
H A D | unpack.cpp | 364 std::bitset<8> v; in TEST() 369 std::bitset<8> k(0xc9); in TEST() 380 std::bitset<7> v; in TEST() 385 std::bitset<7> k(0x49); in TEST() 396 std::bitset<9> v; in TEST() 401 std::bitset<9> k(0); in TEST() 412 std::bitset<3> v1; in TEST() 413 std::bitset<5> v2; in TEST() 418 std::bitset<3> k1(0x1); in TEST() 419 std::bitset<5> k2(0x19); in TEST() [all …]
|
H A D | pack.cpp | 120 std::bitset<8> v(0xc9); in TEST() 134 std::bitset<3> v1(0x1); in TEST() 135 std::bitset<5> v2(0x19); in TEST() 150 std::bitset<32> v(0x02008604); in TEST() 405 std::bitset<7> v3(0x73); // binary 0b1110011 in TEST()
|
/openbmc/linux/kernel/futex/ |
H A D | waitwake.c | 143 int futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset) in futex_wake() argument 151 if (!bitset) in futex_wake() 174 if (!(this->bitset & bitset)) in futex_wake() 632 int futex_wait(u32 __user *uaddr, unsigned int flags, u32 val, ktime_t *abs_time, u32 bitset) in futex_wait() argument 640 if (!bitset) in futex_wait() 642 q.bitset = bitset; in futex_wait() 681 restart->futex.bitset = bitset; in futex_wait() 706 restart->futex.val, tp, restart->futex.bitset); in futex_wait_restart()
|
H A D | futex.h | 105 u32 bitset; member 260 val, ktime_t *abs_time, u32 bitset, u32 __user 268 ktime_t *abs_time, u32 bitset); 285 extern int futex_wake(u32 __user *uaddr, unsigned int flags, int nr_wake, u32 bitset);
|
H A D | requeue.c | 62 .bitset = FUTEX_BITSET_MATCH_ANY, 763 u32 val, ktime_t *abs_time, u32 bitset, in futex_wait_requeue_pi() argument 780 if (!bitset) in futex_wait_requeue_pi() 796 q.bitset = bitset; in futex_wait_requeue_pi()
|
/openbmc/linux/tools/perf/trace/beauty/ |
H A D | futex_val3.c | 11 unsigned int bitset = arg->val; in syscall_arg__scnprintf_futex_val3() local 13 if (bitset == FUTEX_BITSET_MATCH_ANY) in syscall_arg__scnprintf_futex_val3() 16 return scnprintf(bf, size, "%#xd", bitset); in syscall_arg__scnprintf_futex_val3()
|
/openbmc/phosphor-host-ipmid/user_channel/ |
H A D | user_layer.hpp | 75 std::bitset<payloadsPerByte> stdPayloadEnables1; 76 std::bitset<payloadsPerByte> stdPayloadEnables2Reserved; 77 std::bitset<payloadsPerByte> oemPayloadEnables1; 78 std::bitset<payloadsPerByte> oemPayloadEnables2Reserved;
|
/openbmc/linux/tools/testing/selftests/futex/include/ |
H A D | futextest.h | 99 u_int32_t bitset, int opflags) in futex_wait_bitset() argument 101 return futex(uaddr, FUTEX_WAIT_BITSET, val, timeout, NULL, bitset, in futex_wait_bitset() 110 futex_wake_bitset(futex_t *uaddr, int nr_wake, u_int32_t bitset, int opflags) in futex_wake_bitset() argument 112 return futex(uaddr, FUTEX_WAKE_BITSET, nr_wake, NULL, NULL, bitset, in futex_wake_bitset()
|
/openbmc/phosphor-bmc-code-mgmt/common/pldm/ |
H A D | types.hpp | 52 using DeviceUpdateOptionFlags = std::bitset<32>; 65 using CompOptions = std::bitset<16>; 66 using ReqCompActivationMethod = std::bitset<16>;
|
/openbmc/phosphor-host-ipmid/app/ |
H A D | watchdog.hpp | 25 uint1_t reserved2, uint8_t preTimeoutInterval, std::bitset<8> expFlagValue, 41 std::bitset<8>, // expireFlags
|
H A D | watchdog.cpp | 175 static std::bitset<8> timerUseExpirationFlags = 0; 197 uint1_t reserved2, uint8_t preTimeoutInterval, std::bitset<8> expFlagValue, in ipmiSetWatchdogTimer() 366 std::bitset<8>, // expireFlags
|
/openbmc/phosphor-logging/lib/ |
H A D | lg2_logger.cpp | 33 return "0b" + std::bitset<8>(v).to_string(); in value_to_string() 37 return "0b" + std::bitset<16>(v).to_string(); in value_to_string() 41 return "0b" + std::bitset<32>(v).to_string(); in value_to_string() 46 return "0b" + std::bitset<64>(v).to_string(); in value_to_string()
|
/openbmc/pldm/common/ |
H A D | types.hpp | 128 using DeviceUpdateOptionFlags = std::bitset<32>; 141 using CompOptions = std::bitset<16>; 142 using ReqCompActivationMethod = std::bitset<16>;
|
/openbmc/linux/kernel/bpf/ |
H A D | bloom_filter.c | 20 unsigned long bitset[]; member 44 if (!test_bit(h, bloom->bitset)) in bloom_map_peek_elem() 62 set_bit(h, bloom->bitset); in bloom_map_push_elem()
|
/openbmc/linux/Documentation/networking/ |
H A D | ethtool-netlink.rst | 95 with their values which saves a round trip (when the bitset is passed in a 96 request) or at least a second request (when the bitset is in a reply). This is 103 A bitset can represent either a value/mask pair (``ETHTOOL_A_BITSET_NOMASK`` 109 Compact form: nested (bitset) attribute contents: 125 ``ETHTOOL_A_BITSET_NOMASK`` is not set (bitset represents a value/mask pair); 127 allowed (bitset represents a single bitmap. 134 Bit-by-bit form: nested (bitset) attribute contents: 159 When ``ETHTOOL_A_BITSET_NOMASK`` flag is present, bitset is interpreted as 161 such case. Such bitset represents a bitmap with listed bits set and the rest 431 ``ETHTOOL_A_LINKMODES_OURS`` bitset advertised link modes [all …]
|
/openbmc/phosphor-host-ipmid/ |
H A D | sensordatahandler.cpp | 224 std::bitset<16> assertionSet(getAssertionSet(cmdData).first); in assertion() 225 std::bitset<16> deassertionSet(getAssertionSet(cmdData).second); in assertion() 297 std::bitset<16> assertionSet(getAssertionSet(cmdData).first); in assertion() 298 std::bitset<16> deassertionSet(getAssertionSet(cmdData).second); in assertion()
|
/openbmc/bmcweb/redfish-core/include/ |
H A D | privileges.hpp | 201 explicit Privileges(const std::bitset<maxPrivilegeCount>& p) : in Privileges() 204 std::bitset<maxPrivilegeCount> privilegeBitset = 0;
|
/openbmc/linux/drivers/md/ |
H A D | dm-cache-policy-internal.h | 129 static inline void clear_bitset(void *bitset, unsigned int nr_entries) in clear_bitset() argument 133 memset(bitset, 0, s); in clear_bitset()
|
/openbmc/openpower-hw-diags/attn/ |
H A D | attn_config.hpp | 45 std::bitset<lastFlag> iv_flags; // configuration flags
|
/openbmc/phosphor-power/phosphor-regulators/src/ |
H A D | error_history.hpp | 108 std::bitset<static_cast<int>(ErrorType::numTypes)> history{};
|
/openbmc/linux/drivers/md/persistent-data/ |
H A D | Makefile | 5 dm-bitset.o \
|
/openbmc/linux/include/linux/ |
H A D | restart_block.h | 34 u32 bitset; member
|
/openbmc/linux/net/ethtool/ |
H A D | Makefile | 7 ethtool_nl-y := netlink.o bitset.o strset.o linkinfo.o linkmodes.o rss.o \
|
H A D | bitset.h | 10 int ethnl_bitset_is_compact(const struct nlattr *bitset, bool *compact);
|
/openbmc/telemetry/src/ |
H A D | state.hpp | 80 std::bitset<sizeof...(Keys)> flags{0};
|