HomeSort by: relevance | last modified time | path
    Searched refs:y2 (Results 1 - 25 of 192) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
pr10728-x.h 5 Y* y2; member in struct:X
pr10728-y.cc 9 xx.y2 = xx.y1+1;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
pr10728-x.h 5 Y* y2; member in struct:X
pr10728-y.cc 9 xx.y2 = xx.y1+1;
  /src/external/lgpl3/mpc/dist/tests/
tswap.c 26 mpc_t x, y, x2, y2; local
31 mpc_init2 (y2, 100);
36 mpc_set_ui_ui (y2, 3ul, 4ul, MPC_RNDNN);
40 if ( mpfr_get_prec (mpc_realref (x)) != mpfr_get_prec (mpc_realref (y2))
41 || mpfr_get_prec (mpc_imagref (x)) != mpfr_get_prec (mpc_imagref (y2))
44 || mpc_cmp (x, y2) != 0
51 mpc_clear (y2);
  /src/external/lgpl3/mpfr/dist/tests/
ttrunc.c 31 mpfr_t x, y, z, t, y2, z2, t2; local
35 mpfr_inits2 (SIZEX, x, y, z, t, y2, z2, t2, (mpfr_ptr) 0);
72 mpfr_set_prec(y2, k);
79 mpfr_set(y2, x, MPFR_RNDD);
87 if (!mpfr_eq(y, y2, k))
91 printf ("round(x, RNDD) = "); mpfr_dump (y2);
103 if (!mpfr_eq(y, y2, k))
114 mpfr_clears (x, y, z, t, y2, z2, t2, (mpfr_ptr) 0);
tfrexp.c 134 mpfr_t x, y1, y2; local
143 mpfr_inits2 (4, y1, y2, (mpfr_ptr) 0);
182 inex2 = mpfr_frexp (&e2, y2, x, (mpfr_rnd_t) r);
187 (! mpfr_regular_p (y2) || MPFR_GET_EXP (y2) != 0))
193 mpfr_dump (y2);
199 mpfr_mul_2ui (y2, y2, e2, MPFR_RNDN);
201 mpfr_div_2ui (y2, y2, -e2, MPFR_RNDN)
    [all...]
