Symbol: y0
crypto/openssl/crypto/bn/bn_exp.c
562
BN_ULONG y0, y1, y2, y3;
crypto/openssl/crypto/bn/bn_exp.c
567
y0 = (BN_ULONG)0 - (constant_time_eq_int(i, 0) & 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
428
y0 = b->d[j];
crypto/openssl/crypto/bn/bn_gf2m.c
433
bn_GF2m_mul_2x2(zz, x1, x0, y1, y0);
crypto/openssl/crypto/ec/ec2_smpl.c
357
BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t;
crypto/openssl/crypto/ec/ec2_smpl.c
385
y0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
398
if (!BN_copy(y0, a->Y))
crypto/openssl/crypto/ec/ec2_smpl.c
401
if (!EC_POINT_get_affine_coordinates(group, a, x0, y0, 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)) {
lib/msun/src/e_jn.c
231
if(n==0) return(y0(x));
lib/msun/src/e_jn.c
258
a = y0(x);
lib/msun/src/math.h
298
double y0(double);
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
1589
gfx_fb_setpixel(x0, y0);
stand/common/gfx_fb.c
1594
y2 = y0;
stand/common/gfx_fb.c
1612
gfx_fb_setpixel(x2, y0);
stand/common/gfx_fb.c
1615
if (y0 == y1)
stand/common/gfx_fb.c
1618
y0 += sy;
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
1641
yy = y0 - y1;
stand/common/gfx_fb.c
1647
y2 = y0;
stand/common/gfx_fb.c
1648
y0 = sy + y1;
stand/common/gfx_fb.c
1656
sy = y0 < y2? 1 : -1;
stand/common/gfx_fb.c
1668
dy = 4 * sx * curvature * (y0 - y1) + yy - xy;
stand/common/gfx_fb.c
1674
gfx_fb_setpixel(x0 + i, y0);
stand/common/gfx_fb.c
1675
if (x0 == x2 && y0 == y2)
stand/common/gfx_fb.c
1685
y0 += sy;
stand/common/gfx_fb.c
1692
gfx_fb_line(x0, y0, x2, y2, width);
stand/ficl/gfx_loader.c
167
FICL_UNS x0, y0, x1, y1, wd;
stand/ficl/gfx_loader.c
176
y0 = 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
195
y0 = stackPopUNS(pVM->pStack);
stand/ficl/gfx_loader.c
197
gfx_fb_bezier(x0, y0, x1, y1, x2, y2, width);
stand/liblua/gfx_utils.c
143
uint32_t x0, y0, x1, y1, wd;
stand/liblua/gfx_utils.c
153
y0 = luaL_checknumber(L, 2);
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
174
y0 = luaL_checknumber(L, 2);
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
197
y0 = luaL_checknumber(L, 2);
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
218
y0 = luaL_checknumber(L, 2);
stand/liblua/gfx_utils.c
221
gfx_term_drawrect(x0, y0, x1, y1);
sys/dev/atkbdc/psm.c
3803
int x0, y0;
sys/dev/atkbdc/psm.c
3830
y0 = f->y;
sys/dev/atkbdc/psm.c
3840
if (y0 <= margin_bottom)
sys/dev/atkbdc/psm.c
3841
y0 = margin_bottom;
sys/dev/atkbdc/psm.c
3842
else if (y0 >= max_y - margin_top)
sys/dev/atkbdc/psm.c
3843
y0 = max_y - margin_top;
sys/dev/atkbdc/psm.c
3846
x0, y0, f->p, f->w));
sys/dev/atkbdc/psm.c
3883
start_y = y0;
sys/dev/atkbdc/psm.c
3951
dyp = abs(y0 - start_y);
sys/dev/atkbdc/psm.c
4149
int x0, y0;
sys/dev/atkbdc/psm.c
4192
y0 = f->y;
sys/dev/atkbdc/psm.c
4202
if (y0 <= margin_bottom)
sys/dev/atkbdc/psm.c
4203
y0 = margin_bottom;
sys/dev/atkbdc/psm.c
4204
else if (y0 >= max_y - margin_top)
sys/dev/atkbdc/psm.c
4205
y0 = max_y - margin_top;
sys/dev/atkbdc/psm.c
4213
smoother->start_y = y0;
sys/dev/atkbdc/psm.c
4234
dy = y0 - smoother->queue[cursor].y;
sys/dev/atkbdc/psm.c
4238
smoother_id, x0, y0, f->p, f->w));
sys/dev/atkbdc/psm.c
4243
smoother->queue[cursor].y = y0;
sys/dev/atkbdc/psm.c
4249
smoother_id, cursor, x0, y0, dx, dy));
sys/dev/atkbdc/psm.c
4274
if (y0 <= na_bottom || y0 >= max_y - na_top) {
sys/dev/atkbdc/psm.c
4289
dyp = abs(y0 - smoother->queue[peer].y) + 1;
sys/dev/atkbdc/psm.c
4851
int c, x0, y0;
sys/dev/atkbdc/psm.c
4880
y0 = pb->ipacket[2] | (((pb->ipacket[4]) & 0xf0) << 4);
sys/dev/atkbdc/psm.c
4883
if (y0 & 0x800)
sys/dev/atkbdc/psm.c
4884
y0 -= 0x1000;
sys/dev/atkbdc/psm.c
4887
*y = y0 - sc->yold;
sys/dev/atkbdc/psm.c
4899
sc->yold = y0;
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
263
y0 = y->fp_mant[0];
sys/powerpc/fpu/fpu_sqrt.c
192
u_int y0, y1, y2, y3;
sys/powerpc/fpu/fpu_sqrt.c
290
y0 = bit << 1;
sys/powerpc/fpu/fpu_sqrt.c
295
t0 = y0 | bit; /* t = y + bit */
sys/powerpc/fpu/fpu_sqrt.c
299
y0 |= bit << 1; /* y += bit << 1 */
sys/powerpc/fpu/fpu_sqrt.c
307
#define t0 y0
sys/powerpc/fpu/fpu_sqrt.c
319
y0 |= 1; /* y += bit << 1 */
usr.sbin/moused/moused/moused.c
2824
r_gestures(struct tpad *tp, int x0, int y0, u_int z, int w, int nfingers,
usr.sbin/moused/moused/moused.c
2887
if (margin_bottom != 0 && y0 <= min_y + margin_bottom)
usr.sbin/moused/moused/moused.c
2888
y0 = min_y + margin_bottom;
usr.sbin/moused/moused/moused.c
2889
else if (margin_top != 0 && y0 >= max_y - margin_top)
usr.sbin/moused/moused/moused.c
2890
y0 = max_y - margin_top;
usr.sbin/moused/moused/moused.c
2892
debug("packet: [%d, %d], %d, %d", x0, y0, z, w);
usr.sbin/moused/moused/moused.c
2919
gest->start_y = y0;
usr.sbin/moused/moused/moused.c
2925
gest->prev_y = y0;
usr.sbin/moused/moused/moused.c
2970
dy = abs(y0 - start_y);
usr.sbin/moused/moused/moused.c
523
static enum gesture r_gestures(struct tpad *tp, int x0, int y0, u_int z, int w,