Searched refs:SZ (Results 1 - 25 of 25) sorted by relevance

/freebsd-11.0-release/crypto/openssl/crypto/sha/asm/
H A Dsha512-x86_64.pl140 $SZ=8;
152 $SZ=4;
167 $_ctx="16*$SZ+0*8(%rsp)";
168 $_inp="16*$SZ+1*8(%rsp)";
169 $_end="16*$SZ+2*8(%rsp)";
170 $_rsp="16*$SZ+3*8(%rsp)";
171 $framesz="16*$SZ+4*8";
176 my $STRIDE=$SZ;
177 $STRIDE += 16 if ($i%(16/$SZ)==(16/$SZ
[all...]
H A Dsha512-s390x.pl72 $SZ=8;
86 $SZ=4;
102 $frame=$stdframe+16*$SZ;
108 $LD $T1,`$i*$SZ`($inp) ### $i
117 $ST $T1,`$stdframe+$SZ*($i%16)`($sp)
125 $ADD $T1,`$i*$SZ`($len,$tbl) # T1+=K[i]
146 $LD $T1,`$stdframe+$SZ*(($i+1)%16)`($sp) ### $i
147 $LD $t1,`$stdframe+$SZ*(($i+14)%16)`($sp)
155 $ADD $T1,`$stdframe+$SZ*($i%16)`($sp) # +=X[i]
158 $ADD $T1,`$stdframe+$SZ*((
[all...]
H A Dsha512-mips.pl84 $SZ=8;
99 $SZ=4;
114 $MSB = $big_endian ? 0 : ($SZ-1);
115 $LSB = ($SZ-1)&~$MSB;
129 ${LD}l @X[1],`($i+1)*$SZ+$MSB`($inp)
130 ${LD}r @X[1],`($i+1)*$SZ+$LSB`($inp)
132 $code.=<<___ if (!$big_endian && $i<16 && $SZ==4);
148 $code.=<<___ if (!$big_endian && $i<16 && $SZ==8);
188 $LD $tmp2,`$i*$SZ`($Ktbl) # K[$i]
199 $SLL $tmp1,$e,`$SZ*
[all...]
H A Dsha512-ia64.pl74 $SZ=8;
75 $BITS=8*$SZ;
88 $SZ=4;
89 $BITS=8*$SZ;
152 { .mib; add r8=0*$SZ,ctx
153 add r9=1*$SZ,ctx }
154 { .mib; add r10=2*$SZ,ctx
155 add r11=3*$SZ,ctx };;
159 { .mmi; $LDW A_=[r8],4*$SZ
160 $LDW B_=[r9],4*$SZ
[all...]
H A Dsha512-sparcv9.pl57 $SZ=8;
70 $locals=16*$SZ; # X[16]
83 $SZ=4;
160 } if ($SZ==4);
188 $ST $tmp2,[%sp+STACK_BIAS+STACK_FRAME+`$i*$SZ`]
195 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+1)%16)*$SZ+0`],%l2
198 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+1)%16)*$SZ+4`],%l3
200 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+9)%16)*$SZ+0`],%l4
203 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+9)%16)*$SZ+4`],%l5
205 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+14)%16)*$SZ
[all...]
H A Dsha512-ppc.pl69 $SZ=8;
81 $SZ=4;
93 $FRAME=32*$SIZE_T+16*$SZ;
122 $inp="r31" if($SZ==4 || $SIZE_T==8); # reassigned $inp! aliases with @X[15]
153 $LD $t1,`($i+1)*$SZ`($Tbl)
177 $LD $t1,`$i*$SZ`($Tbl)
193 $SHL $num,$num,`log(16*$SZ)/log(2)`
218 if ($SZ==4 || $SIZE_T==8) {
220 $LD $A,`0*$SZ`($ctx)
222 $LD $B,`1*$SZ`(
[all...]
H A Dsha512-parisc.pl54 $SZ=8;
66 $SZ=4;
80 $XOFF=16*$SZ+32; # local variables
126 `"$LDM $SZ($Tbl),$t1" if ($i<15)`
148 $LDM $SZ($Tbl),$t1
168 $code.=<<___ if ($SZ==8);
210 $code.=<<___ if ($SZ==4);
254 _shl $num,`log(16*$SZ)/log(2)`,$num
267 $code.=<<___ if ($SZ==8 && $SIZE_T==4);
275 $LD `0*$SZ`(
[all...]
H A Dsha512p8-ppc.pl55 $SZ=8;
60 $SZ=4;
89 $code.=<<___ if ($i<15 && ($i%(16/$SZ))==(16/$SZ-1));
93 $code.=<<___ if ($i<16 && ($i%(16/$SZ)));
94 vsldoi @X[$i],@X[$i-1],@X[$i-1],$SZ
96 $code.=<<___ if ($LENDIAN && $i<16 && ($i%(16/$SZ))==0);
183 $code.=<<___ if ($SZ==4);
193 $code.=<<___ if ($SZ==8);
254 $code.=<<___ if ($SZ
[all...]
H A Dsha512-armv8.pl38 $SZ=8;
47 $SZ=4;
76 ldp @X[$i+1],@X[$i+2],[$inp],#2*$SZ
82 ldr @X[($i-11)&15],[sp,#`$SZ*(($i-11)%4)`]
88 str @X[($i-8)&15],[sp,#`$SZ*(($i-8)%4)`]
116 ldr $t3,[$Ktbl],#$SZ // *K++, $t2 in next round
145 ldr $t3,[$Ktbl],#$SZ // *K++, $t2 in next round
163 $code.=<<___ if ($SZ==4);
180 sub sp,sp,#4*$SZ
183 ldp $C,$D,[$ctx,#2*$SZ]
[all...]
/freebsd-11.0-release/crypto/openssl/crypto/aes/asm/
H A Daesni-sha256-x86_64.pl74 $SZ=4;
97 $_inp="16*$SZ+0*8(%rsp)";
98 $_out="16*$SZ+1*8(%rsp)";
99 $_end="16*$SZ+2*8(%rsp)";
100 $_key="16*$SZ+3*8(%rsp)";
101 $_ivp="16*$SZ+4*8(%rsp)";
102 $_ctx="16*$SZ+5*8(%rsp)";
103 $_in0="16*$SZ+6*8(%rsp)";
104 $_rsp="16*$SZ+7*8(%rsp)";
105 $framesz=16*$SZ
[all...]
/freebsd-11.0-release/crypto/openssl/crypto/rc4/asm/
H A Drc4-parisc.pl49 $SZ=1; # defaults to RC4_CHAR
53 $SZ = ($1=~/char$/) ? 1 : 4;
60 if ($SZ==1) { # RC4_CHAR
157 $LD `0*$SZ`($key),$XX[0]
158 $LD `1*$SZ`($key),$YY
159 ldo `2*$SZ`($key),$key
232 $ST $XX[0],`-2*$SZ`($key)
233 $ST $YY,`-1*$SZ`($key)
252 $ST %r0,`0*$SZ`($key)
253 $ST %r0,`1*$SZ`(
[all...]
H A Drc4-ia64.pl364 #ifndef SZ
365 # define SZ 4 // this must be set to sizeof(RC4_INT)
368 #if SZ == 1
372 #elif SZ == 2
376 #elif SZ == 4
514 LKEY I[1] = [KTable], SZ
515 /* Prefetch the state-table. It contains 256 elements of size SZ */
517 #if SZ == 1
519 #elif SZ == 2
522 #elif SZ
[all...]
/freebsd-11.0-release/sys/dev/fatm/
H A Dif_fatmvar.h300 #define H_SYNCQ_PREWRITE(M, P, SZ) \
302 (volatile char *)(P) - (volatile char *)(M)->mem, (SZ), \
305 #define H_SYNCQ_POSTREAD(M, P, SZ) \
307 (volatile char *)(P) - (volatile char *)(M)->mem, (SZ), \
312 #define H_SYNCQ_PREWRITE(M, P, SZ) do { } while (0)
313 #define H_SYNCQ_POSTREAD(M, P, SZ) do { } while (0)
/freebsd-11.0-release/contrib/elftoolchain/elfcopy/
H A Dsymbols.c889 #define _ADDSYM(B, SZ) do { \
890 if (sy_buf->B##SZ == NULL) { \
891 sy_buf->B##SZ = malloc(sy_buf->B##cap * \
892 sizeof(Elf##SZ##_Sym)); \
893 if (sy_buf->B##SZ == NULL) \
897 sy_buf->B##SZ = realloc(sy_buf->B##SZ, sy_buf->B##cap * \
898 sizeof(Elf##SZ##_Sym)); \
899 if (sy_buf->B##SZ == NULL) \
902 sy_buf->B##SZ[sy_bu
[all...]
H A Dsections.c715 #define COPYREL(REL, SZ) do { \
717 if ((REL##SZ = malloc(cap * \
718 sizeof(Elf##SZ##_Rel))) == NULL) \
723 if ((REL##SZ = realloc(REL##SZ, cap * \
724 sizeof(Elf##SZ##_Rel))) == NULL) \
727 REL##SZ[nrels].r_offset = REL.r_offset; \
728 REL##SZ[nrels].r_info = REL.r_info; \
730 rela##SZ[nrels].r_addend = rela.r_addend; \
/freebsd-11.0-release/usr.bin/checknr/
H A Dchecknr.c95 #define SZ 0 macro
374 stk[stktop].opno == SZ) {
381 stk[++stktop].opno = SZ;
430 case SZ:
/freebsd-11.0-release/contrib/elftoolchain/libelf/
H A Dlibelf_ehdr.c86 #define EHDR_INIT(E,SZ) do { \
87 Elf##SZ##_Ehdr *eh = (E); \
92 eh->e_ident[EI_CLASS] = ELFCLASS##SZ; \
H A Dlibelf_ar_util.c261 #define READ_AR_HEADER(S, ARH, SZ, END) \
269 sizeof((ARH).ar_size), 10, &(SZ)) == 0) \
/freebsd-11.0-release/sys/dev/en/
H A Dmidwayreg.h126 #define MIDX_MKPLACE(SZ,LOC) ( ((SZ) << 11) | (LOC) )
/freebsd-11.0-release/contrib/binutils/include/coff/
H A Dti.h242 #define PUT_SCNHDR_SIZE(ABFD, SZ, SZP) \
243 H_PUT_32 (ABFD, (SZ) / bfd_octets_per_byte (ABFD), SZP)
/freebsd-11.0-release/usr.sbin/ctm/mkCTM/
H A DmkCTM34 set CTMdate [exec date -u +%Y%m%d%H%M%SZ]
/freebsd-11.0-release/lib/libpmc/
H A Dpmclog.c319 #define PMCLOG_GET_CALLCHAIN_SIZE(SZ,E) do { \
320 (SZ) = ((E) - offsetof(struct pmclog_callchain, pl_pc)) \
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp2857 unsigned SZ = Ty->getPrimitiveSizeInBits(); local
2858 assert((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic loads supported");
2859 Intrinsic::ID IntID = (SZ == 32) ? Intrinsic::hexagon_L2_loadw_locked
2872 unsigned SZ = Ty->getPrimitiveSizeInBits(); local
2873 assert((SZ == 32 || SZ == 64) && "Only 32/64-bit atomic stores supported");
2874 Intrinsic::ID IntID = (SZ == 32) ? Intrinsic::hexagon_S2_storew_locked
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp1095 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
1096 return getTruncateOrZeroExtend(SZ->getOperand(), Ty);
1417 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
1418 return getZeroExtendExpr(SZ->getOperand(), Ty);
1599 if (const SCEVZeroExtendExpr *SZ = dyn_cast<SCEVZeroExtendExpr>(Op))
1600 return getZeroExtendExpr(SZ->getOperand(), Ty);
6160 const SCEVZeroExtendExpr *SZ = cast<SCEVZeroExtendExpr>(V);
6161 if (Constant *CastOp = BuildConstantFromSCEV(SZ->getOperand()))
6162 return ConstantExpr::getZExt(CastOp, SZ->getType());
/freebsd-11.0-release/contrib/netbsd-tests/usr.bin/netpgpverify/
H A Dt_netpgpverify.sh222 0EnzTfhkdgJisAIAA4icBBMBAgAGBQJBingIAAoJEGBZMNR4O8EltG4D/1bZY/SZ

Completed in 378 milliseconds