tlog10.c 59 mpfr_t t, x, y0, y1, y2; local
80 mpfr_inits2 (prec, x, y1, y2, (mpfr_ptr) 0);
84 mpfr_log10 (y2, x, MPFR_RNDN);
85 MPFR_ASSERTN (MPFR_IS_PURE_FP (y2));
86 MPFR_ASSERTN (MPFR_IS_POS (y2));
88 if (! mpfr_equal_p (y1, y2))
94 mpfr_dump (y2);
97 mpfr_clears (x, y1, y2, (mpfr_ptr) 0);
tcompound.c 248 mpfr_t x, y1, y2; local
255 mpfr_inits2 (1, x, y1, y2, (mpfr_ptr) 0);
267 inex2 = mpfr_compound_si (y2, x, -1832808704, MPFR_RNDN);
269 if (!(mpfr_equal_p (y1, y2) &&
279 mpfr_dump (y2);
301 inex2 = mpfr_compound_si (y2, x, -7883729320669216768, MPFR_RNDN);
303 if (!(mpfr_equal_p (y1, y2) &&
313 mpfr_dump (y2);
321 mpfr_clears (x, y1, y2, (mpfr_ptr) 0);
332 mpfr_t x, y1, y2; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_rect.c 55 r1->y2 = min(r1->y2, r2->y2);
116 src->y1 = src->y2 - new_src_h;
127 diff = dst->y2 - clip->y2;
132 src->y2 = src->y1 + new_src_h;
133 dst->y2 -= diff;
274 r->y1 = height - tmp.y2;
275 r->y2 = height - tmp.y1
    [all...]
drm_damage_helper.c 70 * inclusive and x2/y2 are exclusive. While kernel does not error for overlapped
88 dest->y2 = src->y2;
293 /* Round down for x1/y1 and round up for x2/y2 to catch all pixels */
297 iter->plane_src.y2 = (state->src.y2 >> 16) + !!(state->src.y2 & 0xFFFF);
314 * x1/y1 and round up for x2/y2 for the intersected coordinate. Similar rounding
375 rect->y2 = 0;
382 rect->y2 = max(rect->y2, clip.y2)
    [all...]
  /src/lib/libm/complex/
cephes_subr.c 87 double f, x, x2, y, y2, rn, t; local
98 y2 = 1.0;
108 y2 *= y;
109 t = y2 + x2;
118 y2 *= y;
119 t = y2 - x2;
cephes_subrf.c 87 float f, x, x2, y, y2, rn, t, d; local
97 y2 = 1.0f;
107 y2 *= y;
108 t = y2 + x2;
117 y2 *= y;
118 t = y2 - x2;
cephes_subrl.c 92 long double f, x, x2, y, y2, rn, t; local
103 y2 = 1.0;
113 y2 *= y;
114 t = y2 + x2;
123 y2 *= y;
124 t = y2 - x2;
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_rect.h 43 * @y2: vertical ending coordinate (exclusive)
46 int x1, y1, x2, y2; member in struct:drm_rect
90 r->y2 = y + height;
110 r->y2 += (dh + 1) >> 1;
127 r->y2 += dy;
157 r->y2 /= vert;
181 return r->y2 - r->y1;
208 r1->y1 == r2->y1 && r1->y2 == r2->y2;
  /src/external/gpl3/gcc/dist/libgcc/config/i386/32/
sfp-machine.h 6 #define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \
18 "g" ((USItype) (y2)), \
23 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \
31 "g" ((USItype) (y2)), \
36 #define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \
48 "g" ((USItype) (y2)), \
53 #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \
61 "g" ((USItype) (y2)), \
  /src/external/gpl3/gcc.old/dist/libgcc/config/i386/32/
sfp-machine.h 6 #define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \
18 "g" ((USItype) (y2)), \
23 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \
31 "g" ((USItype) (y2)), \
36 #define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \
48 "g" ((USItype) (y2)), \
53 #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \
61 "g" ((USItype) (y2)), \
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
frame-view.c 44 bar (struct type_1 y1, struct type_2 y2)
46 return baz (y1, y2);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
frame-view.c 44 bar (struct type_1 y1, struct type_2 y2)
46 return baz (y1, y2);
  /src/external/bsd/nsd/dist/simdzone/src/generic/
time.h 24 static uint64_t leap_days(uint64_t y1, uint64_t y2)
27 --y2;
28 return (y2/4 - y1/4) - (y2/100 - y1/100) + (y2/400 - y1/400);
  /src/external/lgpl3/gmp/dist/tests/mpf/
t-sqrt.c 37 mpf_t x, y, y2; local
60 mpf_init (y2);
69 mpf_mul (y2, y, y);
71 mpf_reldiff (rerr, x, y2);
83 printf (" y2 = "); mpf_dump (y2);
90 mpf_trace (" y2 ", y2);
104 mpf_clear (y2);
  /src/external/lgpl3/mpfr/dist/src/
gammaonethird.c 165 /* Computes y1 and y2 such that: */
167 /* and |y2-Gamma(2/3)| <= 2^{1-prec}Gamma(2/3) */
172 mpfr_gamma_one_and_two_third (mpfr_ptr y1, mpfr_ptr y2, mpfr_prec_t prec)
177 mpfr_set_prec (y2, prec + 4);
185 mpfr_const_pi (y2, MPFR_RNDN);
186 mpfr_mul_2ui (y2, y2, 1, MPFR_RNDN);
188 mpfr_div (y2, y2, temp, MPFR_RNDN);
pow_si.c 234 mpfr_t y2, nn; local
242 mpfr_init2 (y2, 2);
246 inexact = mpfr_pow_general (y2, x, nn, rnd, 1,
249 mpfr_set (y, y2, MPFR_RNDN);
250 mpfr_clear (y2);
pow_z.c 118 mpfr_t y2, zz; local
130 mpfr_init2 (y2, 2);
134 inexact = mpfr_pow_general (y2, x, zz, rnd, 1,
137 mpfr_set (y, y2, MPFR_RNDN);
138 mpfr_clear (y2);
330 mpfr_t y2, zz; local
338 mpfr_init2 (y2, 2);
342 inexact = mpfr_pow_general (y2, x, zz, rnd, 1,
345 mpfr_set (y, y2, MPFR_RNDN);
346 mpfr_clear (y2);
    [all...]
  /src/sys/crypto/chacha/
chacha_ref.c 72 uint32_t y0,y1,y2,y3,y4,y5,y6,y7,y8,y9,y10,y11,y12,y13,y14,y15;
76 x2 = y2 = le32dec(c + 8);
94 CHACHA_QUARTERROUND( y2, y6,y10,y14);
98 CHACHA_QUARTERROUND( y2, y7, y8,y13);
104 le32enc(out + 8, x2 + y2);
132 uint32_t y0,y1,y2,y3,y4,y5,y6,y7,y8,y9,y10,y11,y12,y13,y14,y15;
155 y2 = x2;
172 CHACHA_QUARTERROUND( y2, y6,y10,y14);
176 CHACHA_QUARTERROUND( y2, y7, y8,y13);
181 le32enc(s + 8, x2 + y2);
71 uint32_t y0,y1,y2,y3,y4,y5,y6,y7,y8,y9,y10,y11,y12,y13,y14,y15; local
130 uint32_t y0,y1,y2,y3,y4,y5,y6,y7,y8,y9,y10,y11,y12,y13,y14,y15; local
253 uint32_t y0,y1,y2,y3,y4,y5,y6,y7,y8,y9,y10,y11,y12,y13,y14,y15; local
376 uint32_t y0,y1,y2,y3,y4,y5,y6,y7,y8,y9,y10,y11,y12,y13,y14,y15; local
    [all...]

Completed in 37 milliseconds

1 2 3 4 5 6 7 8