/openbmc/qemu/target/riscv/ |
H A D | vector_helper.c | 173 GEN_VEXT_LD_ELEM(lde_w, uint32_t, H4, ldl) in GEN_VEXT_LD_ELEM() 194 GEN_VEXT_ST_ELEM(ste_w, uint32_t, H4, stl) 516 GEN_VEXT_GET_INDEX_ADDR(idx_w, uint32_t, H4) in GEN_VEXT_GET_INDEX_ADDR() 883 RVVCALL(OPIVV2, vadd_vv_w, OP_SSS_W, H4, H4, H4, DO_ADD) 887 RVVCALL(OPIVV2, vsub_vv_w, OP_SSS_W, H4, H4, H4, DO_SUB) 902 RVVCALL(OPIVX2, vadd_vx_w, OP_SSS_W, H4, H4, DO_ADD) 906 RVVCALL(OPIVX2, vsub_vx_w, OP_SSS_W, H4, H4, DO_SUB) 910 RVVCALL(OPIVX2, vrsub_vx_w, OP_SSS_W, H4, H4, DO_RSUB) 980 RVVCALL(OPIVV2, vwaddu_vv_h, WOP_UUU_H, H4, H2, H2, DO_ADD) in RVVCALL() 981 RVVCALL(OPIVV2, vwaddu_vv_w, WOP_UUU_W, H8, H4, H4, DO_ADD) in RVVCALL() [all …]
|
H A D | vcrypto_helper.c | 67 RVVCALL(OPIVV2, vror_vv_w, OP_UUU_W, H4, H4, H4, ror32) in RVVCALL() 76 RVVCALL(OPIVX2, vror_vx_w, OP_UUU_W, H4, H4, ror32) in RVVCALL() 85 RVVCALL(OPIVV2, vrol_vv_w, OP_UUU_W, H4, H4, H4, rol32) in RVVCALL() 94 RVVCALL(OPIVX2, vrol_vx_w, OP_UUU_W, H4, H4, rol32) in RVVCALL() 115 RVVCALL(OPIVV1, vbrev8_v_w, OP_UU_W, H4, H4, brev8) in RVVCALL() 125 RVVCALL(OPIVV1, vrev8_v_w, OP_UU_W, H4, H4, bswap32) in RVVCALL() 135 RVVCALL(OPIVV2, vandn_vv_w, OP_UUU_W, H4, H4, H4, DO_ANDN) in RVVCALL() 144 RVVCALL(OPIVX2, vandn_vx_w, OP_UUU_W, H4, H4, DO_ANDN) in RVVCALL() 153 RVVCALL(OPIVV1, vbrev_v_w, OP_UU_W, H4, H4, revbit32) in RVVCALL() 162 RVVCALL(OPIVV1, vclz_v_w, OP_UU_W, H4, H4, clz32) in RVVCALL() [all …]
|
/openbmc/linux/drivers/bluetooth/ |
H A D | hci_h4.c | 43 struct h4_struct *h4; in h4_open() local 47 h4 = kzalloc(sizeof(*h4), GFP_KERNEL); in h4_open() 48 if (!h4) in h4_open() 51 skb_queue_head_init(&h4->txq); in h4_open() 53 hu->priv = h4; in h4_open() 60 struct h4_struct *h4 = hu->priv; in h4_flush() local 64 skb_queue_purge(&h4->txq); in h4_flush() 72 struct h4_struct *h4 = hu->priv; in h4_close() local 76 skb_queue_purge(&h4->txq); in h4_close() 78 kfree_skb(h4->rx_skb); in h4_close() [all …]
|
H A D | Kconfig | 125 bool "UART (H4) protocol support" 128 UART (H4) is serial protocol for communication between Bluetooth 132 Say Y here to compile support for HCI UART (H4) protocol. 135 tristate "UART Nokia H4+ protocol support" 143 Nokia H4+ is serial protocol for communication between Bluetooth 147 Say Y here to compile support for Nokia's H4+ protocol. 247 over serial port interface(H4) between controller and host.
|
/openbmc/linux/arch/x86/crypto/ |
H A D | poly1305-x86_64-cryptogams.pl | 419 my ($H0,$H1,$H2,$H3,$H4, $T0,$T1,$T2,$T3,$T4, $D0,$D1,$D2,$D3,$D4, $MASK) = 716 vmovd $h2#d,$H4 818 vmovd $h2#d,$H4 848 vmovd 4*4($ctx),$H4 970 # d4 = h4*r0 + h3*r1 + h2*r2 + h1*r3 + h0*r4 971 # d3 = h3*r0 + h2*r1 + h1*r2 + h0*r3 + h4*5*r4 972 # d2 = h2*r0 + h1*r1 + h0*r2 + h4*5*r3 + h3*5*r4 973 # d1 = h1*r0 + h0*r1 + h4*5*r2 + h3*5*r3 + h2*5*r4 974 # d0 = h0*r0 + h4*5*r1 + h3*5*r2 + h2*5*r3 + h1*5*r4 985 vpmuludq $T4,$D4,$D4 # d4 = h4*r0 [all …]
|
/openbmc/linux/lib/crypto/ |
H A D | poly1305-donna32.c | 38 u32 h0, h1, h2, h3, h4; in poly1305_core_blocks() local 62 h4 = state->h[4]; in poly1305_core_blocks() 70 h4 += (get_unaligned_le32(&input[12]) >> 8) | hibit; in poly1305_core_blocks() 75 ((u64)h4 * s1); in poly1305_core_blocks() 78 ((u64)h4 * s2); in poly1305_core_blocks() 81 ((u64)h4 * s3); in poly1305_core_blocks() 84 ((u64)h4 * s4); in poly1305_core_blocks() 87 ((u64)h4 * r0); in poly1305_core_blocks() 103 h4 = (u32)d4 & 0x3ffffff; in poly1305_core_blocks() 116 state->h[4] = h4; in poly1305_core_blocks() [all …]
|
/openbmc/linux/arch/arm/crypto/ |
H A D | poly1305-armv4.pl | 178 my ($h0,$h1,$h2,$h3,$h4,$r0,$r1,$r2,$r3)=map("r$_",(4..12)); 201 ldmia $ctx!,{$h0-$h4} @ load hash value 211 adcs $r3,$r3,$h4,lsl#8 215 adc $len,$len,$h4,lsr#24 224 movne $h4,$len 241 addhi $h4,$h4,#1 @ 1<<128 280 addhi $h4,$h4,#1 @ padbit 301 adc $h4,$h4,#0 303 umlal r2,r3,$h4,$s1 312 mul r0,$s2,$h4 [all …]
|
/openbmc/qemu/target/arm/tcg/ |
H A D | vec_helper.c | 554 int32_t *d = vd, *n = vn, *m = (int32_t *)vm + H4(idx); in HELPER() 572 int32_t *d = vd, *n = vn, *m = (int32_t *)vm + H4(idx); in HELPER() 590 int32_t *d = vd, *n = vn, *m = (int32_t *)vm + H4(idx); in HELPER() 608 int32_t *d = vd, *n = vn, *m = (int32_t *)vm + H4(idx); in HELPER() 671 int32_t *d = vd, *n = vn, *m = (int32_t *)vm + H4(idx); in HELPER() 686 int32_t *d = vd, *n = vn, *m = (int32_t *)vm + H4(idx); in HELPER() 868 DO_DOT_IDX(gvec_sdot_idx_b, int32_t, int8_t, int8_t, H4) 869 DO_DOT_IDX(gvec_udot_idx_b, uint32_t, uint8_t, uint8_t, H4) 870 DO_DOT_IDX(gvec_sudot_idx_b, int32_t, int8_t, uint8_t, H4) 871 DO_DOT_IDX(gvec_usdot_idx_b, int32_t, uint8_t, int8_t, H4) [all …]
|
/openbmc/linux/tools/testing/selftests/net/forwarding/ |
H A D | mirror_gre_lag_lacp.sh | 36 # | + $h3 + $h4 H3 | 106 team_create lag2 lacp $h3 $h4 118 ip link set dev $h4 down 126 tc qdisc add dev $h4 clsact 133 tc qdisc del dev $h4 clsact 182 h4=${NETIFS[p6]} 193 trap_install $h4 ingress 200 trap_uninstall $h4 ingress 235 mirror_test vrf-h1 192.0.2.1 192.0.2.18 $h4 1 0 251 test_lag_slave $h3 $h4 "mirror to gretap: LAG first slave" [all …]
|
H A D | mirror_gre_bridge_1q_lag.sh | 42 # | + $h3 H3 | | + $h4 H4 | 120 simple_if_init $h4 192.0.2.130/28 121 tc qdisc add dev $h4 clsact 126 tc qdisc del dev $h4 clsact 127 simple_if_fini $h4 192.0.2.130/28 184 h4=${NETIFS[p6]} 198 trap_install $h4 ingress 205 trap_uninstall $h4 ingress 248 mirror_test vrf-h1 192.0.2.1 192.0.2.18 $h4 1 0 265 test_lag_slave $h4 $swp4 $swp3 "mirror to gretap: LAG second slave"
|
H A D | router_bridge_lag.sh | 12 # | + $h1 + $h4 | | + $h2 + $h3 | 89 ip link set dev $h4 master lag1 92 ip link set dev $h4 up 101 ip link set dev $h4 down 104 ip link set dev $h4 nomaster 279 h4=${NETIFS[p7]}
|
H A D | router_bridge_1d_lag.sh | 16 # | + $h1 + $h4 | 121 ip link set dev $h4 master lag1 124 ip link set dev $h4 up 147 ip link set dev $h4 down 150 ip link set dev $h4 nomaster 362 h4=${NETIFS[p7]}
|
/openbmc/linux/arch/mips/crypto/ |
H A D | poly1305-mips.pl | 733 my ($h0,$h1,$h2,$h3,$h4, $r0,$r1,$r2,$r3, $rs1,$rs2,$rs3) = 781 lw $h4,16($ctx) 893 srl $t0,$h4,2 # modulo-scheduled reduction 894 andi $h4,$h4,3 926 addu $h4,$h4,$padbit 928 addu $h4,$h4,$h3 936 maddu $rs1,$h4 # h4*s1 945 maddu $rs2,$h4 # h4*s2 950 mul $t0,$r0,$h4 # h4*r0 956 maddu $rs3,$h4 # h4*s3 [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/templates/ |
H A D | newcustomimage_modal.html | 30 <h4>Which image do you want to customise?</h4> 36 <h4>Name your custom image</h4>
|
H A D | configvars.html | 95 <h4>{{variable.variable_name}} value is:</h4> 100 <h4>{{variable.variable_name}} value is:</h4> 114 <h4>The value was set in the following configuration files:</h4>
|
H A D | project.html | 31 <h4>Are you sure you want to delete this project?</h4> 101 <h4>You haven't built any recipes yet</h4> 137 <h4>This project has no layers</h4>
|
H A D | project_specific.html | 31 <h4>Are you sure you want to delete this project?</h4> 100 <h4>You haven't built any recipes yet</h4> 135 <h4>This project has no layers</h4>
|
/openbmc/openbmc/poky/contrib/artwork/ |
H A D | oe.svg | 19 …c0-1.356,0.838-2.195,2.194-2.195c1.357,0,2.195,0.839,2.195,2.195v5.405h4.139c3.472,0,5.993,2.658,5… 20 …M113.174,145.056v10.812h4.139c0.903,0,1.604-0.701,1.604-1.605v-7.601c0-0.927-0.678-1.604-1.605-1.6… 26 …<path fill="#00BCE4" d="M143.688,143.646c1.129-1.972,2.906-2.98,5.201-2.981h4.139v-5.405c0-1.356,0… 29 c-0.307,0.309-0.457,0.665-0.457,1.129v7.601c0,0.878,0.727,1.605,1.605,1.605h4.139v-10.812h-4.139 31 …<path fill="#00BCE4" d="M160.917,143.646c1.129-1.972,2.905-2.98,5.201-2.981h4.139v-5.405c0-1.356,0… 34 c-0.308,0.309-0.457,0.665-0.457,1.129v7.601c0,0.878,0.727,1.605,1.605,1.605h4.139v-10.812h-4.139 41 …<path fill="#00BCE4" d="M195.374,143.646c1.129-1.972,2.905-2.98,5.2-2.981h4.139v-5.405c0-1.356,0.8… 44 c-0.308,0.309-0.457,0.665-0.457,1.129v7.601c0,0.878,0.727,1.605,1.605,1.605h4.138v-10.812h-4.138 50 …s-2.195-0.839-2.195-2.195V142.86C17.228,141.503,18.066,140.665,19.423,140.665z M21.619,155.867h4.1…
|
/openbmc/phosphor-webui/app/common/styles/base/ |
H A D | typography.scss | 17 h4, 43 h4, 44 .h4 {
|
/openbmc/linux/tools/testing/selftests/drivers/net/mlxsw/ |
H A D | tc_sample.sh | 29 # | H2 (vrf) | | H4 (vrf) | 110 ip link set dev $h4 down 111 ip link add name ${h4}_bond type bond mode 802.3ad 112 ip link set dev $h4 master ${h4}_bond 114 simple_if_init ${h4}_bond 198.51.100.17/28 116 ip -4 route add default vrf v${h4}_bond nexthop via 198.51.100.18 121 ip -4 route del default vrf v${h4}_bond nexthop via 198.51.100.18 123 simple_if_fini ${h4}_bond 198.51.100.17/28 125 ip link set dev $h4 nomaster 126 ip link del dev ${h4}_bond [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/net/ |
H A D | nokia-bluetooth.txt | 5 vendors and modified device API. Those devices speak a protocol named H4+ 6 (also known as h4p) by Nokia, which is similar to the H4 protocol from the 7 Bluetooth standard. In addition to the H4 protocol it specifies two more
|
/openbmc/linux/arch/arm64/crypto/ |
H A D | poly1305-armv8.pl | 266 my ($H0,$H1,$H2,$H3,$H4) = map("v$_.2s",(24..28)); 439 fmov ${H4},x14 469 fmov ${H4},x14 563 // d4 = h0*r4 + h1*r3 + h2*r2 + h3*r1 + h4*r0 564 // d3 = h0*r3 + h1*r2 + h2*r1 + h3*r0 + h4*5*r4 565 // d2 = h0*r2 + h1*r1 + h2*r0 + h3*5*r4 + h4*5*r3 566 // d1 = h0*r1 + h1*r0 + h2*5*r4 + h3*5*r3 + h4*5*r2 567 // d0 = h0*r0 + h1*5*r4 + h2*5*r3 + h3*5*r2 + h4*5*r1 674 add $IN01_4,$IN01_4,$H4 709 add $ACC4,$ACC4,$T0.2d // h3 -> h4 [all …]
|
/openbmc/qemu/target/s390x/tcg/ |
H A D | vec.h | 44 #define H4(x) ((x) ^ 1) macro 48 #define H4(x) (x) macro 66 return v->word[H4(enr)]; in s390_vec_read_element32() 110 v->word[H4(enr)] = data; in s390_vec_write_element32()
|
/openbmc/webui-vue/src/assets/styles/bmc/custom/ |
H A D | _base.scss | 31 h4, 32 .h4 {
|
/openbmc/openbmc/poky/scripts/lib/build_perf/html/ |
H A D | report.html | 92 h4 { 170 <h4>The table provides an overview of the comparison between two selected commits from the same branch.</h4> 193 <h4>The test summary presents a thorough breakdown of each test conducted on the branch, including details such as build time and disk space consumption. Additionally, it gives insights into the average time taken for test execution, along with absolute and relative values for a better understanding.</h4> 237 <h4>The following section provides details of each test, accompanied by charts representing build time and disk usage over time or by commit number.</h4>
|