crypto/libecc/include/libecc/curves/aff_pt.h
41
ATTRIBUTE_WARN_UNUSED_RET int aff_pt_y_from_x(fp_t y1, fp_t y2, fp_src_t x, ec_shortw_crv_src_t curve);
crypto/libecc/include/libecc/curves/aff_pt.h
91
ATTRIBUTE_WARN_UNUSED_RET int aff_pt_edwards_y_from_x(fp_t y1, fp_t y2, fp_src_t x, ec_edwards_crv_src_t crv);
crypto/libecc/src/curves/aff_pt.c
102
int aff_pt_y_from_x(fp_t y1, fp_t y2, fp_src_t x, ec_shortw_crv_src_t curve)
crypto/libecc/src/curves/aff_pt.c
106
MUST_HAVE((y1 != NULL) && (y2 != NULL), ret, err);
crypto/libecc/src/curves/aff_pt.c
110
MUST_HAVE((y1 != y2) && (y1 != x), ret, err);
crypto/libecc/src/curves/aff_pt.c
114
ret = fp_copy(y1, x); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
118
ret = fp_sqr(y1, y1); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
119
ret = fp_mul(y1, y1, x); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
121
ret = fp_add(y1, y1, y2); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
122
ret = fp_add(y1, y1, &(curve->b)); EG(ret, err);
crypto/libecc/src/curves/aff_pt.c
127
ret = fp_sqrt(y1, y2, y1);
crypto/libecc/src/curves/aff_pt_edwards.c
766
int aff_pt_edwards_y_from_x(fp_t y1, fp_t y2, fp_src_t x, ec_edwards_crv_src_t crv)
crypto/libecc/src/curves/aff_pt_edwards.c
776
MUST_HAVE((y1 != NULL) && (y2 != NULL), ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
778
MUST_HAVE((y1 != y2) && (y1 != x), ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
780
ret = fp_init(y1, x->ctx); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
789
ret = fp_mul(y1, x, &(crv->a)); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
790
ret = fp_mul(y1, y1, x); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
791
ret = fp_sub(y1, &tmp, y1); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
798
ret = fp_mul(&tmp, y1, y2); EG(ret, err);
crypto/libecc/src/curves/aff_pt_edwards.c
800
ret = fp_sqrt(y1, y2, &tmp);
crypto/libecc/src/examples/hash/gostr34_11_94.c
51
u64 y1, y2, y3, y4;
crypto/libecc/src/examples/hash/gostr34_11_94.c
53
y1 = Y[3];
crypto/libecc/src/examples/hash/gostr34_11_94.c
58
Y_[0] = (y1 ^ y2);
crypto/libecc/src/sig/eddsa.c
369
fp tmp_x, tmp_y, y1;
crypto/libecc/src/sig/eddsa.c
370
tmp_x.magic = tmp_y.magic = y1.magic = WORD(0);
crypto/libecc/src/sig/eddsa.c
372
ret = fp_init(&y1, in->y.ctx); EG(ret, err1);
crypto/libecc/src/sig/eddsa.c
392
ret = fp_set_word_value(&y1, WORD(2)); EG(ret, err1);
crypto/libecc/src/sig/eddsa.c
393
ret = fp_sub(&y1, &y1, &tmp_x); EG(ret, err1);
crypto/libecc/src/sig/eddsa.c
394
ret = fp_sub(&y1, &y1, &tmp_y); EG(ret, err1);
crypto/libecc/src/sig/eddsa.c
398
ret = fp_mul(&y1, &y1, &tmp_x); EG(ret, err1);
crypto/libecc/src/sig/eddsa.c
399
ret = eddsa_encode_integer(&(y1.fp_val), buf, buflen);
crypto/libecc/src/sig/eddsa.c
403
fp_uninit(&y1);
crypto/openssl/crypto/bn/bn_exp.c
562
BN_ULONG y0, y1, y2, y3;
crypto/openssl/crypto/bn/bn_exp.c
568
y1 = (BN_ULONG)0 - (constant_time_eq_int(i, 1) & 1);
crypto/openssl/crypto/bn/bn_exp.c
576
acc |= ((table[j + 0 * xstride] & y0) | (table[j + 1 * xstride] & y1) | (table[j + 2 * xstride] & y2) | (table[j + 3 * xstride] & y3))
crypto/openssl/crypto/bn/bn_gf2m.c
406
BN_ULONG x1, x0, y1, y0, zz[4];
crypto/openssl/crypto/bn/bn_gf2m.c
429
y1 = ((j + 1) == b->top) ? 0 : b->d[j + 1];
crypto/openssl/crypto/bn/bn_gf2m.c
433
bn_GF2m_mul_2x2(zz, x1, x0, y1, y0);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
282
BIGNUM *tmp, *R, *r1r2x2, *y1, *r1x2;
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
292
y1 = BN_CTX_get(ctx);
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
377
if (BN_copy(y1, Y) == NULL
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
378
|| !BN_sub_word(y1, 1))
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
381
if (BN_are_coprime(y1, e, ctx)) {
crypto/openssl/crypto/bn/bn_rsa_fips186_4.c
402
BN_clear(y1);
crypto/openssl/crypto/ec/ec2_smpl.c
357
BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t;
crypto/openssl/crypto/ec/ec2_smpl.c
387
y1 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
407
if (!BN_copy(y1, b->Y))
crypto/openssl/crypto/ec/ec2_smpl.c
410
if (!EC_POINT_get_affine_coordinates(group, b, x1, y1, ctx))
crypto/openssl/crypto/ec/ec2_smpl.c
417
if (!BN_GF2m_add(s, y0, y1))
crypto/openssl/crypto/ec/ec2_smpl.c
430
if (BN_GF2m_cmp(y0, y1) || BN_is_zero(x1)) {
crypto/openssl/crypto/ec/ec2_smpl.c
436
if (!group->meth->field_div(group, s, y1, x1, ctx))
crypto/openssl/crypto/ec/ec2_smpl.c
455
if (!BN_GF2m_add(y2, y2, y1))
crypto/openssl/crypto/ec/ecp_nistp224.c
1077
copy_conditional(y_out, y1, z2_is_zero);
crypto/openssl/crypto/ec/ecp_nistp224.c
894
const felem x1, const felem y1, const felem z1,
crypto/openssl/crypto/ec/ecp_nistp224.c
913
felem_mul(tmp2, ftmp4, y1);
crypto/openssl/crypto/ec/ecp_nistp224.c
925
felem_assign(ftmp4, y1);
crypto/openssl/crypto/ec/ecp_nistp224.c
993
point_double(x3, y3, z3, x1, y1, z1);
crypto/openssl/crypto/ec/ecp_nistp256.c
1231
const felem x1, const felem y1, const felem z1,
crypto/openssl/crypto/ec/ecp_nistp256.c
1285
felem_mul(tmp, y1, ftmp2);
crypto/openssl/crypto/ec/ecp_nistp256.c
1303
felem_assign(ftmp6, y1);
crypto/openssl/crypto/ec/ecp_nistp256.c
1359
point_double(x3, y3, z3, x1, y1, z1);
crypto/openssl/crypto/ec/ecp_nistp256.c
1403
copy_conditional(y_out, y1, z2_is_zero);
crypto/openssl/crypto/ec/ecp_nistp256.c
1416
smallfelem x1, smallfelem y1, smallfelem z1,
crypto/openssl/crypto/ec/ecp_nistp256.c
1422
smallfelem_expand(felem_y1, y1);
crypto/openssl/crypto/ec/ecp_nistp384.c
1104
const felem x1, const felem y1, const felem z1,
crypto/openssl/crypto/ec/ecp_nistp384.c
1140
felem_mul_reduce(ftmp6, y1, ftmp2); /* ftmp6[i] < 2^56 */
crypto/openssl/crypto/ec/ecp_nistp384.c
1153
felem_assign(ftmp6, y1); /* ftmp6[i] < 2^56 */
crypto/openssl/crypto/ec/ecp_nistp384.c
1203
point_double(x3, y3, z3, x1, y1, z1);
crypto/openssl/crypto/ec/ecp_nistp384.c
1237
copy_conditional(y_out, y1, z2_is_zero);
crypto/openssl/crypto/ec/ecp_nistp521.c
1123
const felem x1, const felem y1, const felem z1,
crypto/openssl/crypto/ec/ecp_nistp521.c
1167
felem_mul(tmp, y1, ftmp2);
crypto/openssl/crypto/ec/ecp_nistp521.c
1181
felem_assign(ftmp6, y1);
crypto/openssl/crypto/ec/ecp_nistp521.c
1249
point_double(x3, y3, z3, x1, y1, z1);
crypto/openssl/crypto/ec/ecp_nistp521.c
1303
copy_conditional(y_out, y1, z2_is_zero);
crypto/openssl/crypto/sm2/sm2_crypt.c
117
BIGNUM *y1 = NULL;
crypto/openssl/crypto/sm2/sm2_crypt.c
167
y1 = BN_CTX_get(ctx);
crypto/openssl/crypto/sm2/sm2_crypt.c
194
|| !EC_POINT_get_affine_coordinates(group, kG, x1, y1, ctx)
crypto/openssl/crypto/sm2/sm2_crypt.c
237
ctext_struct.C1y = y1;
crypto/openssl/test/ec_internal_test.c
247
BIGNUM *x1 = NULL, *y1 = NULL, *z1 = NULL, *x2 = NULL, *y2 = NULL;
crypto/openssl/test/ec_internal_test.c
261
y1 = BN_CTX_get(ctx);
crypto/openssl/test/ec_internal_test.c
277
|| !TEST_int_gt(BN_hex2bn(&y1, p521m1), 0)
crypto/openssl/test/ec_internal_test.c
281
y1, z1, ctx))
crypto/openssl/test/ec_internal_test.c
283
|| !TEST_true(EC_POINT_get_affine_coordinates(grp, Q, x1, y1, ctx))
crypto/openssl/test/ec_internal_test.c
289
|| !TEST_int_eq(BN_cmp(y1, y2), 0))
lib/libvgl/simple.c
185
VGLLine(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color)
lib/libvgl/simple.c
191
dy = SL_ABSOLUTE(y2, y1, sign_y);
lib/libvgl/simple.c
199
SL_SWAP(x1, y1);
lib/libvgl/simple.c
213
y = y1;
lib/libvgl/simple.c
215
y1 = y2;
lib/libvgl/simple.c
229
plot(object, x1, y1, reverse, color); /* plot first two points */
lib/libvgl/simple.c
244
plot(object, x1, y1, reverse, color);
lib/libvgl/simple.c
245
plot(object, --x1, y1, reverse, color);
lib/libvgl/simple.c
254
plot(object, x1, y1, reverse, color);
lib/libvgl/simple.c
255
plot(object, --x1, y1 -= step, reverse,
lib/libvgl/simple.c
262
plot(object, x1, y1 -= step, reverse,
lib/libvgl/simple.c
264
plot(object, --x1, y1, reverse, color);
lib/libvgl/simple.c
277
plot(object, --x1, y1, reverse, color);
lib/libvgl/simple.c
284
plot(object, --x1, y1, reverse, color);
lib/libvgl/simple.c
291
plot(object, --x1, y1 -= step, reverse, color);
lib/libvgl/simple.c
309
plot(object, x1, y1 -= step, reverse, color);
lib/libvgl/simple.c
310
plot(object, --x1, y1 -= step, reverse, color);
lib/libvgl/simple.c
320
plot(object, x1, y1, reverse, color);
lib/libvgl/simple.c
321
plot(object, --x1, y1 -= step, reverse,
lib/libvgl/simple.c
328
plot(object, x1, y1 -= step, reverse, color);
lib/libvgl/simple.c
329
plot(object, --x1, y1, reverse, color);
lib/libvgl/simple.c
342
plot(object, --x1, y1 -= step, reverse,
lib/libvgl/simple.c
350
plot(object, --x1, y1, reverse, color);
lib/libvgl/simple.c
358
plot(object, --x1, y1 -= step, reverse, color);
lib/libvgl/simple.c
360
plot(object, --x1, y1, reverse, color);
lib/libvgl/simple.c
369
VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color)
lib/libvgl/simple.c
371
VGLLine(object, x1, y1, x2, y1, color);
lib/libvgl/simple.c
372
VGLLine(object, x2, y1, x2, y2, color);
lib/libvgl/simple.c
374
VGLLine(object, x1, y2, x1, y1, color);
lib/libvgl/simple.c
378
VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color)
lib/libvgl/simple.c
382
for (y=y1; y<=y2; y++) VGLLine(object, x1, y, x2, y, color);
lib/libvgl/vgl.h
141
void VGLLine(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color);
lib/libvgl/vgl.h
142
void VGLBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color);
lib/libvgl/vgl.h
143
void VGLFilledBox(VGLBitmap *object, int x1, int y1, int x2, int y2, u_long color);
lib/msun/src/e_hypot.c
108
y1 = 0;
lib/msun/src/e_hypot.c
109
SET_HIGH_WORD(y1,hb);
lib/msun/src/e_hypot.c
110
y2 = b - y1;
lib/msun/src/e_hypot.c
114
w = sqrt(t1*y1-(w*(-w)-(t1*y2+t2*b)));
lib/msun/src/e_hypot.c
53
double a,b,t1,t2,y1,y2,w;
lib/msun/src/e_hypotf.c
22
float a,b,t1,t2,y1,y2,w;
lib/msun/src/e_hypotf.c
70
SET_FLOAT_WORD(y1,hb&0xfffff000);
lib/msun/src/e_hypotf.c
71
y2 = b - y1;
lib/msun/src/e_hypotf.c
74
w = sqrtf(t1*y1-(w*(-w)-(t1*y2+t2*b)));
lib/msun/src/e_hypotl.c
104
y1 = b;
lib/msun/src/e_hypotl.c
106
uv.e = y1; uv.bits.manl = 0; y1 = uv.e;
lib/msun/src/e_hypotl.c
107
y2 = b - y1;
lib/msun/src/e_hypotl.c
111
w = sqrtl(t1*y1-(w*(-w)-(t1*y2+t2*b)));
lib/msun/src/e_hypotl.c
47
long double a=x,b=y,t1,t2,y1,y2,w;
lib/msun/src/e_jn.c
232
if(n==1) return(sign*y1(x));
lib/msun/src/e_jn.c
259
b = y1(x);
lib/msun/src/e_pow.c
100
double y1,t1,t2,r,s,t,u,v,w;
lib/msun/src/e_pow.c
257
y1 = y;
lib/msun/src/e_pow.c
258
SET_LOW_WORD(y1,0);
lib/msun/src/e_pow.c
259
p_l = (y-y1)*t1+y*t2;
lib/msun/src/e_pow.c
260
p_h = y1*t1;
lib/msun/src/e_powf.c
204
SET_FLOAT_WORD(y1,is&0xfffff000);
lib/msun/src/e_powf.c
205
p_l = (y-y1)*t1+y*t2;
lib/msun/src/e_powf.c
206
p_h = y1*t1;
lib/msun/src/e_powf.c
59
float y1,t1,t2,r,s,sn,t,u,v,w;
lib/msun/src/math.h
299
double y1(double);
sbin/ipfw/dummynet.c
1003
int ix = y1;
sbin/ipfw/dummynet.c
1010
double m = (y2-y1)/(x2-x1);
sbin/ipfw/dummynet.c
1011
double c = y1 - m*x1;
sbin/ipfw/dummynet.c
998
double y1 = points[i].prob * samples;
stand/common/gfx_fb.c
1550
gfx_fb_drawrect(uint32_t x1, uint32_t y1, uint32_t x2, uint32_t y2,
stand/common/gfx_fb.c
1561
gfxfb_blt(&c, GfxFbBltVideoFill, 0, 0, x1, y1, x2 - x1,
stand/common/gfx_fb.c
1562
y2 - y1, 0);
stand/common/gfx_fb.c
1564
gfxfb_blt(&c, GfxFbBltVideoFill, 0, 0, x1, y1, x2 - x1, 1, 0);
stand/common/gfx_fb.c
1566
gfxfb_blt(&c, GfxFbBltVideoFill, 0, 0, x1, y1, 1, y2 - y1, 0);
stand/common/gfx_fb.c
1567
gfxfb_blt(&c, GfxFbBltVideoFill, 0, 0, x2, y1, 1, y2 - y1, 0);
stand/common/gfx_fb.c
1572
gfx_fb_line(uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, uint32_t wd)
stand/common/gfx_fb.c
1582
sy = y0 < y1? 1 : -1;
stand/common/gfx_fb.c
1584
dy = y1 > y0? y1 - y0 : y0 - y1;
stand/common/gfx_fb.c
1596
(y1 != (uint32_t)y2 || dx > dy)) {
stand/common/gfx_fb.c
1615
if (y0 == y1)
stand/common/gfx_fb.c
1627
gfx_fb_bezier(uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1, uint32_t x2,
stand/common/gfx_fb.c
1639
sy = y2 - y1;
stand/common/gfx_fb.c
1641
yy = y0 - y1;
stand/common/gfx_fb.c
1648
y0 = sy + y1;
stand/common/gfx_fb.c
1668
dy = 4 * sx * curvature * (y0 - y1) + yy - xy;
stand/common/gfx_fb.c
1677
y1 = 2 * err < dx;
stand/common/gfx_fb.c
1684
if (y1 != 0) {
stand/common/gfx_fb.c
1701
int x1, y1, x2, y2;
stand/common/gfx_fb.c
1736
y1 = uy1 * vf_height + gfx_state.tg_origin.tp_row + yshift;
stand/common/gfx_fb.c
1738
gfx_fb_drawrect(x1, y1, x2, y1 + width, 1);
stand/common/gfx_fb.c
1747
y1 = uy1 * vf_height + gfx_state.tg_origin.tp_row;
stand/common/gfx_fb.c
1748
y1 += vf_height;
stand/common/gfx_fb.c
1750
gfx_fb_drawrect(x1, y1, x1 + width, y2, 1);
stand/common/gfx_fb.c
1753
gfx_fb_drawrect(x1, y1, x1 + width, y2, 1);
stand/common/gfx_fb.c
1757
y1 = uy1 * vf_height + gfx_state.tg_origin.tp_row;
stand/common/gfx_fb.c
1758
y1 += vf_height;
stand/common/gfx_fb.c
1764
gfx_fb_bezier(x1 + i, y1, x1 + i, y2 + i, x2, y2 + i, width-i);
stand/common/gfx_fb.c
1769
y1 = uy2 * vf_height + gfx_state.tg_origin.tp_row;
stand/common/gfx_fb.c
1770
y1 += vf_height - yshift;
stand/common/gfx_fb.c
1774
gfx_fb_bezier(x1, y1 - i, x2 + i, y1 - i, x2 + i, y2, width-i);
stand/common/gfx_fb.c
1778
y1 = uy1 * vf_height + gfx_state.tg_origin.tp_row + yshift;
stand/common/gfx_fb.c
1784
gfx_fb_bezier(x1, y1 + i, x2 + i, y1 + i, x2 + i, y2, width-i);
stand/common/gfx_fb.c
1788
y1 = uy2 * vf_height + gfx_state.tg_origin.tp_row;
stand/common/gfx_fb.c
1789
y1 += vf_height - yshift;
stand/common/gfx_fb.c
1794
gfx_fb_bezier(x1, y1 - i, x2 + i, y1 - i, x2 + i, y2, width-i);
stand/common/gfx_fb.c
842
for (uint32_t y1 = DestinationY; y1 < y2; y1++) {
stand/common/gfx_fb.c
843
uint32_t off = y1 * fbX + DestinationX;
stand/ficl/gfx_loader.c
102
if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
stand/ficl/gfx_loader.c
117
uint32_t x1, y1, x2, y2, f;
stand/ficl/gfx_loader.c
128
y1 = stackPopINT(pVM->pStack);
stand/ficl/gfx_loader.c
142
if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
stand/ficl/gfx_loader.c
167
FICL_UNS x0, y0, x1, y1, wd;
stand/ficl/gfx_loader.c
174
y1 = stackPopUNS(pVM->pStack);
stand/ficl/gfx_loader.c
178
gfx_fb_line(x0, y0, x1, y1, wd);
stand/ficl/gfx_loader.c
184
FICL_UNS x0, y0, x1, y1, x2, y2, width;
stand/ficl/gfx_loader.c
193
y1 = stackPopUNS(pVM->pStack);
stand/ficl/gfx_loader.c
197
gfx_fb_bezier(x0, y0, x1, y1, x2, y2, width);
stand/ficl/gfx_loader.c
203
FICL_UNS x1, x2, y1, y2, fill;
stand/ficl/gfx_loader.c
212
y1 = stackPopUNS(pVM->pStack);
stand/ficl/gfx_loader.c
214
gfx_fb_drawrect(x1, y1, x2, y2, fill);
stand/ficl/gfx_loader.c
220
FICL_UNS x1, x2, y1, y2;
stand/ficl/gfx_loader.c
228
y1 = stackPopUNS(pVM->pStack);
stand/ficl/gfx_loader.c
230
gfx_term_drawrect(x1, y1, x2, y2);
stand/ficl/gfx_loader.c
66
uint32_t x1, y1, x2, y2, f;
stand/ficl/gfx_loader.c
77
y1 = stackPopINT(pVM->pStack);
stand/ficl/gfx_loader.c
82
y1 = gfx_state.tg_origin.tp_row + y1 * gfx_state.tg_font.vf_height;
stand/liblua/gfx_utils.c
105
y1 = luaL_checknumber(L, 3);
stand/liblua/gfx_utils.c
114
if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
stand/liblua/gfx_utils.c
143
uint32_t x0, y0, x1, y1, wd;
stand/liblua/gfx_utils.c
155
y1 = luaL_checknumber(L, 4);
stand/liblua/gfx_utils.c
157
gfx_fb_line(x0, y0, x1, y1, wd);
stand/liblua/gfx_utils.c
164
uint32_t x0, y0, x1, y1, x2, y2, width;
stand/liblua/gfx_utils.c
176
y1 = luaL_checknumber(L, 4);
stand/liblua/gfx_utils.c
180
gfx_fb_bezier(x0, y0, x1, y1, x2, y2, width);
stand/liblua/gfx_utils.c
187
uint32_t x0, y0, x1, y1, fill;
stand/liblua/gfx_utils.c
199
y1 = luaL_checknumber(L, 4);
stand/liblua/gfx_utils.c
201
gfx_fb_drawrect(x0, y0, x1, y1, fill);
stand/liblua/gfx_utils.c
208
uint32_t x0, y0, x1, y1;
stand/liblua/gfx_utils.c
220
y1 = luaL_checknumber(L, 4);
stand/liblua/gfx_utils.c
221
gfx_term_drawrect(x0, y0, x1, y1);
stand/liblua/gfx_utils.c
50
uint32_t x1, y1, x2, y2, f;
stand/liblua/gfx_utils.c
61
y1 = luaL_checknumber(L, 3);
stand/liblua/gfx_utils.c
67
y1 = gfx_state.tg_origin.tp_row + y1 * gfx_state.tg_font.vf_height;
stand/liblua/gfx_utils.c
81
if (gfx_fb_putimage(&png, x1, y1, x2, y2, f) == 0)
stand/liblua/gfx_utils.c
94
uint32_t x1, y1, x2, y2, f;
sys/compat/linuxkpi/common/include/linux/math64.h
122
uint64_t x1, y1, y1z;
sys/compat/linuxkpi/common/include/linux/math64.h
127
y1 = y - y1z * z;
sys/compat/linuxkpi/common/include/linux/math64.h
139
rem += y1;
sys/compat/linuxkpi/common/include/linux/math64.h
140
if ((rem < y1) || (rem >= z)) {
sys/compat/linuxkpi/common/include/linux/math64.h
148
if ((y1 * 2 < y1) || (y1 * 2 >= z)) {
sys/compat/linuxkpi/common/include/linux/math64.h
150
y1 = y1 * 2 - z;
sys/compat/linuxkpi/common/include/linux/math64.h
153
y1 *= 2;
sys/dev/drm2/drm.h
89
unsigned short y1;
sys/dev/iwn/if_iwn.c
5682
#define interpolate(x, x1, y1, x2, y2, n) \
sys/dev/iwn/if_iwn.c
5683
((y1) + fdivround(((int)(x) - (x1)) * ((y2) - (y1)), (x2) - (x1), n))
sys/dev/qat/qat_api/include/lac/cpa_cy_ecsm2.h
120
CpaFlatBuffer y1;
sys/dev/qat/qat_api/include/lac/cpa_cy_ecsm2.h
428
CpaFlatBuffer y1;
sys/dev/virtio/gpu/virtio_gpu.c
196
vtgpu_fb_drawrect(struct vt_device *vd, int x1, int y1, int x2, int y2,
sys/dev/virtio/gpu/virtio_gpu.c
206
vt_fb_drawrect(vd, x1, y1, x2, y2, fill, color);
sys/dev/virtio/gpu/virtio_gpu.c
209
height = y2 - y1 + 1;
sys/dev/virtio/gpu/virtio_gpu.c
210
vtgpu_transfer_to_host_2d(sc, x1, y1, width, height);
sys/dev/virtio/gpu/virtio_gpu.c
211
vtgpu_resource_flush(sc, x1, y1, width, height);
sys/dev/vt/hw/fb/vt_fb.c
219
vt_fb_drawrect(struct vt_device *vd, int x1, int y1, int x2, int y2, int fill,
sys/dev/vt/hw/fb/vt_fb.c
224
for (y = y1; y <= y2; y++) {
sys/dev/vt/hw/fb/vt_fb.c
225
if (fill || (y == y1) || (y == y2)) {
sys/dev/vt/hw/vga/vt_vga.c
374
vga_drawrect(struct vt_device *vd, int x1, int y1, int x2, int y2, int fill,
sys/dev/vt/hw/vga/vt_vga.c
382
for (y = y1; y <= y2; y++) {
sys/dev/vt/hw/vga/vt_vga.c
383
if (fill || (y == y1) || (y == y2)) {
sys/dev/vt/hw/vga/vt_vga.c
787
unsigned int x1, y1, x2, y2, x, y;
sys/dev/vt/hw/vga/vt_vga.c
820
y1 = row * vf->vf_height + vw->vw_draw_area.tr_begin.tp_row;
sys/dev/vt/hw/vga/vt_vga.c
856
for (y = y1; y < y2; y += vf->vf_height) {
sys/dev/vt/hw/vga/vt_vga.c
966
unsigned int x1, y1, x2, y2, i, j, src_x, dst_x, x_count;
sys/dev/vt/hw/vga/vt_vga.c
971
y1 = y;
sys/dev/vt/hw/vga/vt_vga.c
978
for (j = y1; j < y2; ++j) {
sys/dev/vt/hw/vga/vt_vga.c
990
j - y1, 0, 1, fg, bg, 0);
sys/dev/wpi/if_wpi.c
3737
#define interpolate(x, x1, y1, x2, y2, n) \
sys/dev/wpi/if_wpi.c
3738
((y1) + fdivround(((x) - (x1)) * ((y2) - (y1)), (x2) - (x1), n))
sys/net/altq/altq_hfsc.c
1496
u_int64_t y1, y2, dx, dy;
sys/net/altq/altq_hfsc.c
1500
y1 = rtsc_x2y(rtsc, x);
sys/net/altq/altq_hfsc.c
1501
if (y1 < y)
sys/net/altq/altq_hfsc.c
1515
y1 = rtsc_x2y(rtsc, x);
sys/net/altq/altq_hfsc.c
1516
if (y1 <= y) {
sys/net/altq/altq_hfsc.c
1537
dx = ((y1 - y) << SM_SHIFT) / (isc->sm1 - isc->sm2);
sys/powerpc/fpu/fpu_div.c
155
u_int r0, r1, r2, r3, d0, d1, d2, d3, y0, y1, y2, y3;
sys/powerpc/fpu/fpu_div.c
227
FPU_SUBCS(d1, r1, y1); FPU_SUBC(d0, r0, y0)
sys/powerpc/fpu/fpu_div.c
264
y1 = y->fp_mant[1];
sys/powerpc/fpu/fpu_sqrt.c
192
u_int y0, y1, y2, y3;
sys/powerpc/fpu/fpu_sqrt.c
310
y1 = 0;
sys/powerpc/fpu/fpu_sqrt.c
324
t1 = y1 | bit;
sys/powerpc/fpu/fpu_sqrt.c
330
y1 |= bit << 1;
sys/powerpc/fpu/fpu_sqrt.c
338
#define t1 y1
sys/powerpc/fpu/fpu_sqrt.c
351
y1 |= 1; /* now t1, y1 are set in concrete */
tools/tools/indent_wrapper/indent_wrapper.c
379
uint64_t y1 = 0;
tools/tools/indent_wrapper/indent_wrapper.c
432
y1 = 0;
tools/tools/indent_wrapper/indent_wrapper.c
448
p1->mask[y1] = BLOCK_ADD >> 8;
tools/tools/indent_wrapper/indent_wrapper.c
449
p1->data[y1++] = ch;
tools/tools/indent_wrapper/indent_wrapper.c
450
if (y1 == BLOCK_SIZE) {
tools/tools/indent_wrapper/indent_wrapper.c
453
y1 = 0;
tools/tools/indent_wrapper/indent_wrapper.c
483
p1->data[y1++] = ch;
tools/tools/indent_wrapper/indent_wrapper.c
484
if (y1 == BLOCK_SIZE) {
tools/tools/indent_wrapper/indent_wrapper.c
487
y1 = 0;
tools/tools/indent_wrapper/indent_wrapper.c
522
p1->length = y1;
tools/tools/indent_wrapper/indent_wrapper.c
669
for (y1 = x = 0; x < size; x++) {
tools/tools/indent_wrapper/indent_wrapper.c
676
for (; y1 < size; y1++) {
tools/tools/indent_wrapper/indent_wrapper.c
677
ch = peek_block(&diff_a_head, y1);
tools/tools/indent_wrapper/indent_wrapper.c
678
if (y1 > x && !(ch & (BLOCK_MASK | BLOCK_ADD)))
tools/tools/indent_wrapper/indent_wrapper.c
738
x = y1;
tools/tools/indent_wrapper/indent_wrapper.c
740
y1 = x + 1;
usr.bin/calendar/dates.c
172
int y1, m1, d1;
usr.bin/calendar/dates.c
176
y1 = tp1->tm_year;
usr.bin/calendar/dates.c
183
if (y1 == y2) {
usr.bin/calendar/dates.c
187
createdate(y1, m1, d);
usr.bin/calendar/dates.c
196
monthdays = monthdaytab[isleap(y1)];
usr.bin/calendar/dates.c
198
createdate(y1, m1, d);
usr.bin/calendar/dates.c
201
createdate(y1, m, d);
usr.bin/calendar/dates.c
203
createdate(y1, m2, d);
usr.bin/calendar/dates.c
214
monthdays = monthdaytab[isleap(y1)];
usr.bin/calendar/dates.c
216
createdate(y1, m1, d);
usr.bin/calendar/dates.c
219
createdate(y1, m, d);
usr.bin/calendar/dates.c
220
for (y = y1 + 1; y < y2; y++) {