Home
last modified time | relevance | path

Searched full:e (Results 1 – 25 of 3541) sorted by relevance

12345678910>>...142

/openbmc/qemu/linux-user/
H A Derrnos.c.inc25 E(EADDRINUSE)
26 E(EADDRNOTAVAIL)
27 E(EADV)
28 E(EAFNOSUPPORT)
29 E(EAGAIN)
30 E(EALREADY)
31 E(EBADE)
32 E(EBADFD)
33 E(EBADMSG)
34 E(EBADR)
[all …]
/openbmc/qemu/scripts/coccinelle/
H A Dinplace-byteswaps.cocci7 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);
20 +E = be64_to_cpu(E);
22 expression 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/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
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-2.0.3.min.js4e,undefined){var t,n,r=typeof undefined,i=e.location,o=e.document,s=o.documentElement,a=e.jQuery,u… variable
5e,s,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return q.get(e,n)||q… 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 Dhighlight.pack.js2e){var n="object"==typeof window&&window||"object"==typeof self&&self;"undefined"!=typeof exports? property in AnonymousFunctioneac6a71814400.AnonymousClasseac6a71814501.AnonymousClasseac6a71814601
H A Djquery-ui.min.js6e){"function"==typeof define&&define.amd?define(["jquery"],e):e(jQuery)})(function(e){function t(t… argument
7e,Z,et,X,$,k>0||T>0,f,m)+"</div><table class='ui-datepicker-calendar'><thead>"+"<tr>",M=d?"<th cla… argument
H A Djquery.dataTables-1.13.8.min.js4e){return t=t||window,e=e||a(t),n(e,t,t.document)}:module.exports=n(a,window,window.document)):win… function
H A Djsrender.min.js3e,t){var n=t.jQuery;"object"==typeof exports?module.exports=n?e(t,n):function(n){if(n&&!n.fn)throw… argument
/openbmc/qemu/tests/tcg/arm/
H A Dfcvt.ref10 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)
22 09 SINGLE: 0.00000000000000000000e+00 / 0000000000 (0 => OK)
24 10 SINGLE: 1.17549435082228750797e-38 / 0x00800000 (0 => OK)
26 11 SINGLE: 2.98023223876953125000e-08 / 0x33000000 (0 => OK)
28 12 SINGLE: 5.96045985901128005935e-08 / 0x337ffff3 (0 => OK)
[all …]
/openbmc/qemu/tests/tcg/aarch64/
H A Dfcvt.ref10 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)
22 09 SINGLE: 0.00000000000000000000e+00 / 0000000000 (0 => OK)
24 10 SINGLE: 1.17549435082228750797e-38 / 0x00800000 (0 => OK)
26 11 SINGLE: 2.98023223876953125000e-08 / 0x33000000 (0 => OK)
28 12 SINGLE: 5.96045985901128005935e-08 / 0x337ffff3 (0 => OK)
[all …]
/openbmc/u-boot/scripts/kconfig/
H A Dexpr.c15 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()
35 struct expr *e = xcalloc(1, sizeof(*e)); in expr_alloc_two() local
[all …]
/openbmc/pldm/libpldmresponder/
H A Dpdr_numeric_effecter.hpp35 for (const auto& e : entries) in generateNumericEffecterPDR() local
54 pdr->terminus_handle = e.value("terminus_handle", 0); in generateNumericEffecterPDR()
58 std::string entity_path = e.value("entity_path", ""); in generateNumericEffecterPDR()
71 pdr->entity_type = e.value("type", 0); in generateNumericEffecterPDR()
72 pdr->entity_instance = e.value("instance", 0); in generateNumericEffecterPDR()
73 pdr->container_id = e.value("container", 0); in generateNumericEffecterPDR()
85 pdr->entity_type = e.value("type", 0); in generateNumericEffecterPDR()
86 pdr->entity_instance = e.value("instance", 0); in generateNumericEffecterPDR()
87 pdr->container_id = e.value("container", 0); in generateNumericEffecterPDR()
90 pdr->effecter_semantic_id = e.value("effecter_semantic_id", 0); in generateNumericEffecterPDR()
[all …]
/openbmc/u-boot/scripts/coccinelle/null/
H A Dbadzero.cocci29 expression *E;
34 (E = f(...)) ==
38 (E = f(...)) !=
44 == (E = f(...))
48 != (E = f(...))
53 expression *E;
59 (E = f(...)) ==
62 (E = f(...)) !=
66 == (E = f(...))
69 != (E = f(...))
[all …]
/openbmc/qemu/target/i386/tcg/
H A Dseg_helper.h42 #define cpu_lduw_kernel_ra(e, p, r) \ argument
43 cpu_lduw_mmuidx_ra(e, p, cpu_mmu_index_kernel(e), r)
44 #define cpu_ldl_kernel_ra(e, p, r) \ argument
45 cpu_ldl_mmuidx_ra(e, p, cpu_mmu_index_kernel(e), r)
46 #define cpu_ldq_kernel_ra(e, p, r) \ argument
47 cpu_ldq_mmuidx_ra(e, p, cpu_mmu_index_kernel(e), r)
49 #define cpu_stw_kernel_ra(e, p, v, r) \ argument
50 cpu_stw_mmuidx_ra(e, p, v, cpu_mmu_index_kernel(e), r)
51 #define cpu_stl_kernel_ra(e, p, v, r) \ argument
52 cpu_stl_mmuidx_ra(e, p, v, cpu_mmu_index_kernel(e), r)
[all …]
/openbmc/qemu/tests/qemu-iotests/
H A Dcommon.filter29 sed -E -e 's/[0-9. ]{5} [KMGT]iB/ SIZE/' \
30 -e 's/[0-9. ]{5} B/ SIZE/'
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"
61 gsed -e '/allocated.*fragmented.*compressed clusters/d' \
62 … -e 's/qemu-img: This image format does not support checks/No errors were found on the image./' \
63 -e '/Image end offset: [0-9]\+/d'
[all …]
/openbmc/openbmc/poky/meta/classes/
H A Dreport-error.bbclass12 def errorreport_getdata(e):
14 logpath = e.data.getVar('ERR_REPORT_DIR')
20 def errorreport_savedata(e, newdata, file):
23 logpath = e.data.getVar('ERR_REPORT_DIR')
29 def get_conf_data(e, filename):
30 builddir = e.data.getVar('TOPDIR')
42 def get_common_data(e):
44 data['machine'] = e.data.getVar("MACHINE")
45 data['build_sys'] = e.data.getVar("BUILD_SYS")
46 data['distro'] = e.data.getVar("DISTRO")
[all …]
/openbmc/rest-dbus/resources/
H A Djsrender.min.js3e){var t=(0,eval)("this"),n=t.jQuery;"function"==typeof define&&define.amd?define(e):"object"==typ… function
/openbmc/qemu/util/
H A Devent_notifier-posix.c24 * 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
47 e->rfd = e->wfd = ret; in event_notifier_init()
63 e->rfd = fds[0]; in event_notifier_init()
64 e->wfd = fds[1]; in event_notifier_init()
66 e->initialized = true; in event_notifier_init()
[all …]
/openbmc/qemu/scripts/tracetool/format/
H A Dh.py29 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:
45 name=e.original.name.upper(),
47 out('#define TRACE_%s_ENABLED %d' % (e.name.upper(), enabled))
51 for e in events:
[all …]
/openbmc/qemu/target/i386/
H A Dxsave_helper.c12 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()
52 e = &x86_ext_save_areas[XSTATE_YMM_BIT]; in x86_cpu_xsave_all_areas()
53 if (e->size && e->offset) { in x86_cpu_xsave_all_areas()
56 avx = buf + e->offset; in x86_cpu_xsave_all_areas()
66 e = &x86_ext_save_areas[XSTATE_BNDREGS_BIT]; in x86_cpu_xsave_all_areas()
67 if (e->size && e->offset) { in x86_cpu_xsave_all_areas()
75 bndreg = buf + e->offset; in x86_cpu_xsave_all_areas()
[all …]
/openbmc/u-boot/board/freescale/common/
H A Dsys_eeprom.c64 } e; variable
71 #define is_valid ((e.id[0] == 'N') || (e.id[1] == 'X') || \
72 (e.id[2] == 'I') || (e.id[3] == 'D'))
77 #define is_valid ((e.id[0] == 'C') || (e.id[1] == 'C') || \
78 (e.id[2] == 'I') || (e.id[3] == 'D'))
91 printf("ID: %c%c%c%c v%u\n", e.id[0], e.id[1], e.id[2], e.id[3], in show_eeprom()
92 be32_to_cpu(e.version)); in show_eeprom()
94 printf("ID: %c%c%c%c\n", e.id[0], e.id[1], e.id[2], e.id[3]); in show_eeprom()
98 printf("SN: %s\n", e.sn); in show_eeprom()
102 printf("Errata: %s\n", e.errata); in show_eeprom()
[all …]
/openbmc/qemu/tests/tcg/multiarch/
H A Dsha1.c74 uint32_t a, b, c, d, e; in SHA1Transform() local
95 e = state[4]; in SHA1Transform()
97 R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3); in SHA1Transform()
98 R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7); in SHA1Transform()
99 R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11); in SHA1Transform()
100 R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15); in SHA1Transform()
101 R1(e,a,b,c,d,16); R1(d,e,a,b,c,17); R1(c,d,e,a,b,18); R1(b,c,d,e,a,19); in SHA1Transform()
102 R2(a,b,c,d,e,20); R2(e,a,b,c,d,21); R2(d,e,a,b,c,22); R2(c,d,e,a,b,23); in SHA1Transform()
103 R2(b,c,d,e,a,24); R2(a,b,c,d,e,25); R2(e,a,b,c,d,26); R2(d,e,a,b,c,27); in SHA1Transform()
104 R2(c,d,e,a,b,28); R2(b,c,d,e,a,29); R2(a,b,c,d,e,30); R2(e,a,b,c,d,31); in SHA1Transform()
[all …]
/openbmc/sdbusplus/tools/sdbusplus/templates/
H A Dinterface.common.hpp.mako25 % for e in interface.enums:
26 enum class ${e.name}
28 % for v in e.values:
74 % for e in interface.enums:
82 static ${e.name} convert${e.name}FromString(const std::string& s);
89 static std::optional<${e.name}>
90 convertStringTo${e.name}(const std::string& s) noexcept;
93 * @param[in] e - The enum to convert to a string.
97 static std::string convert${e.name}ToString(${e.name} e);
101 % for e in interface.enums:
[all …]
/openbmc/u-boot/include/
H A Dansi.h11 #define ANSI_CURSOR_UP "\e[%dA"
12 #define ANSI_CURSOR_DOWN "\e[%dB"
13 #define ANSI_CURSOR_FORWARD "\e[%dC"
14 #define ANSI_CURSOR_BACK "\e[%dD"
15 #define ANSI_CURSOR_NEXTLINE "\e[%dE"
16 #define ANSI_CURSOR_PREVIOUSLINE "\e[%dF"
17 #define ANSI_CURSOR_COLUMN "\e[%dG"
18 #define ANSI_CURSOR_POSITION "\e[%d;%dH"
19 #define ANSI_CURSOR_SHOW "\e[?25h"
20 #define ANSI_CURSOR_HIDE "\e[?25l"
[all …]

12345678910>>...142