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

12345

/freebsd-10-stable/gnu/usr.bin/grep/tests/
H A Dspencer2.sh10 ${AWK-awk} -f $srcdir/scriptgen.awk $srcdir/spencer2.tests > tmp2.script
12 sh tmp2.script && exit $failures
/freebsd-10-stable/crypto/openssl/crypto/cast/asm/
H A Dcast-586.pl18 $tmp2="ebx";
58 &mov($tmp2,&wparam(0));
64 &mov($L,&DWP(0,$tmp2,"",0));
65 &mov($R,&DWP(4,$tmp2,"",0));
81 &E_CAST( 0,$S,$L,$R,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
82 &E_CAST( 1,$S,$R,$L,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4);
83 &E_CAST( 2,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4);
84 &E_CAST( 3,$S,$R,$L,$K,@F1,$tmp1,$tmp2,$tmp3,$tmp4);
85 &E_CAST( 4,$S,$L,$R,$K,@F2,$tmp1,$tmp2,$tmp3,$tmp4);
86 &E_CAST( 5,$S,$R,$L,$K,@F3,$tmp1,$tmp2,
[all...]
/freebsd-10-stable/crypto/openssl/crypto/bf/asm/
H A Dbf-586.pl16 $tmp2="ebx";
35 &mov($tmp2,&wparam(0));
41 &mov($L,&DWP(0,$tmp2,"",0));
42 &mov($R,&DWP(4,$tmp2,"",0));
50 &mov($tmp2,&DWP(0,$P,"",0));
53 &xor($L,$tmp2);
58 &BF_ENCRYPT($i+1,$R,$L,$P,$tmp1,$tmp2,$tmp3,$tmp4,1);
62 &BF_ENCRYPT($i+2,$L,$R,$P,$tmp1,$tmp2,$tmp3,$tmp4,1);
69 &mov($tmp2,&DWP(($BF_ROUNDS+1)*4,$P,"",0));
72 &xor($L,$tmp2);
[all...]
H A Dbf-686.pl16 $tmp2="ebx";
44 &xor( $tmp2, $tmp2);
55 &BF_ENCRYPT($i+1,$R,$L,$P,$tot,$tmp1,$tmp2,$tmp3);
59 &BF_ENCRYPT($i+2,$L,$R,$P,$tot,$tmp1,$tmp2,$tmp3);
75 &BF_ENCRYPT($i,$R,$L,$P,$tot,$tmp1,$tmp2,$tmp3);
78 &BF_ENCRYPT($i-1,$L,$R,$P,$tot,$tmp1,$tmp2,$tmp3);
93 local($i,$L,$R,$P,$tot,$tmp1,$tmp2,$tmp3)=@_;
99 &movb( &LB($tmp2), &LB($R));
105 &mov( $tmp3, &DWP(&n2a($BF_OFF+0x0400),$P,$tmp2,
[all...]
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/hash/
H A Dt_hmac.c44 uint8_t tmp2[EVP_MAX_MD_SIZE]; local
88 memset(tmp2, 0, sizeof(tmp2));
91 tmp2len = hmac(names[t], key, i, data, j, tmp2,
92 sizeof(tmp2));
96 if (tmp1[k] != tmp2[k]) {
99 k, tmp1[k], tmp2[k]);
/freebsd-10-stable/crypto/openssl/crypto/bn/asm/x86/
H A Dadd.pl16 $tmp2="edx";
34 &mov($tmp2,&DWP($i*4,$b,"",0)); # *b
38 &add($tmp1,$tmp2);
59 &mov($tmp2,&DWP($i*4,$b,"",0));# *b
63 &add($tmp1,$tmp2);
H A Dsub.pl16 $tmp2="edx";
34 &mov($tmp2,&DWP($i*4,$b,"",0)); # *b
38 &sub($tmp1,$tmp2);
59 &mov($tmp2,&DWP($i*4,$b,"",0));# *b
63 &sub($tmp1,$tmp2);
/freebsd-10-stable/lib/libc/stdlib/
H A Dheapsort.c60 #define COPY(a, b, count, size, tmp1, tmp2) { \
63 tmp2 = b; \
65 *tmp1++ = *tmp2++; \
108 #define SELECT(par_i, child_i, nmemb, par, child, size, k, count, tmp1, tmp2) { \
116 COPY(par, child, count, size, tmp1, tmp2); \
124 COPY(child, k, count, size, tmp1, tmp2); \
127 COPY(child, par, count, size, tmp1, tmp2); \
145 char tmp, *tmp1, *tmp2; local
174 COPY(k, base + nmemb * size, cnt, size, tmp1, tmp2);
175 COPY(base + nmemb * size, base + size, cnt, size, tmp1, tmp2);
[all...]
/freebsd-10-stable/contrib/wpa/src/crypto/
H A Dsha1-pbkdf2.c18 unsigned char tmp[SHA1_MAC_LEN], tmp2[SHA1_MAC_LEN]; local
47 SHA1_MAC_LEN, tmp2))
49 os_memcpy(tmp, tmp2, SHA1_MAC_LEN);
51 digest[j] ^= tmp2[j];
H A Dmilenage.c39 u8 tmp1[16], tmp2[16], tmp3[16]; local
48 /* tmp2 = IN1 = SQN || AMF || SQN || AMF */
49 os_memcpy(tmp2, sqn, 6);
50 os_memcpy(tmp2 + 6, amf, 2);
51 os_memcpy(tmp2 + 8, tmp2, 8);
55 /* rotate (tmp2 XOR OP_C) by r1 (= 0x40 = 8 bytes) */
57 tmp3[(i + 8) % 16] = tmp2[i] ^ opc[i];
91 u8 tmp1[16], tmp2[16], tmp3[16]; local
94 /* tmp2
[all...]
/freebsd-10-stable/crypto/openssl/crypto/des/asm/
H A Dcrypt586.pl79 local($r,$L,$R,$S,$trans,$u,$tmp1,$tmp2,$t)=@_;
84 &mov( $tmp2, &wparam(3)); # 2
88 &and( $t, $tmp2); # 2
92 &mov( $tmp2, $t);
93 &shl( $tmp2, 16); # 1
95 &xor( $t, $tmp2); # 2
98 &mov( $tmp2, &DWP(&n2a(($S+1)*4),$trans,"",0)); # 2
101 &xor( $t, $tmp2);
106 &xor( $tmp2, $tmp2);
[all...]
/freebsd-10-stable/crypto/openssl/crypto/sha/asm/
H A Dsha512-sparcv9.pl110 $tmp2="%g5";
176 sllx @pair[1],$tmp31,$tmp2 ! Xload($i)
181 or $tmp1,$tmp2,$tmp2
182 or @pair[1],$tmp2,$tmp2
184 add $h,$tmp2,$T1
185 $ST $tmp2,[%sp+`$bias+$frame+$i*$SZ`]
193 sllx @pair[1],$tmp31,$tmp2 ! Xload($i)
199 or $tmp1,$tmp2,
[all...]
H A Dsha512-mips.pl120 my ($T1,$tmp0,$tmp1,$tmp2)=(@X[4],@X[5],@X[6],@X[7]);
129 andi $tmp2,@X[0],0xFF00
132 sll $tmp2,$tmp2,8
134 or $tmp1,$tmp2
139 dsll $tmp2,$tmp0,32
140 or $tmp0,$tmp2 # 0x000000FF000000FF
142 dsrl $tmp2,@X[0],24
144 and $tmp2,$tmp0
146 or $tmp1,$tmp2
[all...]
H A Dsha1-sparcv9.pl50 $tmp2="%i5";
63 sll $b,30,$tmp2
67 or $tmp2,$b,$b
123 sll $b,30,$tmp2
128 or $tmp2,$b,$b
147 sll $b,30,$tmp2
151 or $tmp2,$b,$b
170 sll $b,30,$tmp2
176 or $tmp2,$b,$b
224 subcc %g0,$tmp1,$tmp2 ! shoul
[all...]
/freebsd-10-stable/crypto/openssl/crypto/ripemd/asm/
H A Drmd-586.pl20 $tmp2="edx";
86 &mov($tmp2, &Xv($pos));
88 &add($a, $tmp2);
99 &mov($tmp2, &Xv($pos));
106 &add($a, $tmp2);
108 &mov($tmp2, &Xv($pos2)) if $o == 1;
109 &mov($tmp2, &wparam(0)) if $o == 2;
123 # &mov($tmp2, &Xv($pos)) if $o < -1;
126 &add($a, $tmp2);
127 &mov($tmp2,
[all...]
/freebsd-10-stable/crypto/openssl/crypto/ec/
H A Decp_oct.c77 BIGNUM *tmp1, *tmp2, *x, *y; local
93 tmp2 = BN_CTX_get(ctx);
110 if (!group->meth->field_sqr(group, tmp2, x_, ctx))
112 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx))
115 if (!BN_mod_sqr(tmp2, x_, &group->field, ctx))
117 if (!BN_mod_mul(tmp1, tmp2, x_, &group->field, ctx))
123 if (!BN_mod_lshift1_quick(tmp2, x, &group->field))
125 if (!BN_mod_add_quick(tmp2, tmp2, x, &group->field))
127 if (!BN_mod_sub_quick(tmp1, tmp1, tmp2,
[all...]
/freebsd-10-stable/crypto/openssl/crypto/md5/asm/
H A Dmd5-586.pl21 $tmp2="ebp";
48 &mov($tmp2,&DWP($xo[$ki]*4,$K,"",0)) if $pos < 0; # very first one
56 &lea($a,&DWP($t,$a,$tmp2,1));
66 &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if ($pos != 2);
77 &lea($a,&DWP($t,$a,$tmp2,1));
82 &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0)) if ($pos != 2);
108 &lea($a,&DWP($t,$a,$tmp2,1));
114 &mov($tmp2,&DWP($xo[$ki+1]*4,$K,"",0));
123 &lea($a,&DWP($t,$a,$tmp2,1));
129 &mov($tmp2,
[all...]
/freebsd-10-stable/crypto/openssl/crypto/aes/
H A Daes_ige.c119 aes_block_t tmp, tmp2; local
129 tmp2.data[n] = tmp.data[n] ^ iv.data[n];
130 AES_encrypt((unsigned char *)tmp2.data,
131 (unsigned char *)tmp2.data, key);
133 tmp2.data[n] ^= iv2.data[n];
134 store_block(out, tmp2);
135 iv = tmp2;
172 aes_block_t tmp, tmp2; local
181 tmp2 = tmp;
189 iv = tmp2;
216 unsigned char tmp2[AES_BLOCK_SIZE]; local
[all...]
/freebsd-10-stable/crypto/openssl/crypto/bn/asm/
H A Dbn-586.pl435 $tmp2="edx";
453 &mov($tmp2,&DWP($i*4,$b,"",0)); # *b
457 &add($tmp1,$tmp2);
478 &mov($tmp2,&DWP($i*4,$b,"",0));# *b
482 &add($tmp1,$tmp2);
507 $tmp2="edx";
525 &mov($tmp2,&DWP($i*4,$b,"",0)); # *b
529 &sub($tmp1,$tmp2);
550 &mov($tmp2,&DWP($i*4,$b,"",0));# *b
554 &sub($tmp1,$tmp2);
[all...]
/freebsd-10-stable/sys/arm/include/
H A Datomic.h133 uint32_t tmp = 0, tmp2 = 0; local
141 : "=&r" (tmp), "+r" (tmp2)
171 u_long tmp = 0, tmp2 = 0; local
179 : "=&r" (tmp), "+r" (tmp2)
187 uint32_t tmp = 0, tmp2 = 0; local
195 : "=&r" (tmp), "+r" (tmp2)
224 u_long tmp = 0, tmp2 = 0; local
232 : "=&r" (tmp), "+r" (tmp2)
364 uint32_t tmp = 0, tmp2 = 0; local
372 : "=&r" (tmp), "+r" (tmp2)
401 u_long tmp = 0, tmp2 = 0; local
416 uint32_t tmp = 0, tmp2 = 0; local
453 u_long tmp = 0, tmp2 = 0; local
484 uint32_t tmp = 0, tmp2 = 0, ret = 0; local
500 uint32_t ret, tmp = 0, tmp2 = 0; local
644 u_long tmp = 0, tmp2 = 0, ret = 0; local
660 u_long ret, tmp = 0, tmp2 = 0; local
[all...]
/freebsd-10-stable/contrib/amd/amd/
H A Dsun_map.c195 char *retval = NULL, *tmp = NULL, *tmp2 = NULL; local
210 if (tmp2 != NULL) {
212 tmp = tmp2;
221 if ((tmp2 = sun_strsub(tmp, SUN_ARCH, AMD_ARCH)) != NULL) {
225 if ((tmp2 = sun_strsub(tmp, SUN_CPU, AMD_ARCH)) != NULL) {
229 if ((tmp2 = sun_strsub(tmp, SUN_HOST, AMD_HOST)) != NULL) {
233 if ((tmp2 = sun_strsub(tmp, SUN_OSNAME, AMD_OSNAME)) != NULL) {
240 if ((tmp2 = sun_strsub(tmp, SUN_OSREL, AMD_OSVER)) != NULL) {
244 if ((tmp2 = sun_strsub(tmp, SUN_OSVERS, AMD_OSVER)) != NULL) {
248 if ((tmp2
[all...]
/freebsd-10-stable/contrib/dialog/
H A Dheaders-sh.in161 tmp2=`expr $tmp1 + 49`
164 sed "${tmp2}q" $TMPSED >$TMPEDT
166 sed "1,${tmp1}d; ${tmp2}q" $TMPSED >$TMPEDT
171 tmp1=$tmp2
/freebsd-10-stable/crypto/openssl/engines/ccgost/
H A Dgost_sign.c55 BIGNUM *k = NULL, *tmp = NULL, *tmp2 = NULL; local
72 tmp2 = BN_CTX_get(ctx);
73 if(!tmp || !k || !tmp2) {
101 BN_mod_mul(tmp2, k, md, dsa->q, ctx);
109 BN_mod_add(newsig->s, tmp, tmp2, dsa->q, ctx);
168 BIGNUM *tmp2 = NULL, *tmp3 = NULL; local
188 tmp2 = BN_CTX_get(ctx);
191 if(!tmp || !v || !q2 || !z1 || !z2 || !tmp2 || !tmp3 || !u) {
207 BN_mod_exp(tmp2, dsa->pub_key, z2, dsa->p, ctx);
208 BN_mod_mul(tmp3, tmp, tmp2, ds
[all...]
/freebsd-10-stable/contrib/gcc/
H A Dsreal.c454 unsigned HOST_WIDE_INT tmp1, tmp2, tmp3; local
466 tmp2 = a->sig_lo * b->sig_hi;
470 r->sig_hi += (tmp2 >> SREAL_PART_BITS) + (tmp3 >> SREAL_PART_BITS);
471 tmp2 &= ((uhwi) 1 << SREAL_PART_BITS) - 1;
473 tmp1 = tmp2 + tmp3;
502 unsigned HOST_WIDE_INT tmp, tmp1, tmp2; local
517 tmp2 = ((b->sig_hi << (SREAL_PART_BITS / 2))
520 tmp2++;
523 tmp = tmp1 / tmp2;
524 tmp1 = (tmp1 % tmp2) << (SREAL_PART_BIT
[all...]
/freebsd-10-stable/sys/contrib/octeon-sdk/
H A Dcvmx-helper-ilk.c99 static cvmx_ilk_cal_entry_t *calent = NULL, *tmp2; local
222 tmp2 = calent;
225 tmp2->pipe_bpid = tmp1->pknd;
226 tmp2->ent_ctrl = PIPE_BPID;
228 tmp2++;
244 tmp2 = calent;
247 tmp2->pipe_bpid = tmp->pipe;
248 tmp2->ent_ctrl = PIPE_BPID;
250 tmp2++;

Completed in 246 milliseconds

12345