Searched refs:y0 (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/lib/libc/sparc64/fpu/
H A Dfpu_div.c160 u_int r0, r1, r2, r3, d0, d1, d2, d3, y0, y1, y2, y3; local
210 FPU_SUBCS(d1, r1, y1); FPU_SUBC(d0, r0, y0)
246 y0 = y->fp_mant[0];
H A Dfpu_sqrt.c196 u_int y0, y1, y2, y3; local
263 * The calculation `t = y + bit' breaks down into `t0 = y0, ...,
274 /* if (x >= (t0 = y0 | bit)) { */ /* always true */
277 y0 = bit << 1;
282 t0 = y0 | bit; /* t = y + bit */
286 y0 |= bit << 1; /* y += bit << 1 */
293 /* calculate q1. note (y0&1)==0. */
294 #define t0 y0
306 y0 |= 1; /* y += bit << 1 */
324 /* calculate q2. note (y1&1)==0; y0 (ak
[all...]
/freebsd-11-stable/sys/powerpc/fpu/
H A Dfpu_sqrt.c196 u_int y0, y1, y2, y3; local
280 * The calculation `t = y + bit' breaks down into `t0 = y0, ...,
291 /* if (x >= (t0 = y0 | bit)) { */ /* always true */
294 y0 = bit << 1;
299 t0 = y0 | bit; /* t = y + bit */
303 y0 |= bit << 1; /* y += bit << 1 */
310 /* calculate q1. note (y0&1)==0. */
311 #define t0 y0
323 y0 |= 1; /* y += bit << 1 */
341 /* calculate q2. note (y1&1)==0; y0 (ak
[all...]
H A Dfpu_div.c159 u_int r0, r1, r2, r3, d0, d1, d2, d3, y0, y1, y2, y3; local
231 FPU_SUBCS(d1, r1, y1); FPU_SUBC(d0, r0, y0)
267 y0 = y->fp_mant[0];
/freebsd-11-stable/contrib/gcc/config/soft-fp/
H A Dop-4.h527 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \
530 r0 = x0 + y0; \
541 #define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \
544 r0 = x0 + y0; \
559 #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \
562 r0 = x0 - y0; \
573 #define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \
576 r0 = x0 - y0; \
591 #define __FP_FRAC_DEC_3(x2,x1,x0,y2,y1,y0) \
595 __FP_FRAC_SUB_3 (x2, x1, x0, _t2, _t1, _t0, y2, y1, y0); \
[all...]
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Dec2_smpl.c462 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; local
485 y0 = BN_CTX_get(ctx);
498 if (!BN_copy(y0, &a->Y))
501 if (!EC_POINT_get_affine_coordinates_GF2m(group, a, x0, y0, ctx))
517 if (!BN_GF2m_add(s, y0, y1))
530 if (BN_GF2m_cmp(y0, y1) || BN_is_zero(x1)) {
/freebsd-11-stable/contrib/gcc/
H A Dalias.c1697 rtx y0 = XEXP (y, 0);
1701 return memrefs_conflict_p (xsize, x0, ysize, y0, c);
1702 if (rtx_equal_for_memref_p (x0, y0))
1707 return memrefs_conflict_p (xsize, x0, ysize, y0,
1714 return memrefs_conflict_p (xsize, x, ysize, y0, c + INTVAL (y1));
1725 rtx y0 = XEXP (y, 0);
1729 return memrefs_conflict_p (xsize, x, ysize, y0, c + INTVAL (y1));
1742 rtx x0, y0;
1748 y0 = canon_rtx (XEXP (y, 0));
1749 if (rtx_equal_for_memref_p (x0, y0))
1694 rtx y0 = XEXP (y, 0); local
1722 rtx y0 = XEXP (y, 0); local
1739 rtx x0, y0; local
[all...]
H A Dtree-data-ref.c2969 | [u21 u22] [y0]
2981 | y0 = j0 + j1 * t. */
2988 int x0, y0;
3040 y0 = j1 * tau1 + j0;
3042 /* At this point (x0, y0) is one of the
3046 min_multiple = MIN (x0 / i1, y0 / j1);
3048 y0 -= j1 * min_multiple;
3055 if (x0 > niter || y0 > niter)
3069 build_int_cst (NULL_TREE, y0),
2984 int x0, y0; local
H A Dsys-protos.h1336 extern double y0(double);
/freebsd-11-stable/sys/dev/atkbdc/
H A Dpsm.c3803 int x0, y0; local
3829 y0 = f->y;
3839 if (y0 <= margin_bottom)
3840 y0 = margin_bottom;
3841 else if (y0 >= max_y - margin_top)
3842 y0 = max_y - margin_top;
3845 x0, y0, f->p, f->w));
3882 start_y = y0;
3947 dyp = abs(y0 - start_y);
4145 int x0, y0; local
4848 int c, x0, y0; local
[all...]
/freebsd-11-stable/lib/msun/src/
H A Dmath.h298 double y0(double);
H A Dmath_private.h759 #define __ieee754_y0 y0
/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_exp.c659 BN_ULONG y0, y1, y2, y3; local
664 y0 = (BN_ULONG)0 - (constant_time_eq_int(i,0)&1);
673 acc |= ( (table[j + 0 * xstride] & y0) |
H A Dbn_gf2m.c496 BN_ULONG x1, x0, y1, y0, zz[4]; local
518 y0 = b->d[j];
523 bn_GF2m_mul_2x2(zz, x1, x0, y1, y0);
/freebsd-11-stable/crypto/openssl/crypto/aes/asm/
H A Dbsaes-x86_64.pl220 #;* Mul_GF4: Input x0-x1,y0-y1 Output x0-x1 Temp t0 (8) *
222 my ($x0,$x1,$y0,$y1,$t0)=@_;
224 movdqa $y0, $t0
228 pand $y0, $x1
237 my ($x0,$x1,$y0,$y1,$t0)=@_;
239 movdqa $y0, $t0
243 pand $y0, $x1
252 my ($x0,$x1,$y0,$y1,$t0,
255 movdqa $y0, $t0
263 pand $y0,
[all...]
H A Dbsaes-armv7.pl171 #;* Mul_GF4: Input x0-x1,y0-y1 Output x0-x1 Temp t0 (8) *
173 my ($x0,$x1,$y0,$y1,$t0,$t1)=@_;
175 veor $t0, $y0, $y1
178 vand $t1, $x1, $y0
187 my ($x0,$x1,$y0,$y1,$t0)=@_;
189 veor $t0, $y0, $y1
192 vand $x1, $x1, $y0
201 my ($x0,$x1,$y0,$y1,$t0,
204 veor $t0, $y0, $y1
210 vand $x1, $x1, $y0
[all...]
/freebsd-11-stable/tools/sched/
H A Dschedgraph.py1130 (x0, y0, x1, y1) = self.coords(line)
1131 if (cur_y != y0):
1208 (x0, y0, x1, y1) = self.coords(line)
1209 if (cur_y != y0):
/freebsd-11-stable/lib/msun/
H A DMakefile220 MLINKS+=j0.3 j1.3 j0.3 jn.3 j0.3 y0.3 j0.3 y1.3 j0.3 y1f.3 j0.3 yn.3
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_device_functions.h1783 __DEVICE__ double y0(double __a) { return __nv_y0(__a); } function

Completed in 137 milliseconds