Home
last modified time | relevance | path

Searched full:operator (Results 1 – 25 of 1279) sorted by relevance

12345678910>>...52

/openbmc/linux/tools/perf/pmu-events/
H A Dmetric.py35 def __or__(self, other: Union[int, float, 'Expression']) -> 'Operator':
36 return Operator('|', self, other)
38 def __ror__(self, other: Union[int, float, 'Expression']) -> 'Operator':
39 return Operator('|', other, self)
41 def __xor__(self, other: Union[int, float, 'Expression']) -> 'Operator':
42 return Operator('^', self, other)
44 def __and__(self, other: Union[int, float, 'Expression']) -> 'Operator':
45 return Operator('&', self, other)
47 def __rand__(self, other: Union[int, float, 'Expression']) -> 'Operator':
48 return Operator('&', other, self)
[all …]
/openbmc/sdbusplus/include/sdbusplus/message/
H A Dnative_types.hpp25 string_wrapper& operator=(const string_wrapper&) = default;
27 string_wrapper& operator=(string_wrapper&&) = default;
33 operator const std::string&() const volatile& in operator const std::string&()
37 operator std::string&&() && in operator std::string&&()
42 bool operator==(const string_wrapper& r) const in operator ==()
46 bool operator!=(const string_wrapper& r) const in operator !=()
50 bool operator<(const string_wrapper& r) const in operator <()
54 bool operator==(const std::string& r) const in operator ==()
58 bool operator!=(const std::string& r) const in operator !=()
62 bool operator<(const std::string& r) const in operator <()
[all …]
/openbmc/openpower-hw-diags/attn/pel/
H A Dstream.hpp55 Stream& operator=(const Stream&) = default;
57 Stream& operator=(Stream&&) = default;
82 * @brief Extraction operator for a uint8_t
87 Stream& operator>>(uint8_t& value) in operator >>()
94 * @brief Extraction operator for a char
99 Stream& operator>>(char& value) in operator >>()
106 * @brief Extraction operator for a uint16_t
111 Stream& operator>>(uint16_t& value) in operator >>()
119 * @brief Extraction operator for a uint32_t
124 Stream& operator>>(uint32_t& value) in operator >>()
[all …]
/openbmc/phosphor-logging/extensions/openpower-pels/
H A Dstream.hpp55 Stream& operator=(const Stream&) = default;
57 Stream& operator=(Stream&&) = default;
82 * @brief Extraction operator for a uint8_t
87 Stream& operator>>(uint8_t& value) in operator >>()
94 * @brief Extraction operator for a char
99 Stream& operator>>(char& value) in operator >>()
106 * @brief Extraction operator for a uint16_t
111 Stream& operator>>(uint16_t& value) in operator >>()
119 * @brief Extraction operator for a uint32_t
124 Stream& operator>>(uint32_t& value) in operator >>()
[all …]
/openbmc/phosphor-dbus-monitor/src/
H A Dcallback.hpp30 Callback& operator=(const Callback&) = delete;
31 Callback& operator=(Callback&&) = default;
41 virtual void operator()(Context /* ctx */) = 0;
50 virtual void operator()(Context /* ctx */, in operator ()()
65 Conditional& operator=(const Conditional&) = delete;
66 Conditional& operator=(Conditional&&) = default;
70 virtual bool operator()() = 0;
82 IndexedConditional& operator=(const IndexedConditional&) = delete;
83 IndexedConditional& operator=(IndexedConditional&&) = default;
91 virtual bool operator()() override = 0;
[all …]
H A Dsnmp_trap.hpp19 Trap& operator=(const Trap&) = delete;
20 Trap& operator=(Trap&&) = default;
37 ErrorTrap& operator=(const ErrorTrap&) = delete;
38 ErrorTrap& operator=(ErrorTrap&&) = default;
56 SNMPTrap& operator=(const SNMPTrap&) = delete;
57 SNMPTrap& operator=(SNMPTrap&&) = default;
64 void operator()(Context /* ctx */) override {} in operator ()()
70 void operator()(Context /* ctx */, sdbusplus::message_t& msg) override in operator ()()
H A Dfilters.hpp26 Filters& operator=(const Filters&) = delete;
27 Filters& operator=(Filters&&) = default;
31 virtual bool operator()(const std::any& value) = 0;
48 OperandFilters& operator=(const OperandFilters&) = delete;
49 OperandFilters& operator=(OperandFilters&&) = default;
55 bool operator()(const std::any& value) override in operator ()()
/openbmc/bmcweb/redfish-core/include/utils/extern/
H A Ddate.h248 CONSTCD11 year_month operator/(const year& y, const month& m) NOEXCEPT;
249 CONSTCD11 year_month operator/(const year& y, int m) NOEXCEPT;
251 CONSTCD11 month_day operator/(const day& d, const month& m) NOEXCEPT;
252 CONSTCD11 month_day operator/(const day& d, int m) NOEXCEPT;
253 CONSTCD11 month_day operator/(const month& m, const day& d) NOEXCEPT;
254 CONSTCD11 month_day operator/(const month& m, int d) NOEXCEPT;
255 CONSTCD11 month_day operator/(int m, const day& d) NOEXCEPT;
257 CONSTCD11 month_day_last operator/(const month& m, last_spec) NOEXCEPT;
258 CONSTCD11 month_day_last operator/(int m, last_spec) NOEXCEPT;
259 CONSTCD11 month_day_last operator/(last_spec, const month& m) NOEXCEPT;
[all …]
/openbmc/phosphor-fan-presence/control/json/utils/
H A Dmodifier.hpp36 * "operator": "minus",
47 * To add a new operator, derive a new class from BaseOperator and
60 virtual PropertyVariantType operator()(double val) = 0;
62 virtual PropertyVariantType operator()(int32_t val) = 0;
64 virtual PropertyVariantType operator()(int64_t val) = 0;
66 virtual PropertyVariantType operator()(const std::string& val) = 0;
68 virtual PropertyVariantType operator()(bool val) = 0;
74 Modifier& operator=(const Modifier&) = delete;
76 Modifier& operator=(Modifier&&) = delete;
103 * @brief Parse and set the operator
[all …]
H A Dmodifier.cpp38 T operator()(const U& t) const in operator ()()
89 * @brief Implements the minus operator to subtract two values.
100 PropertyVariantType operator()(double val) override in operator ()()
105 PropertyVariantType operator()(int32_t val) override in operator ()()
110 PropertyVariantType operator()(int64_t val) override in operator ()()
115 PropertyVariantType operator()(const std::string& val) override in operator ()()
129 PropertyVariantType operator()(bool) override in operator ()()
139 * @brief Implements an operator to return a value specified in the JSON that is
140 * chosen based on if the value passed into the operator is less than the lowest
145 * "operator": "less_than",
[all …]
/openbmc/bmcweb/redfish-core/include/
H A Dfilter_expr_printer.hpp17 std::string operator()(double x) const;
18 std::string operator()(int64_t x) const;
19 std::string operator()(const filter_ast::QuotedString& x) const;
20 std::string operator()(const filter_ast::UnquotedString& x) const;
21 std::string operator()(const filter_ast::LogicalNot& x) const;
22 std::string operator()(const filter_ast::LogicalOr& x) const;
23 std::string operator()(const filter_ast::LogicalAnd& x) const;
24 std::string operator()(const filter_ast::Comparison& x) const;
25 std::string operator()(const filter_ast::BooleanOp& operation) const;
/openbmc/openpower-hw-diags/util/
H A Dbin_stream.hpp33 /** @brief Assignment operator. */
34 BinFileReader& operator=(const BinFileReader&) = delete;
63 * @brief Input stream operator.
71 BinFileReader& operator>>(D& r);
76 inline BinFileReader& BinFileReader::operator>>(uint8_t& r) in operator >>()
84 inline BinFileReader& BinFileReader::operator>>(uint16_t& r) in operator >>()
93 inline BinFileReader& BinFileReader::operator>>(uint32_t& r) in operator >>()
102 inline BinFileReader& BinFileReader::operator>>(uint64_t& r) in operator >>()
130 /** @brief Assignment operator. */
131 BinFileWriter& operator=(const BinFileWriter&) = delete;
[all …]
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/__detail/
H A D__env.hpp60 consteval auto operator()(_Query __query) const noexcept -> bool in operator ()()
90 constexpr auto operator()(_Query, _Queryable&&, _Default&& __default) const in operator ()()
98 constexpr auto operator()(_Query __query, _Queryable&& __queryable, in operator ()()
112 constexpr auto operator()(_Tp&& __t) const noexcept -> bool in operator ()()
122 constexpr auto operator()(auto&&) const noexcept -> bool in operator ()()
133 constexpr auto operator()(_Tp&& __t) const noexcept( in operator ()()
142 constexpr auto operator()(auto&&) const noexcept in operator ()()
158 constexpr auto operator()(_Tp&&) const noexcept(noexcept(__result_t<_Tp>{})) in operator ()()
169 constexpr auto operator()(auto&&) const noexcept -> std::false_type in operator ()()
188 auto operator()(const _Env& __env) const noexcept
[all …]
H A D__awaitable.hpp47 // https://developercommunity.visualstudio.com/t/operator-co_await-not-found-in-requires/10452721
52 operator co_await(static_cast<_Awaitable&&>(__awaitable)); in __co_await_constraint()
61 .operator co_await();
64 return static_cast<_Awaitable&&>(__awaitable).operator co_await();
71 operator co_await(static_cast<_Awaitable&&>(__awaitable));
75 return operator co_await(static_cast<_Awaitable&&>(__awaitable));
95 .operator co_await();
100 .operator co_await();
107 operator co_await(__promise->await_transform(static_cast<_Awaitable&&>(__awaitable)));
111 return operator co_await(
H A D__intrusive_ptr.hpp232 auto operator=(__intrusive_ptr&& __that) noexcept -> __intrusive_ptr& in operator =()
239 auto operator=(const __intrusive_ptr& __that) noexcept -> __intrusive_ptr& in operator =()
241 return operator=(__intrusive_ptr(__that)); in operator =()
244 auto operator=( in operator =()
248 return operator=( in operator =()
259 operator=({}); in reset()
272 auto operator->() const noexcept -> _Ty* in operator ->()
277 auto operator*() const noexcept -> _Ty& in operator *()
282 explicit operator bool() const noexcept in operator bool()
287 auto operator!() const noexcept -> bool in operator !()
[all …]
/openbmc/openbmc-test-automation/redfish/account_service/
H A Dtest_user_account.robot46 Verify Redfish Operator User Persistence After Reboot
47 [Documentation] Verify Redfish operator user persistence after reboot.
50 ... Redfish Create User operator_user TestPwd123 Operator ${True}
58 Redfish Verify User operator_user TestPwd123 Operator ${True}
85 Redfish Create and Verify Operator User
86 [Documentation] Create a Redfish user with operator role and verify.
91 operator_user TestPwd123 Operator ${True}
112 Verify Redfish Operator User with Wrong Password
113 [Documentation] Verify Redfish operator user with wrong password.
118 operator_user TestPwd123 Operator
[all...]
H A Dtest_redfish_privilege_registry.robot3 ... such as test, admin, operator, readonly, patched.
102 # | Operator | Login, ConfigureComponents, ConfigureSelf.
132 ... UserName=${post_user} Password=${post_password} RoleId=Operator Enabled=${true}
143 Verify Operator User Privileges Via Redfish
144 [Documentation] Verify Operator user privileges via Redfish.
150 ... UserName=${post_user} Password=${post_password} RoleId=Operator Enabled=${true}
171 ... UserName=${post_user} Password=${post_password} RoleId=Operator Enabled=${true}
201 [Documentation] Create and verify admin, test, operator, and readonly users.
203 Redfish Create User ${test_user} ${test_password} Operator ${true}
205 Redfish Create User ${operator_user} ${operator_password} Operator ${true}
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/
H A DTableRoles.vue8 <template #cell(operator)="data">
42 operator: true,
51 operator: false,
60 operator: true,
69 operator: false,
78 operator: true,
94 key: 'operator',
95 label: i18n.global.t('pageUserManagement.tableRoles.operator'),
/openbmc/bmcweb/redfish-core/src/
H A Dfilter_expr_executor.cpp108 result_type operator()(double n);
109 result_type operator()(int64_t x);
110 result_type operator()(const filter_ast::UnquotedString& x);
111 result_type operator()(const filter_ast::QuotedString& x);
114 ValueVisitor::result_type ValueVisitor::operator()(double n) in operator ()()
119 ValueVisitor::result_type ValueVisitor::operator()(int64_t x) in operator ()()
124 ValueVisitor::result_type ValueVisitor::operator()( in operator ()()
130 ValueVisitor::result_type ValueVisitor::operator()( in operator ()()
166 "Type for key {} was {} which does not have a comparison operator", in operator ()()
176 bool operator()(const filter_ast::LogicalNot& x);
[all …]
H A Dfilter_expr_printer.cpp30 std::string FilterExpressionPrinter::operator()(double x) const in operator ()()
34 std::string FilterExpressionPrinter::operator()(int64_t x) const in operator ()()
38 std::string FilterExpressionPrinter::operator()( in operator ()()
43 std::string FilterExpressionPrinter::operator()( in operator ()()
49 std::string FilterExpressionPrinter::operator()( in operator ()()
61 std::string FilterExpressionPrinter::operator()( in operator ()()
80 std::string FilterExpressionPrinter::operator()( in operator ()()
120 std::string FilterExpressionPrinter::operator()( in operator ()()
129 std::string FilterExpressionPrinter::operator()( in operator ()()
/openbmc/phosphor-fan-presence/control/config_files/p10bmc/com.ibm.Hardware.Chassis.Model.Everest/
H A Devents.json556 "operator": "minus",
564 "operator": "minus",
598 "operator": "minus",
606 "operator": "minus",
640 "operator": "minus",
648 "operator": "minus",
682 "operator": "minus",
690 "operator": "minus",
724 "operator": "minus",
732 "operator"
525 "operator": "minus", global() string
533 "operator": "minus", global() string
567 "operator": "minus", global() string
575 "operator": "minus", global() string
609 "operator": "minus", global() string
617 "operator": "minus", global() string
651 "operator": "minus", global() string
659 "operator": "minus", global() string
693 "operator": "minus", global() string
701 "operator": "minus", global() string
735 "operator": "minus", global() string
743 "operator": "minus", global() string
777 "operator": "minus", global() string
785 "operator": "minus", global() string
819 "operator": "minus", global() string
827 "operator": "minus", global() string
861 "operator": "minus", global() string
869 "operator": "minus", global() string
903 "operator": "minus", global() string
911 "operator": "minus", global() string
945 "operator": "minus", global() string
953 "operator": "minus", global() string
987 "operator": "minus", global() string
995 "operator": "minus", global() string
1029 "operator": "minus", global() string
1037 "operator": "minus", global() string
1071 "operator": "minus", global() string
1079 "operator": "minus", global() string
1113 "operator": "minus", global() string
1121 "operator": "minus", global() string
1155 "operator": "minus", global() string
1163 "operator": "minus", global() string
1197 "operator": "minus", global() string
1205 "operator": "minus", global() string
1239 "operator": "minus", global() string
1247 "operator": "minus", global() string
1281 "operator": "minus", global() string
1289 "operator": "minus", global() string
1323 "operator": "minus", global() string
1331 "operator": "minus", global() string
1365 "operator": "minus", global() string
1373 "operator": "minus", global() string
2235 "operator": "less_than", global() string
2251 "operator": "less_than", global() string
2267 "operator": "less_than", global() string
2283 "operator": "less_than", global() string
2299 "operator": "less_than", global() string
[all...]
/openbmc/sdbusplus/include/sdbusplus/async/stdexec/
H A Dfunctional.hpp42 __call_result_t<_Fun0, __call_result_t<_Fun1, _Ts...>> operator()( in operator ()()
53 __call_result_t<_Fun0, __call_result_t<_Fun1, _Ts...>> operator()( in operator ()()
64 __composed<_Fun0, _Fun1> operator()(_Fun0 __fun0, _Fun1 __fun1) const in operator ()()
81 constexpr auto operator()(_Fun&& __fun, _Args&&... __args) const noexcept( in operator ()()
94 constexpr auto operator()(_Memptr __mem_ptr, _Ty&& __ty, in operator ()()
110 constexpr auto operator()(_Memptr __mem_ptr, _Ty __ty, in operator ()()
125 constexpr auto operator()(_Memptr __mem_ptr, _Ty&& __ty, in operator ()()
141 constexpr auto operator()(_Mbr _Class::* __mem_ptr, in operator ()()
153 constexpr auto operator()(_Mbr _Class::* __mem_ptr, _Ty __ty) const noexcept in operator ()()
164 constexpr auto operator()(_Mbr _Class::* __mem_ptr, in operator ()()
[all …]
/openbmc/qemu/target/hexagon/idef-parser/
H A Didef-parser.h98 * Semantic record of the SAT token, identifying the saturate operator
106 * Semantic record of the CAST token, identifying the cast operator
109 unsigned bit_width; /**< Bit width of the cast operator */
110 HexSignedness signedness; /**< Unsigned flag for the cast operator */
114 * Semantic record of the EXTRACT token, identifying the cast operator
117 unsigned bit_width; /**< Bit width of the extract operator */
118 unsigned storage_bit_width; /**< Actual bit width of the extract operator */
119 HexSignedness signedness; /**< Unsigned flag for the extract operator */
124 * operator
180 * State of ternary operator
[all …]
/openbmc/linux/scripts/coccinelle/misc/
H A Dminmax.cocci23 binary operator cmp = {>, >=};
38 binary operator cmp = {>, >=};
56 binary operator cmp = {<, <=};
71 binary operator cmp = {<, <=};
89 binary operator cmp = {>=, >};
104 binary operator cmp = {>=, >};
124 binary operator cmp = {<, <=};
137 binary operator cmp = {<=, <};
153 binary operator cmp = {<=, <};
/openbmc/telemetry/src/utils/
H A Densure.hpp29 Ensure& operator=(U&& other) in operator =()
36 Ensure& operator=(Ensure&& other) = delete;
38 Ensure& operator=(std::nullptr_t) in operator =()
45 Ensure& operator=(const Ensure&) = delete;
47 explicit operator bool() const in operator bool()

12345678910>>...52