Home
last modified time | relevance | path

Searched +full:- +full:e (Results 1 – 25 of 1061) sorted by relevance

12345678910>>...43

/openbmc/qemu/scripts/coccinelle/
H A Dinplace-byteswaps.cocci1 // 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 …]
H A Dqobject.cocci3 expression Obj, Key, E;
6 - qobject_ref(QOBJECT(E));
7 + qobject_ref(E);
9 - qobject_unref(QOBJECT(E));
10 + qobject_unref(E);
12 - qdict_put_obj(Obj, Key, QOBJECT(E));
13 + qdict_put(Obj, Key, E);
15 - qdict_put(Obj, Key, qnum_from_int(E));
16 + qdict_put_int(Obj, Key, E);
18 - qdict_put(Obj, Key, qbool_from_bool(E));
[all …]
/openbmc/qemu/linux-user/
H A Derrnos.c.inc2 * 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/tests/tcg/arm/
H A Dfcvt.ref3 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 Dfcvt.ref3 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 Dhighlight.pack.js2e){var n="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports? property in AnonymousFunctioneac6a7184800.b.AnonymousClasseac6a7184a01
H A Djquery-3.7.1.min.js2e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument
H A Djquery-ui.min.js1 /*! jQuery UI - v1.11.4 - 2015-03-15
6e){"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 Djquery-2.0.3.min.js2 //@ sourceMappingURL=jquery-2.0.3.min.map
4e,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
6e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off( argument
H A Djquery.dataTables-1.13.8.min.js2 * ©2008-2023 SpryMedia Ltd - datatables.net/license
4e){return t=t||window,e=e||a(t),n(e,t,t.document)}:module.exports=n(a,window,window.document)):win… function
H A Dbootstrap-3.4.1.min.js3 * Copyright 2011-2019 Twitter, Inc.
6e=jQuery.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||3<e[0])th… variable
/openbmc/u-boot/scripts/kconfig/
H A Dexpr.c2 * 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/pldm/libpldmresponder/
H A Dpdr_numeric_effecter.hpp7 #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/u-boot/scripts/coccinelle/null/
H A Dbadzero.cocci1 /// 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/qemu/tests/qemu-iotests/
H A Dcommon.filter4 # 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/qemu/util/
H A Devent_notifier-posix.c10 * See the COPYING file in the top-level directory.
16 #include "qemu/main-loop.h"
24 * Initialize @e with existing file descriptor @fd.
27 void event_notifier_init_fd(EventNotifier *e, int fd) in event_notifier_init_fd() argument
29 e->rfd = fd; in event_notifier_init_fd()
30 e->wfd = fd; in event_notifier_init_fd()
31 e->initialized = true; in event_notifier_init_fd()
35 int event_notifier_init(EventNotifier *e, int active) in event_notifier_init() argument
43 ret = -1; in event_notifier_init()
47 e->rfd = e->wfd = ret; in event_notifier_init()
[all …]
/openbmc/qemu/target/i386/
H A Dxsave_helper.c3 * See the COPYING file in the top-level directory.
11 CPUX86State *env = &cpu->env; in x86_cpu_xsave_all_areas()
12 const ExtSaveArea *e, *f; in x86_cpu_xsave_all_areas() local
21 e = &x86_ext_save_areas[XSTATE_FP_BIT]; in x86_cpu_xsave_all_areas()
23 legacy = buf + e->offset; in x86_cpu_xsave_all_areas()
24 header = buf + e->offset + sizeof(*legacy); in x86_cpu_xsave_all_areas()
27 swd = env->fpus & ~(7 << 11); in x86_cpu_xsave_all_areas()
28 swd |= (env->fpstt & 7) << 11; in x86_cpu_xsave_all_areas()
29 cwd = env->fpuc; in x86_cpu_xsave_all_areas()
31 twd |= (!env->fptags[i]) << i; in x86_cpu_xsave_all_areas()
[all …]
/openbmc/openbmc/poky/meta/classes/
H A Dreport-error.bbclass7 # SPDX-License-Identifier: MIT
10 ERR_REPORT_DIR ?= "${LOG_DIR}/error-report"
12 def errorreport_getdata(e):
14 logpath = e.data.getVar('ERR_REPORT_DIR')
15 datafile = os.path.join(logpath, "error-report.txt")
16 with codecs.open(datafile, 'r', 'utf-8') as f:
20 def errorreport_savedata(e, newdata, file):
23 logpath = e.data.getVar('ERR_REPORT_DIR')
25 with codecs.open(datafile, 'w', 'utf-8') as f:
29 def get_conf_data(e, filename):
[all …]
/openbmc/u-boot/board/freescale/common/
H A Dsys_eeprom.c1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2006, 2008-2009, 2011 Freescale Semiconductor
20 /* some boards with non-256-bytes EEPROM have special define */
21 /* for MAX_NUM_PORTS in board-specific file */
35 u8 id[4]; /* 0x00 - 0x03 EEPROM Tag 'CCID' */
38 u8 sn[10]; /* 0x06 - 0x0F Serial Number*/
39 u8 errata[2]; /* 0x10 - 0x11 Errata Level */
40 u8 date[6]; /* 0x12 - 0x17 Build Date */
41 u8 res_0[40]; /* 0x18 - 0x3f Reserved */
44 u8 mac[MAX_NUM_PORTS][6]; /* 0x42 - 0x71 MAC addresses */
[all …]
/openbmc/qemu/scripts/tracetool/format/
H A Dh.py1 # -*- coding: utf-8 -*-
4 trace/generated-tracers.h
8 __copyright__ = "Copyright 2012-2017, Lluís Vilanova <vilanova@ac.upc.edu>"
29 for e in events:
31 event = e.api(e.QEMU_EVENT))
33 for e in events:
34 out('extern uint16_t %s;' % e.api(e.QEMU_DSTATE))
37 for e in events:
38 if 'disable' in e.properties:
42 if "tcg-exec" in e.properties:
[all …]
/openbmc/qemu/tests/tcg/multiarch/
H A Dsha1.c6 SHA-1 in C
10 Test Vectors (from FIPS PUB 180-1)
30 SHA-1 in C
47 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
52 #define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
53 |(rol(block->l[i],8)&0x00FF00FF))
55 #define blk0(i) block->l[i]
59 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
60 ^block->l[(i+2)&15]^block->l[i&15],1))
70 /* Hash a single 512-bit block. This is the core of the algorithm. */
[all …]
/openbmc/openbmc/poky/scripts/
H A Doe-trim-schemas5 # SPDX-License-Identifier: GPL-2.0-only
15 for e in elem.getchildren():
16 if e.tag == name:
17 return e
23 l = [e for e in l if e.tag == name]
26 if len(sys.argv) < 2 or sys.argv[1] in ('-h', '--help'):
27 print('oe-trim-schemas: error: the following arguments are required: schema\n'
28 'Usage: oe-trim-schemas schema\n\n'
29 'OpenEmbedded trim schemas - remove unneeded schema locale translations\n'
38 e = child(schema, "short") variable
[all …]
/openbmc/openbmc/poky/meta/recipes-devtools/systemd-bootchart/systemd-bootchart/
H A D0002-musl-does-not-provide-printf-h.patch3 Date: Thu, 28 Dec 2017 21:39:51 -0800
7 systemd/0001-add-fallback-parse_printf_format-implementation.patch
12 Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
13 Upstream-Status: Denied [https://github.com/systemd/systemd-bootchart/pull/47]
14 ---
19 src/parse-printf-format.c | 273 ++++++++++++++++++++++++++++++++++++++++++++++
20 src/parse-printf-format.h | 57 ++++++++++
21 src/stdio-util.h | 1 -
22 6 files changed, 338 insertions(+), 1 deletion(-)
23 create mode 100644 src/parse-printf-format.c
[all …]
/openbmc/openbmc-tools/ipkdbg/
H A Dipkdbg.in3 set -eu
11 : ${IPKDBG_WGET_OPTS:="--quiet"}
15 /bin/echo -e "$@" | fold >&2
19 /bin/echo -e "$@" | fold
23 /bin/echo -e "\033[1mNAME\033[0m"
24 /bin/echo -e "\tipkdbg - debug OpenBMC applications from an (internally) released firmware"
25 /bin/echo -e
26 /bin/echo -e "\033[1mSYNOPSIS\033[0m"
27 /bin/echo -e "\tipkdbg [-q] RELEASE FILE CORE [PACKAGE...]"
28 /bin/echo -e
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/
H A D0002-add-fallback-parse_printf_format-implementation.patch6 Upstream-Status: Inappropriate [musl specific]
8 Signed-off-by: Emil Renner Berthing <systemd@esmil.dk>
9 Signed-off-by: Khem Raj <raj.khem@gmail.com>
10 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
12 Signed-off-by: Scott Murray <scott.murray@konsulko.com>
13 ---
16 src/basic/parse-printf-format.c | 273 +++++++++++++++++++++++
17 src/basic/parse-printf-format.h | 57 +++++
18 src/basic/stdio-util.h | 2 +-
19 src/libsystemd/sd-journal/journal-send.c | 2 +-
[all …]

12345678910>>...43