| /openbmc/u-boot/scripts/kconfig/ |
| H A D | expr.c | 21 e->left.sym = sym; in expr_alloc_symbol() 29 e->left.expr = ce; in expr_alloc_one() 37 e->left.expr = e1; in expr_alloc_two() 46 e->left.sym = s1; in expr_alloc_comp() 76 e->left = org->left; in expr_copy() 79 e->left.expr = expr_copy(org->left.expr); in expr_copy() 87 e->left.sym = org->left.sym; in expr_copy() 93 e->left.expr = expr_copy(org->left.expr); in expr_copy() 115 expr_free(e->left.expr); in expr_free() 126 expr_free(e->left.expr); in expr_free() [all …]
|
| /openbmc/qemu/util/ |
| H A D | cpuinfo-riscv.c | 39 unsigned left = CPUINFO_ZBA | CPUINFO_ZBB | CPUINFO_ZBS in cpuinfo_init() local 64 left &= ~info; in cpuinfo_init() 67 if (left) { in cpuinfo_init() 79 left &= ~(CPUINFO_ZBA | CPUINFO_ZBB | CPUINFO_ZBS); in cpuinfo_init() 82 left &= ~CPUINFO_ZICOND; in cpuinfo_init() 97 left &= ~CPUINFO_ZVE64X; in cpuinfo_init() 99 if (left) { in cpuinfo_init() 107 if (left & CPUINFO_ZBA) { in cpuinfo_init() 113 left &= ~CPUINFO_ZBA; in cpuinfo_init() 116 if (left & CPUINFO_ZBB) { in cpuinfo_init() [all …]
|
| H A D | qtree.c | 89 QTreeNode *left; /* left subtree */ member 125 node->left = NULL; in q_tree_node_new() 240 tmp = tmp->left; in q_tree_node_first() 264 tmp = node->left; in q_tree_node_previous() 297 tmp = tmp->left; in q_tree_node_next() 584 node = node->left; in q_tree_insert_internal() 588 child->left = node->left; in q_tree_insert_internal() 590 node->left = child; in q_tree_insert_internal() 607 child->left = node; in q_tree_insert_internal() 627 gboolean left_node = (bparent && node == bparent->left); in q_tree_insert_internal() [all …]
|
| /openbmc/phosphor-webui/app/common/styles/base/ |
| H A D | foundation.scss | 557 //margin-left: 0.5rem; 618 border-left: 0; } 657 margin-left: -0.1875rem; 788 margin-left: auto; } 796 padding-left: 0; } 799 margin-left: -0.75rem; } 803 margin-left: -0.75rem; } } 807 margin-left: -0.75rem; } } 810 margin-left: 0; } 815 margin-left: auto; } [all …]
|
| /openbmc/qemu/scripts/ |
| H A D | meson-buildoptions.py | 94 def wrap(left, text, indent): argument 96 if len(left) >= indent: 97 yield left 98 left = spaces 100 left = (left + spaces)[0:indent] 102 text, width=LINE_WIDTH, initial_indent=left, subsequent_indent=spaces 110 def help_line(left, opt, indent, long): argument 119 for x in wrap(" " + left, right, indent): 194 left = f"--{key}={metavar}" 195 help_line(left, opt, 27, True) [all …]
|
| /openbmc/bmcweb/redfish-core/src/ |
| H A D | filter_expr_executor.cpp | 209 bool doDoubleComparison(double left, filter_ast::ComparisonOpEnum comparator, 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() 242 bool doIntComparison(int64_t left, filter_ast::ComparisonOpEnum comparator, in doIntComparison() argument 248 return left == right; in doIntComparison() [all …]
|
| /openbmc/phosphor-objmgr/src/test/util/ |
| H A D | debug_output.hpp | 14 cout << setw(15) << left << "OBJ PATH:" << i.first << '\n'; in dumpAssociationOwnersType() 18 cout << setw(16) << left << "DBUS SERVICE:" << j.first << '\n'; in dumpAssociationOwnersType() 22 cout << setw(17) << left << "ASSOC PATH:" << k.first << '\n'; in dumpAssociationOwnersType() 26 cout << setw(18) << left << "ENDPOINT:" << l << '\n'; in dumpAssociationOwnersType() 41 cout << setw(15) << left << "OBJ PATH:" << i.first << '\n'; in dumpAssociationInterfaces() 46 cout << setw(16) << left << "ENDPOINTS:" << k << '\n'; in dumpAssociationInterfaces() 59 cout << setw(15) << left << "OBJ PATH:" << i.first << '\n'; in dumpInterfaceMapType() 63 cout << setw(16) << left << "DBUS SERVICE:" << j.first << '\n'; in dumpInterfaceMapType() 67 cout << setw(18) << left << "INTERFACE:" << k << '\n'; in dumpInterfaceMapType()
|
| /openbmc/openbmc/poky/bitbake/lib/progressbar/ |
| H A D | widgets.py | 282 def __init__(self, marker='#', left='|', right='|', fill=' ', argument 293 self.left = left 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 332 self.left = left 342 left, marker, right = (format_updatable(i, pbar) for i in [all …]
|
| /openbmc/phosphor-webui/app/common/styles/elements/ |
| H A D | toast.scss | 13 border-left-width: 3px; 14 border-left-style: solid; 15 text-align: left; 17 padding-left: 1rem; 36 border-left-color: $notification-error--dark; 40 border-left-color: $notification-success--dark; 44 border-left-color: $notification-warn--dark; 48 border-left-color: $notification-info--dark;
|
| H A D | paginate.scss | 24 border-left-width: 0; 37 border-left-width:1px; 41 border-left-width: 1px; 51 left: -9999px; 91 left: -9999px; 94 .pagination li:nth-of-type(2) a { border-left-width: 1px; } 103 left: -9999px; 113 left: initial; 116 .pagination li:nth-of-type(2) a { border-left-width: 0; } 129 left: -9999px; [all …]
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | 026.out | 31 write failed: No space left on device 36 write failed: No space left on device 41 qemu-io: Failed to flush the L2 table cache: No space left on device 42 qemu-io: Failed to flush the refcount block cache: No space left on device 43 write failed: No space left on device 48 qemu-io: Failed to flush the L2 table cache: No space left on device 49 qemu-io: Failed to flush the refcount block cache: No space left on device 50 write failed: No space left on device 89 write failed: No space left on device 90 read failed: No space left on device [all …]
|
| H A D | 026.out.nocache | 31 write failed: No space left on device 36 write failed: No space left on device 41 qemu-io: Failed to flush the L2 table cache: No space left on device 42 qemu-io: Failed to flush the refcount block cache: No space left on device 43 write failed: No space left on device 48 qemu-io: Failed to flush the L2 table cache: No space left on device 49 qemu-io: Failed to flush the refcount block cache: No space left on device 50 write failed: No space left on device 89 write failed: No space left on device 90 read failed: No space left on device [all …]
|
| /openbmc/phosphor-webui/app/common/styles/components/ |
| H A D | alert-banner.scss | 3 border-left-width: 3px; 4 border-left-style: solid; 17 border-left-color: $notification-error--dark; 21 border-left-color: $notification-success--dark; 25 border-left-color: $notification-warn--dark; 29 border-left-color: $notification-info--dark;
|
| /openbmc/bmcweb/include/ |
| H A D | human_sort.hpp | 27 inline int alphanumComp(std::string_view left, std::string_view right) in alphanumComp() argument 29 std::string_view::const_iterator l = left.cbegin(); in alphanumComp() 34 while (l != left.end() && r != right.end()) in alphanumComp() 71 auto fc = std::from_chars(&(*l), &(*left.end()), lInt); in alphanumComp() 91 if (r == right.end() && l == left.end()) in alphanumComp() 107 bool operator()(const Type& left, const Type& right) const in operator ()() 109 return alphanumComp(left, right) < 0; in operator ()()
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
| H A D | jquery-ui.structure.min.css | 5 …left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disable…
|
| /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 31 - * @param left Array of float buffers to store left channel of planar audio (as many as \c synth.a… 33 - * @param fx_left Since 1.1.7: If not \c NULL, array of float buffers to store left effect channel… 35 + * @param left Array of float buffers to store left channel of planar audio (as many as \c synth.a… 37 + * @param fx_left Since 1.1.7: If not \c NULL, array of float buffers to store left effect channel… 46 - FLUID_MEMCPY(left[i], &left_in[i * FLUID_BUFSIZE * FLUID_MIXER_MAX_BUFFERS_DEFAULT + s… 48 + if(left != NULL && left[i] != NULL) 50 + FLUID_MEMCPY(left[i], &left_in[i * FLUID_BUFSIZE * FLUID_MIXER_MAX_BUFFERS_DEFAULT… 61 - left[i][j] = (float) left_in[i * FLUID_BUFSIZE * FLUID_MIXER_MAX_BUFFERS_DEFAULT +… 63 + if(left != NULL && left[i] != NULL) [all …]
|
| /openbmc/phosphor-led-manager/manager/ |
| H A D | manager.hpp | 42 static bool ledComp(const phosphor::led::Layout::LedAction& left, 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() 59 static bool ledLess(const phosphor::led::Layout::LedAction& left, in ledLess() argument 62 return left.name < right.name; in ledLess() 66 static bool ledEqual(const phosphor::led::Layout::LedAction& left, in ledEqual() argument 69 return left.name == right.name; in ledEqual()
|
| /openbmc/openbmc-tools/dbus-vis/ |
| H A D | dbus_vis.css | 16 margin-left: auto; 54 margin-left: auto; 78 text-align: left; 82 margin-left: auto; 88 margin-left: auto; 97 margin-left: auto; 105 margin-left: auto; 138 top: 10px; left: 10px;
|
| /openbmc/u-boot/cmd/ |
| H A D | test.c | 56 int i, op, left, adv, expr, last_expr, last_unop, last_binop; in do_test() local 65 left = 1; in do_test() 66 while (argv[left]) in do_test() 67 debug(" '%s'", argv[left++]); in do_test() 71 left = argc - 1; in do_test() 77 while (left > 0) { in do_test() 79 if (left <= op_adv[i].arg) in do_test() 91 if (left < adv) { in do_test() 174 ap += adv; left -= adv; in do_test()
|
| /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 15 return std::tie(left.metadata, left.value, left.timestamp) == in operator ==()
|
| /openbmc/u-boot/lib/zlib/ |
| H A D | inftrees.c | 42 int left; /* number of prefix codes available */ in inflate_table() local 127 left = 1; in inflate_table() 129 left <<= 1; in inflate_table() 130 left -= count[len]; in inflate_table() 131 if (left < 0) return -1; /* over-subscribed */ in inflate_table() 133 if (left > 0 && (type == CODES || max != 1)) in inflate_table() 266 left = (int)(1 << curr); in inflate_table() 268 left -= count[curr + drop]; in inflate_table() 269 if (left <= 0) break; in inflate_table() 271 left <<= 1; in inflate_table()
|
| /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 18 return std::tie(left.type, left.service, left.path) == in operator ==()
|
| /openbmc/phosphor-webui/app/configuration/styles/ |
| H A D | date-time.scss | 5 padding-left: 1.8em; 20 padding-left: 0em; 25 padding-left: 3em; 30 margin-left: 3em; 35 float: left;
|
| /openbmc/libpldm/src/ |
| H A D | responder.c | 9 static bool pldm_responder_cookie_eq(const struct pldm_responder_cookie *left, 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() 51 replay_put_qword(left); in replay_audio_in() 62 left = replay_get_qword(); in replay_audio_in() 64 audio_sample_from_uint64(samples, pos, left, right); in replay_audio_in()
|