| /openbmc/slpd-lite/test/ |
| H A D | test-suite.py | 16 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/openbmc/poky/bitbake/lib/bs4/ |
| H A D | dammit.py | 462 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/libcper/ |
| H A D | parse_example.py | 10 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/backends/ |
| H A D | vhost-user.c | 24 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/qemu/target/arm/tcg/ |
| H A D | arith_helper.c | 24 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/phosphor-bmc-code-mgmt/test/create_package/ |
| H A D | component_image_info_area.cpp | 12 uint8_t* b, ssize_t i, size_t component_image_size, in create_pldm_component_image_info_area_v1_0_0() argument 16 b[i++] = 0x1; in create_pldm_component_image_info_area_v1_0_0() 17 b[i++] = 0x0; in create_pldm_component_image_info_area_v1_0_0() 23 b[i++] = 0x1; // this is vendor selected value in create_pldm_component_image_info_area_v1_0_0() 24 b[i++] = 0x0; in create_pldm_component_image_info_area_v1_0_0() 27 b[i++] = 0x1; // this is vendor selected value in create_pldm_component_image_info_area_v1_0_0() 28 b[i++] = 0x0; in create_pldm_component_image_info_area_v1_0_0() 31 b[i++] = 0xff; in create_pldm_component_image_info_area_v1_0_0() 32 b[i++] = 0xff; in create_pldm_component_image_info_area_v1_0_0() 33 b[i++] = 0xff; in create_pldm_component_image_info_area_v1_0_0() [all …]
|
| H A D | firmware_device_id_area.cpp | 10 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/openbmc/poky/meta/recipes-extended/shadow/files/ |
| H A D | login_defs_pam.sed | 1 /^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/sdbusplus/test/message/ |
| H A D | call.cpp | 23 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 31 auto ret = newBusIdReq(b).call().unpack<std::string>(); 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/bitbake/lib/toaster/toastergui/static/js/ |
| H A D | ui-bootstrap-tpls-0.11.0.js | 8 …b,c){function d(a){for(var b in a)if(void 0!==f.style[b])return a[b]}var e=function(d,f,g){g=g||{}… argument 9 …b,function(a,b){return(b?c:"")+a.toLowerCase()})}var b={placement:"top",animation:!0,popupDelay:0}… argument
|
| H A D | ui-bootstrap-tpls-0.11.0.min.js | 8 …b,c){function d(a){for(var b in a)if(void 0!==f.style[b])return a[b]}var e=function(d,f,g){g=g||{}… argument 9 …b,function(a,b){return(b?c:"")+a.toLowerCase()})}var b={placement:"top",animation:!0,popupDelay:0}… argument
|
| H A D | highlight.pack.js | 2 …b="\\b("+a.bK.split(" ").join("|")+")\\b"),a.b||(a.b=/\B|\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\B|\b/)… property in AnonymousFunctioneac6a71812c00.t
|
| /openbmc/qemu/include/qemu/ |
| H A D | int128.h | 72 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 D | jhash.h | 34 #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; \ 45 #define __jhash_final(a, b, c) \ argument 47 c ^= b; c -= rol32(b, 14); \ 49 b ^= a; b -= rol32(a, 25); \ [all …]
|
| /openbmc/rest-dbus/resources/ |
| H A D | jquery.min.js | 2 …b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):func… argument 4 …b,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 5 …b,c,d,e)}m.Tween=Za,Za.prototype={constructor:Za,init:function(a,b,c,d,e,f){this.elem=a,this.prop=… argument
|
| /openbmc/u-boot/drivers/usb/musb/ |
| H A D | musb_debug.h | 14 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/qemu/target/mips/tcg/ |
| H A D | msa_helper.c | 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() 111 pwd->b[7] = msa_nloc_df(DF_BYTE, pws->b[7]); in helper_msa_nloc_b() 112 pwd->b[8] = msa_nloc_df(DF_BYTE, pws->b[8]); in helper_msa_nloc_b() 113 pwd->b[9] = msa_nloc_df(DF_BYTE, pws->b[9]); in helper_msa_nloc_b() [all …]
|
| /openbmc/qemu/target/loongarch/ |
| H A D | vec.h | 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 42 #define DO_MADD(a, b, c) (a + b * c) argument 43 #define DO_MSUB(a, b, c) (a - b * c) argument [all …]
|
| /openbmc/qemu/include/ui/ |
| H A D | pixel_ops.h | 2 unsigned int b) in rgb_to_pixel8() argument 4 return ((r >> 5) << 5) | ((g >> 5) << 2) | (b >> 6); in rgb_to_pixel8() 8 unsigned int b) in rgb_to_pixel15() argument 10 return ((r >> 3) << 10) | ((g >> 3) << 5) | (b >> 3); in rgb_to_pixel15() 14 unsigned int b) in rgb_to_pixel15bgr() argument 16 return ((b >> 3) << 10) | ((g >> 3) << 5) | (r >> 3); in rgb_to_pixel15bgr() 20 unsigned int b) in rgb_to_pixel16() argument 22 return ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3); in rgb_to_pixel16() 26 unsigned int b) in rgb_to_pixel16bgr() argument 28 return ((b >> 3) << 11) | ((g >> 2) << 5) | (r >> 3); in rgb_to_pixel16bgr() [all …]
|
| /openbmc/openbmc/meta-ibm/recipes-phosphor/chassis/power-workarounds/witherspoon/ |
| H A D | power-workarounds.sh | 5 i2cset -y 4 0x70 0x00 0x01 b 6 i2cset -y 4 0x70 0x02 0x16 b #respond to ENABLE pin 7 i2cset -y 4 0x70 0x00 0x00 b 9 i2cset -y 5 0x70 0x00 0x01 b 10 i2cset -y 5 0x70 0x02 0x16 b #respond to ENABLE pin 11 i2cset -y 5 0x70 0x00 0x00 b 14 i2cset -y 4 0x12 0xFF 0x00 b # VDD/VCS 0 15 i2cset -y 4 0x12 0x2E 0x03 b # VDD/VCS 0 16 i2cset -y 4 0x13 0xFF 0x00 b # VDN 0 17 i2cset -y 4 0x13 0x2E 0x03 b # VDN 0 [all …]
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/Certificates/ |
| H A D | ModalGenerateCsr.vue | 3 <b-modal 14 <b-form id="generate-csr-form" novalidate> 15 <b-container fluid> 16 <b-row> 17 <b-col lg="9"> 18 <b-row> 19 <b-col lg="6"> 20 <b-form-group 24 <b-form-select 33 <b-form-select-option :value="null" disabled> [all …]
|
| /openbmc/qemu/tests/tcg/multiarch/ |
| H A D | sha1.c | 74 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 …]
|
| /openbmc/u-boot/arch/powerpc/include/asm/ |
| H A D | pci_io.h | 27 #define pci_readb(addr,b) ((b) = *(volatile u8 *) (addr)) argument 28 #define pci_writeb(b,addr) ((*(volatile u8 *) (addr)) = (b)) argument 31 #define pci_readw(addr,b) ((b) = *(volatile u16 *) (addr)) argument 32 #define pci_readl(addr,b) ((b) = *(volatile u32 *) (addr)) argument 33 #define pci_writew(b,addr) ((*(volatile u16 *) (addr)) = (b)) argument 34 #define pci_writel(b,addr) ((*(volatile u32 *) (addr)) = (b)) argument 36 #define pci_readw(addr,b) pci_read_le16((volatile u16 *)(addr),(b)) argument 37 #define pci_readl(addr,b) pci_read_le32((volatile u32 *)(addr),(b)) argument 38 #define pci_writew(b,addr) pci_write_le16((volatile u16 *)(addr),(b)) argument 39 #define pci_writel(b,addr) pci_write_le32((volatile u32 *)(addr),(b)) argument
|
| /openbmc/ipmitool/src/plugins/lan/ |
| H A D | md5.c | 135 a = pms->abcd[0], b = pms->abcd[1], in md5_process() local 203 #define SET(a, b, c, d, k, s, Ti)\ in md5_process() argument 204 t = a + F(b,c,d) + X[k] + Ti;\ in md5_process() 205 a = ROTATE_LEFT(t, s) + b in md5_process() 207 SET(a, b, c, d, 0, 7, T1); in md5_process() 208 SET(d, a, b, c, 1, 12, T2); in md5_process() 209 SET(c, d, a, b, 2, 17, T3); in md5_process() 210 SET(b, c, d, a, 3, 22, T4); in md5_process() 211 SET(a, b, c, d, 4, 7, T5); in md5_process() 212 SET(d, a, b, c, 5, 12, T6); in md5_process() [all …]
|
| /openbmc/openbmc/poky/meta/recipes-connectivity/avahi/files/ |
| H A D | local-ping.patch | 27 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; 34 …b = 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 …]
|