/openbmc/linux/lib/ |
H A D | errname.c | 1 // SPDX-License-Identifier: GPL-2.0 13 * on mips), so this wastes a bit of space on those - though we 16 #define E(err) [err + BUILD_BUG_ON_ZERO(err <= 0 || err > 300)] = "-" #err macro 18 E(E2BIG), 19 E(EACCES), 20 E(EADDRINUSE), 21 E(EADDRNOTAVAIL), 22 E(EADV), 23 E(EAFNOSUPPORT), 24 E(EAGAIN), /* EWOULDBLOCK */ [all …]
|
/openbmc/qemu/linux-user/ |
H A D | errnos.c.inc | 2 * This list is the union of errno values overridden in asm-<arch>/errno.h 22 * SPDX-License-Identifier: GPL-2.0-or-later 25 E(EADDRINUSE) 26 E(EADDRNOTAVAIL) 27 E(EADV) 28 E(EAFNOSUPPORT) 29 E(EAGAIN) 30 E(EALREADY) 31 E(EBADE) 32 E(EBADFD) [all …]
|
/openbmc/qemu/scripts/coccinelle/ |
H A D | inplace-byteswaps.cocci | 1 // Replace uses of in-place byteswapping functions with calls to the 2 // equivalent not-in-place functions. This is necessary to avoid 7 expression E; 9 -be16_to_cpus(&E); 10 +E = be16_to_cpu(E); 12 expression E; 14 -be32_to_cpus(&E); 15 +E = be32_to_cpu(E); 17 expression E; 19 -be64_to_cpus(&E); [all …]
|
/openbmc/qemu/tests/tcg/arm/ |
H A D | fcvt.ref | 3 Converting single-precision to half-precision 4 00 SINGLE: -nan / 0xffa00000 (0 => OK) 6 01 SINGLE: -nan / 0xffc00000 (0 => OK) 8 02 SINGLE: -inf / 0xff800000 (0 => OK) 10 03 SINGLE: -3.40282346638528859812e+38 / 0xff7fffff (0 => OK) 12 04 SINGLE: -1.11100004769645909791e+31 / 0xf30c3a59 (0 => OK) 14 05 SINGLE: -1.11100003258488635273e+30 / 0xf1605d5b (0 => OK) 16 06 SINGLE: -1.08700982243137289629e-12 / 0xab98fba8 (0 => OK) 18 07 SINGLE: -1.78051176151664730511e-20 / 0x9ea82a22 (0 => OK) 20 08 SINGLE: -1.17549435082228750797e-38 / 0x80800000 (0 => OK) [all …]
|
/openbmc/qemu/tests/tcg/aarch64/ |
H A D | fcvt.ref | 3 Converting single-precision to half-precision 4 00 SINGLE: -nan / 0xffa00000 (0 => OK) 6 01 SINGLE: -nan / 0xffc00000 (0 => OK) 8 02 SINGLE: -inf / 0xff800000 (0 => OK) 10 03 SINGLE: -3.40282346638528859812e+38 / 0xff7fffff (0 => OK) 12 04 SINGLE: -1.11100004769645909791e+31 / 0xf30c3a59 (0 => OK) 14 05 SINGLE: -1.11100003258488635273e+30 / 0xf1605d5b (0 => OK) 16 06 SINGLE: -1.08700982243137289629e-12 / 0xab98fba8 (0 => OK) 18 07 SINGLE: -1.78051176151664730511e-20 / 0x9ea82a22 (0 => OK) 20 08 SINGLE: -1.17549435082228750797e-38 / 0x80800000 (0 => OK) [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | jquery-3.7.1.min.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument
|
H A D | highlight.pack.js | 2 …e){var n="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports?… property in AnonymousFunctioneac6a7188200.a.AnonymousClasseac6a7188a01
|
H A D | jquery-2.0.3.min.js | 2 //@ sourceMappingURL=jquery-2.0.3.min.map 4 …e,undefined){var t,n,r=typeof undefined,i=e.location,o=e.document,s=o.documentElement,a=e.jQuery,u… function 5 …--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,s,o)),!r&&o&&o.empty.fire()},_que… argument 6 …e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(… argument
|
H A D | jquery-ui.min.js | 1 /*! jQuery UI - v1.11.4 - 2015-03-15 6 …e){"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){function t(t… argument 7 …-1:N+=" ui-datepicker-group-last",D=" ui-corner-"+(Y?"left":"right");break;default:N+=" ui-datepic… argument
|
H A D | jquery.dataTables-1.13.8.min.js | 2 * ©2008-2023 SpryMedia Ltd - datatables.net/license 4 …e){return t=t||window,e=e||a(t),n(e,t,t.document)}:module.exports=n(a,window,window.document)):win… function
|
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb4/ |
H A D | l2t.c | 4 * Copyright (c) 2003-2014 Chelsio Communications, Inc. All rights reserved. 16 * - Redistributions of source code must retain the above 20 * - Redistributions in binary form must reproduce the above 65 static inline unsigned int vlan_prio(const struct l2t_entry *e) in vlan_prio() argument 67 return e->vlan >> VLAN_PRIO_SHIFT; in vlan_prio() 70 static inline void l2t_hold(struct l2t_data *d, struct l2t_entry *e) in l2t_hold() argument 72 if (atomic_add_return(1, &e->refcnt) == 1) /* 0 -> 1 transition */ in l2t_hold() 73 atomic_dec(&d->nfree); in l2t_hold() 89 unsigned int l2t_size_half = d->l2t_size / 2; in arp_hash() 97 unsigned int l2t_size_half = d->l2t_size / 2; in ipv6_hash() [all …]
|
/openbmc/linux/tools/testing/selftests/powerpc/pmu/ |
H A D | event.c | 1 // SPDX-License-Identifier: GPL-2.0-only 24 static void __event_init_opts(struct event *e, u64 config, in __event_init_opts() argument 27 memset(e, 0, sizeof(*e)); in __event_init_opts() 29 e->name = name; in __event_init_opts() 31 e->attr.type = type; in __event_init_opts() 32 e->attr.config = config; in __event_init_opts() 33 e->attr.size = sizeof(e->attr); in __event_init_opts() 35 e->attr.read_format = PERF_FORMAT_TOTAL_TIME_ENABLED | \ in __event_init_opts() 38 e->attr.sample_period = 1000; in __event_init_opts() 39 e->attr.sample_type = PERF_SAMPLE_REGS_INTR; in __event_init_opts() [all …]
|
/openbmc/u-boot/scripts/kconfig/ |
H A D | expr.c | 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 15 static struct expr *expr_eliminate_yn(struct expr *e); 19 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol() local 20 e->type = E_SYMBOL; in expr_alloc_symbol() 21 e->left.sym = sym; in expr_alloc_symbol() 22 return e; in expr_alloc_symbol() 27 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one() local 28 e->type = type; in expr_alloc_one() 29 e->left.expr = ce; in expr_alloc_one() 30 return e; in expr_alloc_one() [all …]
|
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb3/ |
H A D | l2t.c | 2 * Copyright (c) 2003-2008 Chelsio, Inc. All rights reserved. 14 * - Redistributions of source code must retain the above 18 * - Redistributions in binary form must reproduce the above 63 static inline unsigned int vlan_prio(const struct l2t_entry *e) in vlan_prio() argument 65 return e->vlan >> 13; in vlan_prio() 71 return jhash_2words(key, ifindex, 0) & (d->nentries - 1); in arp_hash() 74 static inline void neigh_replace(struct l2t_entry *e, struct neighbour *n) in neigh_replace() argument 77 if (e->neigh) in neigh_replace() 78 neigh_release(e->neigh); in neigh_replace() 79 e->neigh = n; in neigh_replace() [all …]
|
/openbmc/linux/scripts/kconfig/ |
H A D | expr.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 16 static struct expr *expr_eliminate_yn(struct expr *e); 20 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_symbol() local 21 e->type = E_SYMBOL; in expr_alloc_symbol() 22 e->left.sym = sym; in expr_alloc_symbol() 23 return e; in expr_alloc_symbol() 28 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_one() local 29 e->type = type; in expr_alloc_one() 30 e->left.expr = ce; in expr_alloc_one() [all …]
|
/openbmc/linux/security/apparmor/ |
H A D | policy_unpack_test.c | 1 // SPDX-License-Identifier: GPL-2.0-only 50 struct aa_ext *e; member 58 struct aa_ext *e; in build_aa_ext_struct() local 63 e = kunit_kmalloc(test, sizeof(*e), GFP_USER); in build_aa_ext_struct() 64 KUNIT_EXPECT_NOT_ERR_OR_NULL(test, e); in build_aa_ext_struct() 66 e->start = buf; in build_aa_ext_struct() 67 e->end = e->start + buf_size; in build_aa_ext_struct() 68 e->pos = e->start; in build_aa_ext_struct() 72 strscpy(buf + 3, TEST_STRING_NAME, e->end - (void *)(buf + 3)); in build_aa_ext_struct() 74 buf = e->start + TEST_STRING_BUF_OFFSET; in build_aa_ext_struct() [all …]
|
/openbmc/pldm/libpldmresponder/ |
H A D | pdr_numeric_effecter.hpp | 7 #include <phosphor-logging/lg2.hpp> 23 * @param[in] json - the JSON Object with the numeric effecter PDR 24 * @param[out] handler - the Parser of PLDM command handler 25 * @param[out] repo - pdr::RepoInterface 35 for (const auto& e : entries) in generateNumericEffecterPDR() local 47 pdr->hdr.record_handle = 0; in generateNumericEffecterPDR() 48 pdr->hdr.version = 1; in generateNumericEffecterPDR() 49 pdr->hdr.type = PLDM_NUMERIC_EFFECTER_PDR; in generateNumericEffecterPDR() 50 pdr->hdr.record_change_num = 0; in generateNumericEffecterPDR() 51 pdr->hdr.length = in generateNumericEffecterPDR() [all …]
|
/openbmc/linux/scripts/coccinelle/api/ |
H A D | kvmalloc.cocci | 1 // SPDX-License-Identifier: GPL-2.0-only 8 // Options: --no-includes --include-headers 24 expression E, E1, size; 35 * E = \(kmalloc\|kzalloc\|kcalloc\|kmalloc_node\|kzalloc_node\| 41 * E = \(vmalloc\|vzalloc\|vmalloc_node\|vzalloc_node\)(..., size, ...) 45 * E = \(kmalloc\|kzalloc\|kcalloc\|kmalloc_node\|kzalloc_node\| 48 ... when != E = E1 51 * if (E == NULL)@p { 53 * E = \(vmalloc\|vzalloc\|vmalloc_node\|vzalloc_node\)(..., size, ...) 71 expression E; [all …]
|
/openbmc/linux/arch/alpha/lib/ |
H A D | ev6-memcpy.S | 1 /* SPDX-License-Identifier: GPL-2.0 */ 3 * arch/alpha/lib/ev6-memcpy.S 4 * 21264 version by Rick Gorton <rick.gorton@alpha-processor.com> 8 * - memory accessed as aligned quadwords only 9 * - uses bcmpge to compare 8 bytes in parallel 14 * ftp.digital.com/pub/Digital/info/semiconductor/literature/dsc-library.html 16 * E - either cluster 17 * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1 18 * L - lower subcluster; L0 - subcluster L0; L1 - subcluster L1 21 * $1,$2, - scratch [all …]
|
H A D | ev6-memchr.S | 1 /* SPDX-License-Identifier: GPL-2.0 */ 3 * arch/alpha/lib/ev6-memchr.S 5 * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> 9 * - memory accessed as aligned quadwords only 10 * - uses cmpbge to compare 8 bytes in parallel 11 * - does binary search to find 0 byte in last 18 * - only minimum number of quadwords may be accessed 19 * - the third argument is an unsigned long 24 * ftp.digital.com/pub/Digital/info/semiconductor/literature/dsc-library.html 26 * E - either cluster [all …]
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | common.filter | 4 # Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved. 24 sed -Ee 's/[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}/yyyy-mm-dd hh:mm:ss/' 29 sed -E -e 's/[0-9. ]{5} [KMGT]iB/ SIZE/' \ 30 -e 's/[0-9. ]{5} B/ SIZE/' 35 sed -Ee 's/\#block[0-9]{3,}/NODE_NAME/' 40 gsed -e '/Attached to:/s/\device[[0-9]\+\]/device[N]/g' 46 sed -e "s#$TEST_DIR/#TEST_DIR/#g" \ 47 -e "s#$SOCK_DIR/#SOCK_DIR/#g" \ 48 -e "s#SOCK_DIR/fuse-#TEST_DIR/#g" 54 sed -e "s#$IMGFMT#IMGFMT#g" [all …]
|
/openbmc/linux/scripts/coccinelle/null/ |
H A D | badzero.cocci | 1 // SPDX-License-Identifier: GPL-2.0-only 2 /// Compare pointer-typed values to NULL rather than 0 7 //# using the option -all_includes and the option -I to specify an 27 expression *E; 32 (E = f(...)) == 33 - 0 36 (E = f(...)) != 37 - 0 40 - 0 42 == (E = f(...)) [all …]
|
/openbmc/u-boot/scripts/coccinelle/null/ |
H A D | badzero.cocci | 1 /// Compare pointer-typed values to NULL rather than 0 6 //# using the option -all_includes and the option -I to specify an 16 // SPDX-License-Identifier: GPL-2.0 29 expression *E; 34 (E = f(...)) == 35 - 0 38 (E = f(...)) != 39 - 0 42 - 0 44 == (E = f(...)) [all …]
|
/openbmc/linux/block/ |
H A D | elevator.c | 1 // SPDX-License-Identifier: GPL-2.0 3 * Block device elevator/IO-scheduler. 11 * - elevator_fn, inserts a new request in the queue list 12 * - elevator_merge_fn, decides whether a new buffer can be merged with 14 * - elevator_dequeue_fn, called when a request is taken off the active list 17 * Removed tests for max-bomb-segments, which was breaking elvtune 18 * when run without -bN 21 * - Rework again to work with bio instead of buffer_heads 22 * - loose bi_dev comparisons, partition handling is right now 23 * - completely modularize elevator setup and teardown [all …]
|
/openbmc/linux/net/netfilter/ipset/ |
H A D | pfxlen.c | 1 // SPDX-License-Identifier: GPL-2.0-only 7 #ifdef E 8 #undef E 12 E(0x00000000, 0x00000000, 0x00000000, 0x00000000), \ 13 E(0x80000000, 0x00000000, 0x00000000, 0x00000000), \ 14 E(0xC0000000, 0x00000000, 0x00000000, 0x00000000), \ 15 E(0xE0000000, 0x00000000, 0x00000000, 0x00000000), \ 16 E(0xF0000000, 0x00000000, 0x00000000, 0x00000000), \ 17 E(0xF8000000, 0x00000000, 0x00000000, 0x00000000), \ 18 E(0xFC000000, 0x00000000, 0x00000000, 0x00000000), \ [all …]
|