Symbol: x0
crypto/openssh/chacha.c
123
x0 = j0;
crypto/openssh/chacha.c
140
QUARTERROUND( x0, x4, x8,x12)
crypto/openssh/chacha.c
144
QUARTERROUND( x0, x5,x10,x15)
crypto/openssh/chacha.c
149
x0 = PLUS(x0,j0);
crypto/openssh/chacha.c
166
x0 = XOR(x0,U8TO32_LITTLE(m + 0));
crypto/openssh/chacha.c
189
U32TO8_LITTLE(c + 0,x0);
crypto/openssh/chacha.c
91
u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15;
crypto/openssh/libcrux_mlkem768_sha3.h
179
static inline uint32_t core_num__u8_6__count_ones(uint8_t x0) {
crypto/openssh/libcrux_mlkem768_sha3.h
181
return __popcnt(x0);
crypto/openssh/libcrux_mlkem768_sha3.h
183
return __builtin_popcount(x0);
crypto/openssh/libcrux_mlkem768_sha3.h
186
return v[x0 & 0xf] + v[(x0 >> 4) & 0xf];
crypto/openssh/libcrux_mlkem768_sha3.h
270
static inline uint16_t core_num__u16_7__wrapping_add(uint16_t x0, uint16_t x1);
crypto/openssh/libcrux_mlkem768_sha3.h
274
static inline uint64_t core_num__u64_9__from_le_bytes(uint8_t x0[8U]);
crypto/openssh/libcrux_mlkem768_sha3.h
276
static inline void core_num__u64_9__to_le_bytes(uint64_t x0, uint8_t x1[8U]);
crypto/openssh/libcrux_mlkem768_sha3.h
278
static inline uint32_t core_num__u8_6__count_ones(uint8_t x0);
crypto/openssh/libcrux_mlkem768_sha3.h
280
static inline uint8_t core_num__u8_6__wrapping_sub(uint8_t x0, uint8_t x1);
crypto/openssh/openbsd-compat/bsd-snprintf.c
668
static double my_modf(double x0, double *iptr)
crypto/openssh/openbsd-compat/bsd-snprintf.c
672
double x = x0;
crypto/openssh/openbsd-compat/bsd-snprintf.c
695
ret = my_modf(x0-l*f, &i2);
crypto/openssh/openbsd-compat/chacha_private.h
125
x0 = j0;
crypto/openssh/openbsd-compat/chacha_private.h
142
QUARTERROUND( x0, x4, x8,x12)
crypto/openssh/openbsd-compat/chacha_private.h
146
QUARTERROUND( x0, x5,x10,x15)
crypto/openssh/openbsd-compat/chacha_private.h
151
x0 = PLUS(x0,j0);
crypto/openssh/openbsd-compat/chacha_private.h
169
x0 = XOR(x0,U8TO32_LITTLE(m + 0));
crypto/openssh/openbsd-compat/chacha_private.h
193
U32TO8_LITTLE(c + 0,x0);
crypto/openssh/openbsd-compat/chacha_private.h
93
u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15;
crypto/openssl/crypto/bn/bn_gf2m.c
406
BN_ULONG x1, x0, y1, y0, zz[4];
crypto/openssl/crypto/bn/bn_gf2m.c
431
x0 = a->d[i];
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
384
x0 = BN_CTX_get(ctx);
crypto/openssl/crypto/ec/ec2_smpl.c
396
if (!BN_copy(x0, a->X))
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
414
if (BN_GF2m_cmp(x0, x1)) {
crypto/openssl/crypto/ec/ec2_smpl.c
415
if (!BN_GF2m_add(t, x0, x1))
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
226
double x0, x1, x2, x3;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
295
x0 = in0.d - TWO(52) * TWO0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
300
x0 += h0lo;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
314
x0 = in0.d - TWO(52) * TWO0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
323
h0lo += x0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
347
x0 = (h0lo - c0lo) + c3lo * (5.0 / TWO130);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
352
x0 += (h0hi - c0hi) + c3hi * (5.0 / TWO130);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
360
h0lo = s3lo * x1 + s2lo * x2 + s1lo * x3 + r0lo * x0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
361
h1lo = r0lo * x1 + s3lo * x2 + s2lo * x3 + r1lo * x0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
362
h2lo = r1lo * x1 + r0lo * x2 + s3lo * x3 + r2lo * x0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
363
h3lo = r2lo * x1 + r1lo * x2 + r0lo * x3 + r3lo * x0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
365
h0hi = s3hi * x1 + s2hi * x2 + s1hi * x3 + r0hi * x0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
366
h1hi = r0hi * x1 + s3hi * x2 + s2hi * x3 + r1hi * x0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
367
h2hi = r1hi * x1 + r0hi * x2 + s3hi * x3 + r2hi * x0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
368
h3hi = r2hi * x1 + r1hi * x2 + r0hi * x3 + r3hi * x0;
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
394
x0 = (h0lo - c0lo) + c3lo * (5.0 / TWO130);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
399
x0 += (h0hi - c0hi) + c3hi * (5.0 / TWO130);
crypto/openssl/crypto/poly1305/poly1305_ieee754.c
407
st->h[0].d = x0 + TWO(52) * TWO0;
crypto/openssl/crypto/rc2/rc2_cbc.c
102
x0 = (RC2_INT)l & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
113
t = (x0 + (x1 & ~x3) + (x2 & x3) + *(p0++)) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
114
x0 = (t << 1) | (t >> 15);
crypto/openssl/crypto/rc2/rc2_cbc.c
115
t = (x1 + (x2 & ~x0) + (x3 & x0) + *(p0++)) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
117
t = (x2 + (x3 & ~x1) + (x0 & x1) + *(p0++)) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
119
t = (x3 + (x0 & ~x2) + (x1 & x2) + *(p0++)) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
127
x0 += p1[x3 & 0x3f];
crypto/openssl/crypto/rc2/rc2_cbc.c
128
x1 += p1[x0 & 0x3f];
crypto/openssl/crypto/rc2/rc2_cbc.c
134
d[0] = (unsigned long)(x0 & 0xffff) | ((unsigned long)(x1 & 0xffff) << 16L);
crypto/openssl/crypto/rc2/rc2_cbc.c
142
register RC2_INT x0, x1, x2, x3, t;
crypto/openssl/crypto/rc2/rc2_cbc.c
146
x0 = (RC2_INT)l & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
159
x3 = (t - (x0 & ~x2) - (x1 & x2) - *(p0--)) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
161
x2 = (t - (x3 & ~x1) - (x0 & x1) - *(p0--)) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
163
x1 = (t - (x2 & ~x0) - (x3 & x0) - *(p0--)) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
164
t = ((x0 << 15) | (x0 >> 1)) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
165
x0 = (t - (x1 & ~x3) - (x2 & x3) - *(p0--)) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
174
x1 = (x1 - p1[x0 & 0x3f]) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
175
x0 = (x0 - p1[x3 & 0x3f]) & 0xffff;
crypto/openssl/crypto/rc2/rc2_cbc.c
179
d[0] = (unsigned long)(x0 & 0xffff) | ((unsigned long)(x1 & 0xffff) << 16L);
crypto/openssl/crypto/rc2/rc2_cbc.c
98
register RC2_INT x0, x1, x2, x3, t;
lib/msun/bsdsrc/b_tgamma.c
223
x0 = 4.6163214496836236e-1; /* xmin - 1 */
lib/msun/bsdsrc/b_tgamma.c
232
if (y <= 1 + (left + x0)) {
lib/msun/bsdsrc/b_tgamma.c
233
yy = ratfun_gam(y - x0, 0);
lib/msun/bsdsrc/b_tgamma.c
243
for (ym1 = y - 1; ym1 > left + x0; y = ym1--, yy.a--) {
lib/msun/bsdsrc/b_tgamma.c
251
yy = ratfun_gam(y - x0, 0);
lib/msun/bsdsrc/b_tgamma.c
265
if (x < x0 + left) {
lib/msun/bsdsrc/b_tgamma.c
273
t = 1 - x0;
lib/msun/bsdsrc/b_tgamma.c
275
d = 1 - x0;
lib/msun/bsdsrc/b_tgamma.c
282
t = x - x0;
lib/msun/bsdsrc/b_tgamma.c
283
d = - x0 - t;
lib/msun/bsdsrc/b_tgamma.c
376
if (x >= 1 + left + x0)
lib/msun/ld80/b_tgammal.c
260
if (y <= 1 + (left + x0)) {
lib/msun/ld80/b_tgammal.c
261
yy = ratfun_gam(y - x0, 0);
lib/msun/ld80/b_tgammal.c
271
for (ym1 = y - 1; ym1 > left + x0; y = ym1--, yy.a--) {
lib/msun/ld80/b_tgammal.c
279
yy = ratfun_gam(y - x0, 0);
lib/msun/ld80/b_tgammal.c
293
if (x < x0 + left) {
lib/msun/ld80/b_tgammal.c
301
t = 1 - x0;
lib/msun/ld80/b_tgammal.c
303
d = 1 - x0;
lib/msun/ld80/b_tgammal.c
310
t = x - x0;
lib/msun/ld80/b_tgammal.c
311
d = - x0 - t;
lib/msun/ld80/b_tgammal.c
403
if (x >= 1 + left + x0)
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
1581
sx = x0 < x1? 1 : -1;
stand/common/gfx_fb.c
1583
dx = x1 > x0? x1 - x0 : x0 - x1;
stand/common/gfx_fb.c
1589
gfx_fb_setpixel(x0, y0);
stand/common/gfx_fb.c
1591
x2 = x0;
stand/common/gfx_fb.c
1598
gfx_fb_setpixel(x0, y2);
stand/common/gfx_fb.c
1601
if (x0 == x1)
stand/common/gfx_fb.c
1605
x0 += sx;
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
1640
xx = x0 - x1;
stand/common/gfx_fb.c
1645
x2 = x0;
stand/common/gfx_fb.c
1646
x0 = sx + x1;
stand/common/gfx_fb.c
1653
sx = x0 < x2? 1 : -1;
stand/common/gfx_fb.c
1667
dx = 4 * sy * curvature * (x1 - x0) + xx - 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
1679
x0 += sx;
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
177
x0 = 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
196
x0 = 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
152
x0 = luaL_checknumber(L, 1);
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
173
x0 = luaL_checknumber(L, 1);
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
196
x0 = luaL_checknumber(L, 1);
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
217
x0 = luaL_checknumber(L, 1);
stand/liblua/gfx_utils.c
221
gfx_term_drawrect(x0, y0, x1, y1);
sys/crypto/chacha20/chacha.c
113
u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15;
sys/crypto/chacha20/chacha.c
147
x0 = j0;
sys/crypto/chacha20/chacha.c
164
QUARTERROUND( x0, x4, x8,x12)
sys/crypto/chacha20/chacha.c
168
QUARTERROUND( x0, x5,x10,x15)
sys/crypto/chacha20/chacha.c
173
x0 = PLUS(x0,j0);
sys/crypto/chacha20/chacha.c
191
x0 = XOR(x0,U8TO32_LITTLE(m + 0));
sys/crypto/chacha20/chacha.c
224
U32TO8_LITTLE(c + 0,x0);
sys/dev/atkbdc/psm.c
3803
int x0, y0;
sys/dev/atkbdc/psm.c
3829
x0 = f->x;
sys/dev/atkbdc/psm.c
3836
if (x0 <= margin_left)
sys/dev/atkbdc/psm.c
3837
x0 = margin_left;
sys/dev/atkbdc/psm.c
3838
else if (x0 >= max_x - margin_right)
sys/dev/atkbdc/psm.c
3839
x0 = max_x - margin_right;
sys/dev/atkbdc/psm.c
3846
x0, y0, f->p, f->w));
sys/dev/atkbdc/psm.c
3882
start_x = x0;
sys/dev/atkbdc/psm.c
3950
dxp = abs(x0 - start_x);
sys/dev/atkbdc/psm.c
4149
int x0, y0;
sys/dev/atkbdc/psm.c
4191
x0 = f->x;
sys/dev/atkbdc/psm.c
4198
if (x0 <= margin_left)
sys/dev/atkbdc/psm.c
4199
x0 = margin_left;
sys/dev/atkbdc/psm.c
4200
else if (x0 >= max_x - margin_right)
sys/dev/atkbdc/psm.c
4201
x0 = max_x - margin_right;
sys/dev/atkbdc/psm.c
4212
smoother->start_x = x0;
sys/dev/atkbdc/psm.c
4233
dx = x0 - smoother->queue[cursor].x;
sys/dev/atkbdc/psm.c
4238
smoother_id, x0, y0, f->p, f->w));
sys/dev/atkbdc/psm.c
4242
smoother->queue[cursor].x = x0;
sys/dev/atkbdc/psm.c
4249
smoother_id, cursor, x0, y0, dx, dy));
sys/dev/atkbdc/psm.c
4269
if (x0 <= na_left || x0 >= max_x - na_right) {
sys/dev/atkbdc/psm.c
4288
dxp = abs(x0 - smoother->queue[peer].x) + 1;
sys/dev/atkbdc/psm.c
4851
int c, x0, y0;
sys/dev/atkbdc/psm.c
4879
x0 = pb->ipacket[1] | (((pb->ipacket[4]) & 0x0f) << 8);
sys/dev/atkbdc/psm.c
4881
if (x0 & 0x800)
sys/dev/atkbdc/psm.c
4882
x0 -= 0x1000;
sys/dev/atkbdc/psm.c
4886
*x = sc->xold - x0;
sys/dev/atkbdc/psm.c
4898
sc->xold = x0;
sys/dev/mlx5/mlx5_ib/mlx5_ib.h
625
struct ib_xrcd *x0;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2944
devr->x0 = mlx5_ib_alloc_xrcd(&dev->ib_dev, NULL);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2945
if (IS_ERR(devr->x0)) {
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2946
ret = PTR_ERR(devr->x0);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2949
devr->x0->device = &dev->ib_dev;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2950
devr->x0->inode = NULL;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2951
atomic_set(&devr->x0->usecnt, 0);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2952
mutex_init(&devr->x0->tgt_qp_mutex);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2953
INIT_LIST_HEAD(&devr->x0->tgt_qp_list);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2971
attr.ext.xrc.xrcd = devr->x0;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
2982
devr->s0->ext.xrc.xrcd = devr->x0;
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3032
mlx5_ib_dealloc_xrcd(devr->x0, NULL);
sys/dev/mlx5/mlx5_ib/mlx5_ib_main.c
3052
mlx5_ib_dealloc_xrcd(devr->x0, NULL);
sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
1814
MLX5_SET(qpc, qpc, xrcd, to_mxrcd(devr->x0)->xrcdn);
sys/dev/mlx5/mlx5_ib/mlx5_ib_srq.c
301
in.xrcd = to_mxrcd(dev->devr.x0)->xrcdn;
sys/powerpc/fpu/fpu_mul.c
103
u_int a3, a2, a1, a0, x3, x2, x1, x0, bit, m;
sys/powerpc/fpu/fpu_mul.c
158
x0 = x->fp_mant[0];
sys/powerpc/fpu/fpu_mul.c
165
FPU_ADDC(a0, a0, x0)
sys/powerpc/fpu/fpu_sqrt.c
191
u_int x0, x1, x2, x3;
sys/powerpc/fpu/fpu_sqrt.c
240
FPU_ADDCS(x1, x1, x1); FPU_ADDC(x0, x0, x0); \
sys/powerpc/fpu/fpu_sqrt.c
244
x0 = (x0 << 1) | (x1 >> 31); x1 = (x1 << 1) | (x2 >> 31); \
sys/powerpc/fpu/fpu_sqrt.c
255
x0 = x->fp_mant[0];
sys/powerpc/fpu/fpu_sqrt.c
289
x0 -= bit;
sys/powerpc/fpu/fpu_sqrt.c
296
if (x0 >= t0) { /* if x >= t then */
sys/powerpc/fpu/fpu_sqrt.c
297
x0 -= t0; /* x -= t */
sys/powerpc/fpu/fpu_sqrt.c
315
FPU_SUBC(d0, x0, t0); /* d = x - t */
sys/powerpc/fpu/fpu_sqrt.c
317
x0 = d0, x1 = d1; /* x -= t */
sys/powerpc/fpu/fpu_sqrt.c
326
FPU_SUBC(d0, x0, t0);
sys/powerpc/fpu/fpu_sqrt.c
328
x0 = d0, x1 = d1;
sys/powerpc/fpu/fpu_sqrt.c
347
FPU_SUBC(d0, x0, t0);
sys/powerpc/fpu/fpu_sqrt.c
349
x0 = d0, x1 = d1, x2 = d2;
sys/powerpc/fpu/fpu_sqrt.c
359
FPU_SUBC(d0, x0, t0);
sys/powerpc/fpu/fpu_sqrt.c
361
x0 = d0, x1 = d1, x2 = d2;
sys/powerpc/fpu/fpu_sqrt.c
381
FPU_SUBC(d0, x0, t0);
sys/powerpc/fpu/fpu_sqrt.c
383
x0 = d0, x1 = d1, x2 = d2; x3 = d3;
sys/powerpc/fpu/fpu_sqrt.c
394
FPU_SUBC(d0, x0, t0);
sys/powerpc/fpu/fpu_sqrt.c
396
x0 = d0, x1 = d1, x2 = d2; x3 = d3;
sys/powerpc/fpu/fpu_sqrt.c
408
x->fp_sticky = x0 | x1 | x2 | x3;
usr.bin/fmt/fmt.c
250
static size_t x0; /* Ditto, ignoring leading whitespace */
usr.bin/fmt/fmt.c
574
x0 = 0;
usr.bin/fmt/fmt.c
630
x0 += pending_spaces;
usr.bin/fmt/fmt.c
634
x0 += width;
usr.bin/fmt/fmt.c
650
if (x0 == 0 || (new_x <= max_length &&
usr.bin/fmt/fmt.c
665
x0 = 0;
usr.bin/fmt/fmt.c
671
x0 = width;
usr.bin/ministat/ministat.c
288
double x0, dx;
usr.bin/ministat/ministat.c
326
pl->x0 = pl->min - .5 * pl->dx;
usr.bin/ministat/ministat.c
373
x = (ds->points[n] - pl->x0) / pl->dx;
usr.bin/ministat/ministat.c
393
x = (ds->points[n] - pl->x0) / pl->dx;
usr.bin/ministat/ministat.c
405
x = ((av - sd) - pl->x0) / pl->dx;
usr.bin/ministat/ministat.c
406
m = ((av + sd) - pl->x0) / pl->dx;
usr.bin/ministat/ministat.c
413
x = (Median(ds) - pl->x0) / pl->dx;
usr.bin/ministat/ministat.c
415
x = (av - pl->x0) / pl->dx;
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
2883
if (margin_left != 0 && x0 <= min_x + margin_left)
usr.sbin/moused/moused/moused.c
2884
x0 = min_x + margin_left;
usr.sbin/moused/moused/moused.c
2885
else if (margin_right != 0 && x0 >= max_x - margin_right)
usr.sbin/moused/moused/moused.c
2886
x0 = max_x - margin_right;
usr.sbin/moused/moused/moused.c
2892
debug("packet: [%d, %d], %d, %d", x0, y0, z, w);
usr.sbin/moused/moused/moused.c
2918
gest->start_x = x0;
usr.sbin/moused/moused/moused.c
2924
gest->prev_x = x0;
usr.sbin/moused/moused/moused.c
2969
dx = abs(x0 - start_x);
usr.sbin/moused/moused/moused.c
523
static enum gesture r_gestures(struct tpad *tp, int x0, int y0, u_int z, int w,