Searched refs:t2 (Results 101 - 125 of 226) sorted by relevance

12345678910

/freebsd-10.0-release/contrib/groff/src/preproc/grn/
H A Dhgraph.cpp647 double t1, t2, t3; /* calculation temps */ local
681 t2 = 2.0 - (t3 + t1);
682 xp = (((int) (t1 * x[2] + t2 * x[1] + t3 * x[0])) + 1) / 2;
683 yp = (((int) (t1 * y[2] + t2 * y[1] + t3 * y[0])) + 1) / 2;
712 double t, t2, t3; local
749 t2 = t * t;
751 nx = x[j] + (int) (t * dx[j] + t2 * d2x[j] / 2 + t3 * d3x[j] / 6);
752 ny = y[j] + (int) (t * dy[j] + t2 * d2y[j] / 2 + t3 * d3y[j] / 6);
/freebsd-10.0-release/crypto/openssl/crypto/bn/
H A Dbn_lib.c649 BN_ULONG t1,t2,*ap,*bp; local
661 t2= bp[i];
662 if (t1 != t2)
663 return((t1 > t2) ? 1 : -1);
672 BN_ULONG t1,t2; local
702 t2=b->d[i];
703 if (t1 > t2) return(gt);
704 if (t1 < t2) return(lt);
H A Dbn_div.c336 BN_ULLONG t2; local
356 t2=(BN_ULLONG)d1*q;
360 if (t2 <= ((((BN_ULLONG)rem)<<BN_BITS2)|wnump[-2]))
365 t2 -= d1;
390 mul64(t2l,t2h,ql,qh); /* t2=(BN_ULLONG)d1*q; */
/freebsd-10.0-release/contrib/apr/time/unix/
H A Dtime.c323 time_t t1, t2; local
328 t2 = 0;
336 t2 = mktime(&t);
337 server_gmt_offset = (apr_int32_t) difftime(t1, t2);
/freebsd-10.0-release/crypto/openssl/crypto/sha/asm/
H A Dsha1-x86_64.pl99 $t2="%ecx";
120 mov $a,$t2
123 rol \$5,$t2
127 add $t2,$e
135 mov $a,$t2
138 rol \$5,$t2
145 add $t2,$e
160 mov $a,$t2
163 rol \$5,$t2
167 add $t2,
[all...]
/freebsd-10.0-release/lib/msun/src/
H A De_pow.c100 double y1,t1,t2,r,s,t,u,v,w; local
205 t2 = v-(t1-u);
253 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
256 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
259 p_l = (y-y1)*t1+y*t2;
H A De_powf.c59 float y1,t1,t2,r,s,sn,t,u,v,w; local
147 t2 = v-(t1-u);
199 t2 = z_l-(((t1-t)-dp_h[k])-z_h);
202 /* split up y into y1+y2 and compute (y1+y2)*(t1+t2) */
205 p_l = (y-y1)*t1+y*t2;
/freebsd-10.0-release/sbin/recoverdisk/
H A Drecoverdisk.c160 time_t t1, t2; local
272 time(&t2);
273 if (t1 != t2 || lp->len < (off_t)bigsize) {
275 t1 = t2;
/freebsd-10.0-release/crypto/openssl/crypto/aes/asm/
H A Daes-ia64.S50 t2=r36; s2=r37;
98 { .mib; LDKEY t2=[rk0],2*KSZ
107 { .mmi; xor s2=s2,t2
120 { .mmi; (p0) LDKEY t2=[rk0],2*KSZ // 1/2:rk[2]
173 (p0) xor t2=t2,te20 // 10[9]/2:
177 (p0) xor t2=t2,te02 };; // 11[10]/2: !L2 scheduling
181 (p0) xor t2=t2,te3
[all...]
H A Daes-x86_64.pl59 $t2="%r12d";
100 mov 0($sbox,$acc2,8),$t2
112 xor 3($sbox,$acc0,8),$t2
125 xor 2($sbox,$acc2,8),$t2
138 xor 1($sbox,$acc1,8),$t2
145 xor $t2,$s2
159 movzb 2($sbox,$acc2,8),$t2
178 mov 0($sbox,$acc0,8),$acc0 #$t2
184 xor $acc0,$t2
193 mov 0($sbox,$acc2,8),$acc2 #$t2
[all...]
H A Daes-s390x.pl102 $t2="%r2"; $inp="%r2";
295 srlg $t2,$s0,`8-3`
300 nr $t2,$mask
314 l $t2,2($t2,$tbl) # Te2[s0>>8]
319 x $t2,1($i2,$tbl) # Te3[s1>>0]
344 xr $s2,$t2
364 srlg $t2,$s0,`8-3`
369 nr $t2,$mask
384 llgc $t2,
[all...]
H A Daes-mips.pl29 ($zero,$at,$t0,$t1,$t2)=map("\$$_",(0..2,24,25));
46 # ($t0,$t1,$t2,$t3,$t8,$t9)=map("\$$_",(12..15,24,25));
67 $pf = ($flavour =~ /nubi/i) ? $t0 : $t2;
104 my ($i0,$i1,$i2,$i3)=($at,$t0,$t1,$t2);
105 my ($t0,$t1,$t2,$t3,$t4,$t5,$t6,$t7,$t8,$t9,$t10,$t11) = map("\$$_",(12..23));
118 lw $t2,8($key)
125 xor $s2,$t2
144 lwl $t2,3($i2) # Te1[s3>>16]
148 lwr $t2,2($i2) # Te1[s3>>16]
207 xor $t2,
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/
H A Do_time.c349 time_t t1, t2; local
351 t2 = t1 + offset;
352 OPENSSL_gmtime(&t2, &tm2);
/freebsd-10.0-release/usr.sbin/bhyve/
H A Dpit_8254.c90 timevalsub(struct timeval *t1, const struct timeval *t2) argument
93 t1->tv_sec -= t2->tv_sec;
94 t1->tv_usec -= t2->tv_usec;
H A Drtc.c137 timevalsub(struct timeval *t1, const struct timeval *t2) argument
140 t1->tv_sec -= t2->tv_sec;
141 t1->tv_usec -= t2->tv_usec;
/freebsd-10.0-release/crypto/openssl/crypto/ec/
H A Dec2_mult.c118 BIGNUM *t1, *t2; local
124 t2 = BN_CTX_get(ctx);
125 if (t2 == NULL) goto err;
130 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err;
134 if (!BN_GF2m_add(x1, x1, t2)) goto err;
/freebsd-10.0-release/contrib/less/
H A Dscreen.c1120 register char *t1, *t2;
1278 t2 = "";
1282 t2 = sp;
1285 sc_home = cheaper(t1, t2, "|\b^");
1295 t2 = "";
1299 t2 = sp;
1302 sc_lower_left = cheaper(t1, t2, "\r");
1318 t2 = ltgetstr("sr", &sp);
1319 if (t2 == NULL)
1320 t2
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/bn/asm/
H A Dpa-risc2.s659 t2 .reg %r21 label
685 LDD 0(b_ptr),t2
686 SUB t1,t2,sub_tmp1 ; t3 = t1-t2;
689 CMPCLR,*>> t1,t2,sub_tmp2 ; clear if t1 > t2
692 CMPCLR,*= t1,t2,%r0
697 LDD 8(b_ptr),t2
698 SUB t1,t2,sub_tmp1 ; t3 = t1-t2;
[all...]
H A Dpa-risc2W.s648 t2 .reg %r21 label
674 LDD 0(b_ptr),t2
675 SUB t1,t2,sub_tmp1 ; t3 = t1-t2;
678 CMPCLR,*>> t1,t2,sub_tmp2 ; clear if t1 > t2
681 CMPCLR,*= t1,t2,%r0
686 LDD 8(b_ptr),t2
687 SUB t1,t2,sub_tmp1 ; t3 = t1-t2;
[all...]
/freebsd-10.0-release/contrib/mtree/
H A Dspecspec.c193 walk_in_the_forest(NODE *t1, NODE *t2, char const *path) argument
205 if (t2 != NULL)
206 c2 = t2->child;
/freebsd-10.0-release/usr.sbin/mtree/
H A Dspecspec.c176 walk_in_the_forest(NODE *t1, NODE *t2, char const *path) argument
188 if (t2 != NULL)
189 c2 = t2->child;
/freebsd-10.0-release/gnu/usr.bin/rcs/co/
H A Dco.c712 static struct buf t1, t2; local
728 VOID partialno(&t2, r2, l2>2 ? 2 : l2);
729 r = cmpnum(t1.string,t2.string)<0 ? t1.string : t2.string;
/freebsd-10.0-release/contrib/gcc/cp/
H A Dcall.c865 reference_related_p (tree t1, tree t2) argument
868 t2 = TYPE_MAIN_VARIANT (t2);
875 return (same_type_p (t1, t2)
876 || (CLASS_TYPE_P (t1) && CLASS_TYPE_P (t2)
877 && DERIVED_FROM_P (t1, t2)));
883 reference_compatible_p (tree t1, tree t2) argument
890 return (reference_related_p (t1, t2)
891 && at_least_as_qualified_p (t1, t2));
946 tree t2 local
3125 tree t2 = non_reference (TREE_TYPE (e2)); local
5785 conversion *t2; local
5805 conversion *t2; local
6129 conversion *t2 = cand2->convs[i + off2]; local
[all...]
/freebsd-10.0-release/usr.bin/xlint/lint1/
H A Ddecl.c347 tspec_t t2; local
349 t2 = td->t_tspec;
354 if (t2 == CHAR || t2 == SHORT || t2 == INT || t2 == LONG ||
355 t2 == QUAD) {
359 td = duptyp(gettyp(mrgtspec(t2, t)));
365 if (t2 == INT || t2
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dvarasm.c2554 /* Compare t1 and t2, and return 1 only if they are known to result in
2558 compare_constant (const tree t1, const tree t2)
2563 return t2 == NULL_TREE;
2564 if (t2 == NULL_TREE)
2567 if (TREE_CODE (t1) != TREE_CODE (t2))
2574 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2576 if (TYPE_MODE (TREE_TYPE (t1)) != TYPE_MODE (TREE_TYPE (t2)))
2578 return tree_int_cst_equal (t1, t2);
2582 if (TYPE_PRECISION (TREE_TYPE (t1)) != TYPE_PRECISION (TREE_TYPE (t2)))
2585 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1), TREE_REAL_CST (t2));
2545 compare_constant(const tree t1, const tree t2) argument
4697 tree t2; local
[all...]

Completed in 515 milliseconds

12345678910