| /openbmc/u-boot/scripts/kconfig/ |
| H A D | expr.c | 38 e->right.expr = e2; in expr_alloc_two() 47 e->right.sym = s2; in expr_alloc_comp() 88 e->right.sym = org->right.sym; in expr_copy() 94 e->right.expr = expr_copy(org->right.expr); in expr_copy() 127 expr_free(e->right.expr); in expr_free() 155 __expr_eliminate_eq(type, &e1->right.expr, &e2); in __expr_eliminate_eq() 160 __expr_eliminate_eq(type, &e1, &e2->right.expr); in __expr_eliminate_eq() 264 return e1->left.sym == e2->left.sym && e1->right.sym == e2->right.sym; in expr_eq() 315 e->right.expr = expr_eliminate_yn(e->right.expr); in expr_eliminate_yn() 319 expr_free(e->right.expr); in expr_eliminate_yn() [all …]
|
| /openbmc/bmcweb/redfish-core/src/ |
| H A D | filter_expr_executor.cpp | 210 double right) in doDoubleComparison() argument 212 if (!std::isfinite(left) || !std::isfinite(right)) in doDoubleComparison() 222 return std::fabs(left - right) <= in doDoubleComparison() 225 return std::fabs(left - right) > in doDoubleComparison() 228 return left > right; in doDoubleComparison() 230 return left >= right; in doDoubleComparison() 232 return left < right; in doDoubleComparison() 234 return left <= right; in doDoubleComparison() 243 int64_t right) in doIntComparison() argument 248 return left == right; in doIntComparison() [all …]
|
| /openbmc/qemu/util/ |
| H A D | qtree.c | 90 QTreeNode *right; /* right subtree */ member 126 node->right = NULL; in q_tree_node_new() 268 tmp = tmp->right; in q_tree_node_previous() 293 tmp = node->right; in q_tree_node_next() 589 child->right = node; in q_tree_insert_internal() 602 node = node->right; in q_tree_insert_internal() 606 child->right = node->right; in q_tree_insert_internal() 608 node->right = child; in q_tree_insert_internal() 628 g_assert(!bparent || bparent->left == node || bparent->right == node); in q_tree_insert_internal() 637 bparent->right = node; in q_tree_insert_internal() [all …]
|
| /openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-filesystems/logfsprogs/logfsprogs/ |
| H A D | 0001-btree-Avoid-conflicts-with-libc-namespace-about-setk.patch | 31 /* FIXME: If the right-most key on higher levels is 51 /* Shift entries on the right */ 52 - setkey(geo, right, bkey(geo, right, i), i + no_entries); 53 + _setkey(geo, right, bkey(geo, right, i), i + no_entries); 54 setval(geo, right, bval(geo, right, i), i + no_entries); 57 /* Move some entries to the right */ 58 - setkey(geo, right, bkey(geo, left, lfill - no_entries + i), i); 59 + _setkey(geo, right, bkey(geo, left, lfill - no_entries + i), i); 60 setval(geo, right, bval(geo, left, lfill - no_entries + i), i); 72 - setkey(geo, left, bkey(geo, right, i), lfill + i); [all …]
|
| /openbmc/openbmc/poky/bitbake/lib/progressbar/ |
| H A D | widgets.py | 282 def __init__(self, marker='#', left='|', right='|', fill=' ', argument 294 self.right = right 302 left, marked, right = (format_updatable(i, pbar) for i in 303 (self.left, self.marker, self.right)) 305 width -= len(left) + len(right) 313 return '%s%s%s' % (left, marked.ljust(width, self.fill), right) 315 return '%s%s%s' % (left, marked.rjust(width, self.fill), right) 321 def __init__(self, marker='#', left='|', right='|', fill=' ', argument 333 self.right = right 342 left, marker, right = (format_updatable(i, pbar) for i in [all …]
|
| /openbmc/bmcweb/include/ |
| H A D | human_sort.hpp | 27 inline int alphanumComp(std::string_view left, std::string_view right) in alphanumComp() argument 30 std::string_view::const_iterator r = right.cbegin(); in alphanumComp() 34 while (l != left.end() && r != right.end()) in alphanumComp() 76 fc = std::from_chars(&(*r), &(*right.end()), rInt); in alphanumComp() 91 if (r == right.end() && l == left.end()) in alphanumComp() 95 if (r == right.end()) in alphanumComp() 107 bool operator()(const Type& left, const Type& right) const in operator ()() 109 return alphanumComp(left, right) < 0; in operator ()()
|
| /openbmc/phosphor-logging/extensions/openpower-pels/ |
| H A D | bcd_time.cpp | 15 bool BCDTime::operator==(const BCDTime& right) const in operator ==() 17 return (yearMSB == right.yearMSB) && (yearLSB == right.yearLSB) && in operator ==() 18 (month == right.month) && (day == right.day) && in operator ==() 19 (hour == right.hour) && (minutes == right.minutes) && in operator ==() 20 (seconds == right.seconds) && (hundredths == right.hundredths); in operator ==() 23 bool BCDTime::operator!=(const BCDTime& right) const in operator !=() 25 return !(*this == right); in operator !=()
|
| H A D | callout.cpp | 196 bool Callout::operator==(const Callout& right) const in operator ==() 198 if ((_locationCodeSize != 0) || (right.locationCodeSize() != 0)) in operator ==() 200 return locationCode() == right.locationCode(); in operator ==() 203 if (!_fruIdentity || !right.fruIdentity()) in operator ==() 209 auto otherProc = right.fruIdentity()->getMaintProc(); in operator ==() 220 auto otherPN = right.fruIdentity()->getPN(); in operator ==() 229 bool Callout::operator>(const Callout& right) const in operator >() 236 !priorities.contains(right.priority())) in operator >() 241 return priorities.at(priority()) > priorities.at(right.priority()); in operator >()
|
| /openbmc/u-boot/post/lib_powerpc/ |
| H A D | complex.c | 56 int right; in cpu_post_test_complex_2() local 65 right = 1; in cpu_post_test_complex_2() 68 right *= x; in cpu_post_test_complex_2() 70 right = 1 - right; in cpu_post_test_complex_2() 72 if (left != right) in cpu_post_test_complex_2()
|
| /openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/fluidsynth/fluidsynth/ |
| H A D | 0002-fluid_synth_nwrite_float-Allow-zero-pointer-for-left.patch | 5 left/right and zero pointer in arrays 32 - * @param right Array of float buffers to store right channel of planar audio (size: dito) 34 - * @param fx_right Since 1.1.7: If not \c NULL, array of float buffers to store right effect chann… 36 + * @param right Array of float buffers to store right channel of planar audio (size: dito). Since … 38 + * @param fx_right Since 1.1.7: If not \c NULL, array of float buffers to store right effect chann… 47 - FLUID_MEMCPY(right[i], &right_in[i * FLUID_BUFSIZE * FLUID_MIXER_MAX_BUFFERS_DEFAULT +… 52 + if(right != NULL && right[i] != NULL) 54 + FLUID_MEMCPY(right[i], &right_in[i * FLUID_BUFSIZE * FLUID_MIXER_MAX_BUFFERS_DEFAU… 62 - right[i][j] = (float) right_in[i * FLUID_BUFSIZE * FLUID_MIXER_MAX_BUFFERS_DEFAULT… 67 + if(right != NULL && right[i] != NULL) [all …]
|
| /openbmc/phosphor-led-manager/manager/ |
| H A D | manager.hpp | 43 const phosphor::led::Layout::LedAction& right) in ledComp() argument 51 if (left.name == right.name) in ledComp() 53 return left.action != right.action; in ledComp() 55 return left.name < right.name; in ledComp() 60 const phosphor::led::Layout::LedAction& right) in ledLess() argument 62 return left.name < right.name; in ledLess() 67 const phosphor::led::Layout::LedAction& right) in ledEqual() argument 69 return left.name == right.name; in ledEqual()
|
| H A D | ledlayout.hpp | 35 bool operator<(const LedAction& right) const in operator <() 37 if (name == right.name) in operator <() 39 if (action == right.action) in operator <() 48 return name < right.name; in operator <()
|
| /openbmc/telemetry/tests/src/helpers/ |
| H A D | metric_value_helpers.hpp | 13 inline bool operator==(const MetricValue& left, const MetricValue& right) in operator ==() argument 16 std::tie(right.metadata, right.value, right.timestamp); in operator ==()
|
| /openbmc/telemetry/tests/src/helpers/interfaces/ |
| H A D | sensor_id_helpers.hpp | 16 inline bool operator==(const Sensor::Id& left, const Sensor::Id& right) in operator ==() argument 19 std::tie(right.type, right.service, right.path); in operator ==()
|
| /openbmc/qemu/target/openrisc/ |
| H A D | mmu.c | 46 int right, match, valid; in get_phys_mmu() local 69 right = itr & (super ? SXE : UXE) ? PAGE_EXEC : 0; in get_phys_mmu() 70 right |= dtr & (super ? SRE : URE) ? PAGE_READ : 0; in get_phys_mmu() 71 right |= dtr & (super ? SWE : UWE) ? PAGE_WRITE : 0; in get_phys_mmu() 72 right &= valid; in get_phys_mmu() 79 *prot = right; in get_phys_mmu() 83 need, match, valid, right, (need & right) ? "OK" : "FAIL"); in get_phys_mmu() 86 if (likely(need & right)) { in get_phys_mmu()
|
| /openbmc/libpldm/src/ |
| H A D | responder.c | 10 const struct pldm_responder_cookie *right) in pldm_responder_cookie_eq() argument 12 return left->tid == right->tid && in pldm_responder_cookie_eq() 13 left->instance_id == right->instance_id && in pldm_responder_cookie_eq() 14 left->type == right->type && left->command == right->command; in pldm_responder_cookie_eq()
|
| /openbmc/qemu/replay/ |
| H A D | replay-audio.c | 41 uint64_t left, right; in replay_audio_in() local 50 audio_sample_to_uint64(samples, pos, &left, &right); in replay_audio_in() 52 replay_put_qword(right); in replay_audio_in() 63 right = replay_get_qword(); in replay_audio_in() 64 audio_sample_from_uint64(samples, pos, left, right); in replay_audio_in()
|
| /openbmc/phosphor-webui/app/common/styles/elements/ |
| H A D | quicklinks.scss | 45 text-align: right; 47 float: right; 60 float: right; 66 .float-right { 67 float: right;
|
| H A D | content-search.scss | 8 margin-right: 1em; 15 padding-right: 5px; 40 margin-right: .5em; 47 right: 0; 73 text-align: right;
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
| H A D | jquery-ui.structure.min.css | 5 …right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hov…
|
| /openbmc/openbmc-tools/dbus-vis/ |
| H A D | dbus_vis.css | 17 margin-right: auto; 55 margin-right: auto; 83 margin-right: auto; 89 margin-right: auto; 98 margin-right: auto; 106 margin-right: auto;
|
| /openbmc/phosphor-webui/app/configuration/styles/ |
| H A D | firmware.scss | 12 margin-right: 1.7em; 69 float: right; 95 right: 0; 98 right: 18%; 117 padding-right: 1em; 140 padding-right: 0;
|
| /openbmc/phosphor-webui/app/server-health/styles/ |
| H A D | log.scss | 49 margin-right: 2em; 60 margin-right: 1.5em; 110 float: right; 123 right: 1em; 172 margin-right: 0.3em; 252 margin-right: 1em; 262 float: right; 307 margin-right: 1.2em; 312 margin-right: 1em; 322 float: right; [all …]
|
| H A D | syslog.scss | 41 margin-right: 2em; 52 margin-right: 1em; 112 margin-right: .3em; 212 margin-right: 1em; 216 text-align: right; 222 float: right; 268 margin-right: 1.2em; 273 margin-right: 1em; 283 float: right; 291 margin-right: .5em;
|
| /openbmc/phosphor-logging/test/openpower-pels/ |
| H A D | device_callouts_test.cpp | 230 bool operator!=(const Callout& left, const Callout& right) in operator !=() argument 232 return (left.priority != right.priority) || in operator !=() 233 (left.locationCode != right.locationCode) || in operator !=() 234 (left.name != right.name) || (left.mru != right.mru) || in operator !=() 235 (left.debug != right.debug); in operator !=() 239 const std::vector<Callout>& right) in operator ==() argument 241 if (left.size() != right.size()) in operator ==() 248 if (left[i] != right[i]) in operator ==()
|