| /freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
| H A D | LoongArchLASXInstrFormats.td | 13 // xd/rd/cd - destination register operand. 20 // <opcode | I13 | xd> 25 bits<5> xd; 29 let Inst{4-0} = xd; 33 // <opcode | xj | xd> 38 bits<5> xd; 42 let Inst{4-0} = xd; 45 // <opcode | rj | xd> 50 bits<5> xd; 54 let Inst{4-0} = xd; [all …]
|
| H A D | LoongArchLASXInstrInfo.td | 51 : Fmt1RI13_XI<op, (outs LASX256:$xd), (ins ImmOpnd:$imm13), "$xd, $imm13">; 54 : Fmt2R_XX<op, (outs LASX256:$xd), (ins LASX256:$xj), "$xd, $xj">; 57 : Fmt2R_XR<op, (outs LASX256:$xd), (ins GPR:$rj), "$xd, $rj">; 63 : Fmt2RI1_XXI<op, (outs LASX256:$xd), (ins LASX256:$xj, ImmOpnd:$imm1), 64 "$xd, $xj, $imm1">; 67 : Fmt2RI2_XXI<op, (outs LASX256:$xd), (ins LASX256:$xj, ImmOpnd:$imm2), 68 "$xd, $xj, $imm2">; 75 : Fmt2RI3_XXI<op, (outs LASX256:$xd), (ins LASX256:$xj, ImmOpnd:$imm3), 76 "$xd, $xj, $imm3">; 83 : Fmt2RI4_XXI<op, (outs LASX256:$xd), (ins LASX256:$xj, ImmOpnd:$imm4), [all …]
|
| /freebsd/sys/netipsec/ |
| H A D | xform_ipcomp.c | 200 struct xform_data *xd; in ipcomp_input() local 242 xd = malloc(sizeof(*xd), M_IPCOMP, M_NOWAIT | M_ZERO); in ipcomp_input() 243 if (xd == NULL) { in ipcomp_input() 259 crp->crp_opaque = xd; in ipcomp_input() 262 xd->sav = sav; in ipcomp_input() 263 xd->protoff = protoff; in ipcomp_input() 264 xd->skip = skip; in ipcomp_input() 265 xd->vnet = curvnet; in ipcomp_input() 266 xd->cryptoid = cryptoid; in ipcomp_input() 269 crp->crp_session = xd->cryptoid = sav->tdb_cryptoid; in ipcomp_input() [all …]
|
| H A D | xform_ah.c | 540 struct xform_data *xd; in ah_input() local 623 xd = malloc(sizeof(*xd) + skip + rplen + authsize, M_AH, in ah_input() 625 if (xd == NULL) { in ah_input() 637 m_copydata(m, 0, skip + rplen + authsize, (caddr_t)(xd + 1)); in ah_input() 651 free(xd, M_AH); in ah_input() 662 crp->crp_opaque = xd; in ah_input() 671 xd->sav = sav; in ah_input() 672 xd->nxt = hl; in ah_input() 673 xd->protoff = protoff; in ah_input() 674 xd->skip = skip; in ah_input() [all …]
|
| H A D | xform_esp.c | 273 struct xform_data *xd; in esp_input() local 368 xd = malloc(sizeof(*xd), M_ESP, M_NOWAIT | M_ZERO); in esp_input() 369 if (xd == NULL) { in esp_input() 421 crp->crp_opaque = xd; in esp_input() 424 xd->sav = sav; in esp_input() 425 xd->protoff = protoff; in esp_input() 426 xd->skip = skip; in esp_input() 427 xd->cryptoid = cryptoid; in esp_input() 428 xd->vnet = curvnet; in esp_input() 477 free(xd, M_ESP); in esp_input() [all …]
|
| /freebsd/crypto/openssl/crypto/chacha/asm/ |
| H A D | chacha-armv4.pl | 71 my ($xd,$xd_) = $odd ? (@t[2],@x[$d1]) : (@x[$d0],@t[2]); 100 "&mov ($xd,$xd,'ror#16')", 103 "&eor ($xd,$xd,@x[$a0],'ror#16')", 106 "&add ($xc,$xc,$xd)", 114 "&mov ($xd,$xd,'ror#24')", 117 "&eor ($xd,$xd,@x[$a0],'ror#24')", 120 "&add ($xc,$xc,$xd)", 123 "&str ($xd,'[sp,#4*(16+$d0)]')", 124 "&ldr ($xd,'[sp,#4*(16+$d2)]')" ) if ($odd); 135 $xd=@x[$d2] if (!$odd); [all …]
|
| H A D | chacha-x86.pl | 377 my ($xa,$xa_,$xb,$xb_,$xc,$xc_,$xd,$xd_)=map("xmm$_",(0..7)); 413 &pshufb ($xd,&QWP(0,"eax")); # rot16 415 &paddd ($xc,$xd); 426 &pxor ($xd,$xa); 428 &pshufb ($xd,&QWP(16,"eax")); # rot8 429 &paddd ($xc,$xd); 430 &movdqa (&QWP(16*$di-128,"ebx"),$xd) if ($di!=$dn); 431 &movdqa ($xd_,$xd) if ($di==$dn); 443 ($xd,$xd_)=($xd_,$xd); 563 &movdqa ($xd, "xmm4"); [all …]
|
| H A D | chacha-armv8-sve.pl | 293 my $xd = shift; 301 zip1 @xt[2].s,$xc.s,$xd.s 302 zip2 @xt[3].s,$xc.s,$xd.s 312 zip2 $xd.d,@xt[1].d,@xt[3].d
|
| /freebsd/contrib/arm-optimized-routines/math/ |
| H A D | exp2f.c | 41 double_t kd, xd, z, r, r2, y, s; in exp2f() local 43 xd = (double_t) x; in exp2f() 63 kd = eval_as_double (xd + SHIFT); in exp2f() 66 r = xd - kd; in exp2f()
|
| H A D | powf.c | 75 exp2_inline (double_t xd, uint32_t sign_bias) in exp2_inline() argument 84 kd = roundtoint (xd); /* k */ in exp2_inline() 85 ki = converttoint (xd); in exp2_inline() 90 kd = eval_as_double (xd + SHIFT); in exp2_inline() 94 r = xd - kd; in exp2_inline()
|
| H A D | expf.c | 41 double_t kd, xd, z, r, r2, y, s; in expf() local 43 xd = (double_t) x; in expf() 63 z = InvLn2N * xd; in expf()
|
| /freebsd/crypto/openssl/crypto/sha/ |
| H A D | sha_local.h | 94 #define BODY_16_19(i, a, b, c, d, e, f, xi, xa, xb, xc, xd) \ argument 95 Xupdate(f, xi, xa, xb, xc, xd); \ 99 #define BODY_20_31(i, a, b, c, d, e, f, xi, xa, xb, xc, xd) \ argument 100 Xupdate(f, xi, xa, xb, xc, xd); \ 104 #define BODY_32_39(i, a, b, c, d, e, f, xa, xb, xc, xd) \ argument 105 Xupdate(f, xa, xa, xb, xc, xd); \ 109 #define BODY_40_59(i, a, b, c, d, e, f, xa, xb, xc, xd) \ argument 110 Xupdate(f, xa, xa, xb, xc, xd); \ 114 #define BODY_60_79(i, a, b, c, d, e, f, xa, xb, xc, xd) \ argument 115 Xupdate(f, xa, xa, xb, xc, xd); \ [all …]
|
| /freebsd/lib/libmd/ |
| H A D | sha_locl.h | 219 #define BODY_16_19(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument 220 Xupdate(f,i,xa,xb,xc,xd); \ 224 #define BODY_20_31(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument 225 Xupdate(f,i,xa,xb,xc,xd); \
|
| /freebsd/sys/contrib/device-tree/src/arm64/qcom/ |
| H A D | pm8010.dtsi | 71 reg = <0xd SPMI_USID>; 78 interrupts = <0xd 0x24 0x0 IRQ_TYPE_EDGE_BOTH>;
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrExtension.td | 156 "movs{lq|xd}\t{$src, $dst|$dst, $src}", 160 "movs{lq|xd}\t{$src, $dst|$dst, $src}", 169 "movs{lq|xd}\t{$src, $dst|$dst, $src}", []>, 172 "movs{lq|xd}\t{$src, $dst|$dst, $src}", []>, 176 "movs{lq|xd}\t{$src, $dst|$dst, $src}", []>, 179 "movs{lq|xd}\t{$src, $dst|$dst, $src}", []>,
|
| /freebsd/contrib/bearssl/src/hash/ |
| H A D | ghash_pwr8.c | 99 #define REDUCE_F128(xd, x0, x1) \ argument 117 vxor(xd, x0, TT1)
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFInstrFormats.td | 46 def BPF_END : BPFArithOp<0xd>; 75 def BPF_JSLE : BPFJumpOp<0xd>;
|
| /freebsd/sys/contrib/device-tree/src/arm64/freescale/ |
| H A D | qoriq-fman3-0-1g-5.dtsi | 11 cell-index = <0xd>;
|
| /freebsd/sys/contrib/device-tree/src/powerpc/ |
| H A D | icon.dts | 122 0xd 0x00000000 0xd 0x00000000 0x80000000 123 0xd 0x80000000 0xd 0x80000000 0x80000000
|
| H A D | katmai.dts | 126 0xd 0x00000000 0xd 0x00000000 0x80000000 127 0xd 0x80000000 0xd 0x80000000 0x80000000
|
| /freebsd/sys/contrib/device-tree/Bindings/pinctrl/ |
| H A D | pinctrl_spear.txt | 147 "gpt0", "gpt1", "sdhci", "cf", "xd", "touchscreen", "uart1", "uart2_3", 155 "xd", "clcd", "arm_trace", "miphy_dbg", "pcie", "sata"
|
| /freebsd/sys/contrib/device-tree/src/arm/cirrus/ |
| H A D | ep7211-edb7211.dts | 20 0x8 0x9 0xa 0xb 0xc 0xd 0xe 0xf
|
| /freebsd/sys/contrib/device-tree/src/powerpc/fsl/ |
| H A D | mpc8568mds.dts | 138 0x4 0xd 0x2 0x0 0x2 0x0 /* RxD2 */ 166 0x5 0xd 0x2 0x0 0x2 0x0 /* RxD2 */
|
| H A D | qoriq-fman3-0-1g-5.dtsi | 37 cell-index = <0xd>;
|
| /freebsd/sys/contrib/openzfs/module/zfs/ |
| H A D | vdev_raidz_math_impl.h | 126 gf_t nx, ny, nz, nxx, nyy, nzz, nyyz, nyzz, xd, yd; in raidz_rec_pqr_coeff() local 139 xd = gf_mul(nxx, ny) ^ gf_mul(nx, nyy) ^ nyyz ^ in raidz_rec_pqr_coeff() 144 coeff[MUL_PQR_XP] = gf_div(nyyz ^ nyzz, xd); in raidz_rec_pqr_coeff() 145 coeff[MUL_PQR_XQ] = gf_div(nyy ^ nzz, xd); in raidz_rec_pqr_coeff() 146 coeff[MUL_PQR_XR] = gf_div(ny ^ nz, xd); in raidz_rec_pqr_coeff()
|