Home
last modified time | relevance | path

Searched full:b (Results 1 – 25 of 5179) sorted by relevance

12345678910>>...208

/openbmc/slpd-lite/test/
H A Dtest-suite.py16 b"\x02" # Version
17 + b"\x09" # Function ID: SRVTYPERQST
18 + b"\x00" * 2 # Ignored Length bytes?
19 + b"\xff" # Length
20 + b"\x00" * 2 # Flags
21 + b"\x00" * 3 # Ext
22 + b"\x00" * 2 # XID
23 + b"\xff" * 2 # Language Tag Length
24 + b"A" * 65000 # Language Tag
32 b"\x02" # Version
[all …]
/openbmc/qemu/tests/tcg/s390x/
H A Dvfminmax.c56 …", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", "Xi: T(b*)"},
57 …{/* -Fn */ "T(b)", "T(M(a,b))", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", …
58 …{/* -0 */ "T(b)", "T(b)", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", …
59 …{/* +0 */ "T(b)", "T(b)", "T(b)", "T(a)", "T(a)", "T(a)", "T(a)", …
60 …{/* +Fn */ "T(b)", "T(b)", "T(b)", "T(b)", "T(M(a,b))", "T(a)", "T(a)", …
61 …{/* +inf */ "T(b)", "T(b)", "T(b)", "T(b)", "T(b)", "T(a)", "T(a)", …
62 …{/* QNaN */ "T(b)", "T(b)", "T(b)", "T(b)", "T(b)", "T(b)", "T(a)", …
72 …{/* -inf */ "T(b)", "T(a)", "T(a)", "T(a)", "T(a)", "T(a)", "T(b)", …
73 …{/* -Fn */ "T(b)", "T(M(a,b))", "T(a)", "T(a)", "T(a)", "T(a)", "T(b)", …
74 …{/* -0 */ "T(b)", "T(b)", "T(b)", "T(a)", "T(a)", "T(a)", "T(b)", …
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/shadow/files/
H A Dlogin_defs_pam.sed1 /^FAILLOG_ENAB/b comment
2 /^LASTLOG_ENAB/b comment
3 /^MAIL_CHECK_ENAB/b comment
4 /^OBSCURE_CHECKS_ENAB/b comment
5 /^PORTTIME_CHECKS_ENAB/b comment
6 /^QUOTAS_ENAB/b comment
7 /^MOTD_FILE/b comment
8 /^FTMP_FILE/b comment
9 /^NOLOGINS_FILE/b comment
10 /^ENV_HZ/b comment
[all …]
/openbmc/openbmc/poky/bitbake/lib/bs4/
H A Ddammit.py462 if (len(data) >= 4) and (data[:2] == b'\xfe\xff') \
466 elif (len(data) >= 4) and (data[:2] == b'\xff\xfe') \
470 elif data[:3] == b'\xef\xbb\xbf':
473 elif data[:4] == b'\x00\x00\xfe\xff':
476 elif data[:4] == b'\xff\xfe\x00\x00':
660 smart_quotes_re = b"([\x80-\x9f])"
722 MS_CHARS = {b'\x80': ('euro', '20AC'),
723 b'\x81': ' ',
724 b'\x82': ('sbquo', '201A'),
725 b'\x83': ('fnof', '192'),
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/Certificates/
H A DModalGenerateCsr.vue3 <b-modal
13 <b-form id="generate-csr-form" novalidate>
14 <b-container fluid>
15 <b-row>
16 <b-col lg="9">
17 <b-row>
18 <b-col lg="6">
19 <b-form-group
23 <b-form-select
32 <b-form-select-option :value="null" disabled>
[all …]
/openbmc/qemu/include/qemu/
H A Dint128.h72 static inline Int128 int128_and(Int128 a, Int128 b) in int128_and() argument
74 return a & b; in int128_and()
77 static inline Int128 int128_or(Int128 a, Int128 b) in int128_or() argument
79 return a | b; in int128_or()
82 static inline Int128 int128_xor(Int128 a, Int128 b) in int128_xor() argument
84 return a ^ b; in int128_xor()
102 static inline Int128 int128_add(Int128 a, Int128 b) in int128_add() argument
104 return a + b; in int128_add()
112 static inline Int128 int128_sub(Int128 a, Int128 b) in int128_sub() argument
114 return a - b; in int128_sub()
[all …]
H A Djhash.h34 #define __jhash_mix(a, b, c) \ argument
36 a -= c; a ^= rol32(c, 4); c += b; \
37 b -= a; b ^= rol32(a, 6); a += c; \
38 c -= b; c ^= rol32(b, 8); b += a; \
39 a -= c; a ^= rol32(c, 16); c += b; \
40 b -= a; b ^= rol32(a, 19); a += c; \
41 c -= b; c ^= rol32(b, 4); b += a; \
44 /* __jhash_final - final mixing of 3 32-bit values (a,b,c) into c */
45 #define __jhash_final(a, b, c) \ argument
47 c ^= b; c -= rol32(b, 14); \
[all …]
/openbmc/qemu/target/arm/tcg/
H A Darith_helper.c24 static inline uint16_t add16_sat(uint16_t a, uint16_t b) in add16_sat() argument
28 res = a + b; in add16_sat()
29 if (((res ^ a) & 0x8000) && !((a ^ b) & 0x8000)) { in add16_sat()
40 static inline uint8_t add8_sat(uint8_t a, uint8_t b) in add8_sat() argument
44 res = a + b; in add8_sat()
45 if (((res ^ a) & 0x80) && !((a ^ b) & 0x80)) { in add8_sat()
56 static inline uint16_t sub16_sat(uint16_t a, uint16_t b) in sub16_sat() argument
60 res = a - b; in sub16_sat()
61 if (((res ^ a) & 0x8000) && ((a ^ b) & 0x8000)) { in sub16_sat()
72 static inline uint8_t sub8_sat(uint8_t a, uint8_t b) in sub8_sat() argument
[all …]
/openbmc/qemu/backends/
H A Dvhost-user.c24 vhost_user_backend_dev_init(VhostUserBackend *b, VirtIODevice *vdev, in vhost_user_backend_dev_init() argument
29 assert(!b->vdev && vdev); in vhost_user_backend_dev_init()
31 if (!vhost_user_init(&b->vhost_user, &b->chr, errp)) { in vhost_user_backend_dev_init()
35 b->vdev = vdev; in vhost_user_backend_dev_init()
36 b->dev.nvqs = nvqs; in vhost_user_backend_dev_init()
37 b->dev.vqs = g_new0(struct vhost_virtqueue, nvqs); in vhost_user_backend_dev_init()
39 ret = vhost_dev_init(&b->dev, &b->vhost_user, VHOST_BACKEND_TYPE_USER, 0, in vhost_user_backend_dev_init()
49 vhost_user_backend_start(VhostUserBackend *b) in vhost_user_backend_start() argument
51 BusState *qbus = BUS(qdev_get_parent_bus(DEVICE(b->vdev))); in vhost_user_backend_start()
55 if (b->started) { in vhost_user_backend_start()
[all …]
/openbmc/sdbusplus/test/message/
H A Dcall.cpp23 message newBusIdReq(bus_t& b) in newBusIdReq() argument
25 return b.new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", in newBusIdReq()
29 std::string syncBusId(bus_t& b) in syncBusId() argument
32 newBusIdReq(b).call().read(ret); in syncBusId()
38 auto b = bus::new_default(); in TEST() local
40 while (b.process_discard()) in TEST()
42 auto slot = newBusIdReq(b).call_async(setGlobalId); in TEST()
43 b.wait(1s); in TEST()
44 b.process_discard(); in TEST()
45 EXPECT_EQ(syncBusId(b), globalId); in TEST()
[all …]
/openbmc/openbmc/poky/meta/recipes-connectivity/avahi/files/
H A Dlocal-ping.patch27 diff --git a/avahi-core/browse-dns-server.c b/avahi-core/browse-dns-server.c
30 +++ b/avahi-core/browse-dns-server.c
32 AvahiSDNSServerBrowser* b;
34b = avahi_s_dns_server_browser_prepare(server, interface, protocol, domain, type, aprotocol, flags…
35 + if (!b)
38 avahi_s_dns_server_browser_start(b);
40 return b;
44 diff --git a/avahi-core/browse-domain.c b/avahi-core/browse-domain.c
47 +++ b/avahi-core/browse-domain.c
49 AvahiSDomainBrowser *b;
[all …]
/openbmc/rest-dbus/resources/
H A Djquery.min.js2b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):func… function
4b,d,e){if(m.acceptData(a)){var f,g,h=m.expando,i=a.nodeType,j=i?m.cache:a,k=i?a[h]:a[h]&&h;if(k&&j… argument
5b,c,d,e)}m.Tween=Za,Za.prototype={constructor:Za,init:function(a,b,c,d,e,f){this.elem=a,this.prop=… argument
H A Djstree.min.js2b){"use strict";a.jstree;var c=0,d=!1,e=!1,f=!1,g=[],h=a("script:last").attr("src"),i=window.docum… argument
3b.children(".jstree-children")[0]),r=b.children(".jstree-anchor")[0]===i.activeElement,b.remove();… argument
4b,this.element.addClass("jstree-"+b),this.element[this.settings.core.themes.responsive?"addClass":… argument
5b.target).closest(".jstree-node")[0]!==b.currentTarget)return!0;if("touchstart"===b.type&&(!this.s… argument
/openbmc/qemu/target/loongarch/
H A Dvec.h12 #define B(x) B[(x) ^ 15] macro
22 #define B(x) B[x] macro
33 #define DO_ADD(a, b) (a + b) argument
34 #define DO_SUB(a, b) (a - b) argument
35 #define DO_VAVG(a, b) ((a >> 1) + (b >> 1) + (a & b & 1)) argument
36 #define DO_VAVGR(a, b) ((a >> 1) + (b >> 1) + ((a | b) & 1)) argument
37 #define DO_VABSD(a, b) ((a > b) ? (a -b) : (b-a)) argument
39 #define DO_MIN(a, b) (a < b ? a : b) argument
40 #define DO_MAX(a, b) (a > b ? a : b) argument
41 #define DO_MUL(a, b) (a * b) argument
[all …]
/openbmc/webui-vue/docs/guide/components/buttons/
H A Dindex.md22 <b-button variant="primary">Primary</b-button>
23 <b-button variant="primary">
26 </b-button>
27 <b-button variant="secondary">Secondary</b-button>
28 <b-button variant="danger">Danger</b-button>
29 <b-button variant="link">Link Button</b-button>
30 <b-button variant="link">
33 </b-button>
34 <b-button variant="link" title="Delete" class="btn-icon-only">
36 </b-button>
[all …]
/openbmc/u-boot/drivers/usb/musb/
H A Dmusb_debug.h14 static inline void musb_print_pwr(u8 b) in musb_print_pwr() argument
16 serial_printf("\tpower 0x%2.2x\n", b); in musb_print_pwr()
17 MUSB_FLAGS_PRINT(b, POWER, ISOUPDATE); in musb_print_pwr()
18 MUSB_FLAGS_PRINT(b, POWER, SOFTCONN); in musb_print_pwr()
19 MUSB_FLAGS_PRINT(b, POWER, HSENAB); in musb_print_pwr()
20 MUSB_FLAGS_PRINT(b, POWER, HSMODE); in musb_print_pwr()
21 MUSB_FLAGS_PRINT(b, POWER, RESET); in musb_print_pwr()
22 MUSB_FLAGS_PRINT(b, POWER, RESUME); in musb_print_pwr()
23 MUSB_FLAGS_PRINT(b, POWER, SUSPENDM); in musb_print_pwr()
24 MUSB_FLAGS_PRINT(b, POWER, ENSUSPEND); in musb_print_pwr()
[all …]
/openbmc/phosphor-bmc-code-mgmt/test/create_package/
H A Dcomponent_image_info_area.cpp10 uint8_t* b, ssize_t i, size_t component_image_size, in create_pldm_component_image_info_area_v1_0_0() argument
14 b[i++] = 0x1; in create_pldm_component_image_info_area_v1_0_0()
15 b[i++] = 0x0; in create_pldm_component_image_info_area_v1_0_0()
21 b[i++] = 0x1; // this is vendor selected value in create_pldm_component_image_info_area_v1_0_0()
22 b[i++] = 0x0; in create_pldm_component_image_info_area_v1_0_0()
25 b[i++] = 0x1; // this is vendor selected value in create_pldm_component_image_info_area_v1_0_0()
26 b[i++] = 0x0; in create_pldm_component_image_info_area_v1_0_0()
29 b[i++] = 0xff; in create_pldm_component_image_info_area_v1_0_0()
30 b[i++] = 0xff; in create_pldm_component_image_info_area_v1_0_0()
31 b[i++] = 0xff; in create_pldm_component_image_info_area_v1_0_0()
[all …]
H A Dfirmware_device_id_area.cpp10 uint8_t* b, ssize_t i, uint16_t descType, std::vector<uint8_t>& data) in create_pldm_firmware_device_descriptor_v1_0_0() argument
13 b[i++] = (descType >> 0) & 0xff; in create_pldm_firmware_device_descriptor_v1_0_0()
14 b[i++] = (descType >> 8) & 0xff; in create_pldm_firmware_device_descriptor_v1_0_0()
17 b[i++] = (data.size() >> 0) & 0xff; in create_pldm_firmware_device_descriptor_v1_0_0()
18 b[i++] = (data.size() >> 8) & 0xff; in create_pldm_firmware_device_descriptor_v1_0_0()
23 b[i++] = v; in create_pldm_firmware_device_descriptor_v1_0_0()
30 uint8_t* b, ssize_t i, std::vector<uint8_t>& data) in create_pldm_firmware_device_vendor_defined_descriptor_v1_0_0() argument
35 b[i++] = (descType >> 0) & 0xff; in create_pldm_firmware_device_vendor_defined_descriptor_v1_0_0()
36 b[i++] = (descType >> 8) & 0xff; in create_pldm_firmware_device_vendor_defined_descriptor_v1_0_0()
40 b[i++] = (length >> 0) & 0xff; in create_pldm_firmware_device_vendor_defined_descriptor_v1_0_0()
[all …]
/openbmc/libcper/
H A Dparse_example.py10 b"\x43\x50\x45\x52\x01\x01\xff\xff\xff\xff\x01\x00\x03"
11 b"\x00\x00\x00\x00\x00\x00\x00\x28\x01\x00\x00\x00\x00"
12 b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
13 b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
14 b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78"
15 b"\xe4\x01\xa9\x73\x11\xef\x11\x96\xa8\x5f\xa6\xbe\xf5"
16 b"\xee\xa4\xac\xd5\xa9\x09\x04\x52\x14\x42\x96\xe5\x94"
17 b"\x99\x2e\x75\x2b\xcd\x00\x00\x00\x00\x00\x00\x00\x00"
18 b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
19 b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc8\x00"
[all …]
/openbmc/qemu/target/mips/tcg/
H A Dmsa_helper.c58 * | NLOC.B | Vector Leading Ones Count (byte) |
62 * | NLZC.B | Vector Leading Zeros Count (byte) |
66 * | PCNT.B | Vector Population Count (byte) |
104 pwd->b[0] = msa_nloc_df(DF_BYTE, pws->b[0]); in helper_msa_nloc_b()
105 pwd->b[1] = msa_nloc_df(DF_BYTE, pws->b[1]); in helper_msa_nloc_b()
106 pwd->b[2] = msa_nloc_df(DF_BYTE, pws->b[2]); in helper_msa_nloc_b()
107 pwd->b[3] = msa_nloc_df(DF_BYTE, pws->b[3]); in helper_msa_nloc_b()
108 pwd->b[4] = msa_nloc_df(DF_BYTE, pws->b[4]); in helper_msa_nloc_b()
109 pwd->b[5] = msa_nloc_df(DF_BYTE, pws->b[5]); in helper_msa_nloc_b()
110 pwd->b[6] = msa_nloc_df(DF_BYTE, pws->b[6]); in helper_msa_nloc_b()
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/Ldap/
H A DLdap.vue2 <b-container fluid="xl">
5 <b-form novalidate @submit.prevent="handleSubmit">
6 <b-row>
7 <b-col>
8 <b-form-group
13 <b-form-checkbox
19 </b-form-checkbox>
20 </b-form-group>
21 </b-col>
22 </b-row>
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dhighlight.pack.js2B.exec(o))return w(t[1])?t[1]:"no-highlight";for(o=o.split(/\s+/),n=0,r=o.length;r>n;n++)if(i=o[n]… property in AnonymousFunctioneac6a71813b00.AnonymousClasseac6a71814301
/openbmc/webui-vue/src/views/Operations/KeyClear/
H A DKeyClear.vue2 <b-container fluid="xl">
4 <b-row>
5 <b-col md="8" xl="6">
14 </b-col>
15 </b-row>
17 <b-form id="key-clear" @submit.prevent="onKeyClearSubmit(keyOption)">
18 <b-row>
19 <b-col md="8">
20 <b-form-group :label="$t('pageKeyClear.form.keyClearOptionsLabel')">
21 <b-form-radio-group
[all …]
/openbmc/u-boot/arch/arc/lib/
H A Dlibgcc2.c9 __ashldi3(DWtype u, shift_count_type b) in __ashldi3() argument
11 if (b == 0) in __ashldi3()
15 const shift_count_type bm = W_TYPE_SIZE - b; in __ashldi3()
24 w.s.low = (UWtype)uu.s.low << b; in __ashldi3()
25 w.s.high = ((UWtype)uu.s.high << b) | carries; in __ashldi3()
32 __ashrdi3(DWtype u, shift_count_type b) in __ashrdi3() argument
34 if (b == 0) in __ashrdi3()
38 const shift_count_type bm = W_TYPE_SIZE - b; in __ashrdi3()
48 w.s.high = uu.s.high >> b; in __ashrdi3()
49 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __ashrdi3()
[all …]
/openbmc/qemu/tests/tcg/multiarch/
H A Dsha1.c74 uint32_t a, b, c, d, e; in SHA1Transform() local
92 b = state[1]; 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 …]

12345678910>>...208