x 46 lib-src/ebrowse.c streq (char const *x, char const *y) x 48 lib-src/ebrowse.c return strcmp (x, y) == 0; x 52 lib-src/ebrowse.c filename_eq (char const *x, char const *y) x 55 lib-src/ebrowse.c return strcasecmp (x, y) == 0; x 57 lib-src/ebrowse.c return stricmp (x, y) == 0; x 59 lib-src/ebrowse.c return streq (x, y); x 23 lib/byteswap.in.h #define bswap_16(x) ((((x) & 0x00FF) << 8) | \ x 24 lib/byteswap.in.h (((x) & 0xFF00) >> 8)) x 28 lib/byteswap.in.h #define bswap_32(x) ((((x) & 0x000000FF) << 24) | \ x 29 lib/byteswap.in.h (((x) & 0x0000FF00) << 8) | \ x 30 lib/byteswap.in.h (((x) & 0x00FF0000) >> 8) | \ x 31 lib/byteswap.in.h (((x) & 0xFF000000) >> 24)) x 35 lib/byteswap.in.h #define bswap_64(x) ((((x) & 0x00000000000000FFULL) << 56) | \ x 36 lib/byteswap.in.h (((x) & 0x000000000000FF00ULL) << 40) | \ x 37 lib/byteswap.in.h (((x) & 0x0000000000FF0000ULL) << 24) | \ x 38 lib/byteswap.in.h (((x) & 0x00000000FF000000ULL) << 8) | \ x 39 lib/byteswap.in.h (((x) & 0x000000FF00000000ULL) >> 8) | \ x 40 lib/byteswap.in.h (((x) & 0x0000FF0000000000ULL) >> 24) | \ x 41 lib/byteswap.in.h (((x) & 0x00FF000000000000ULL) >> 40) | \ x 42 lib/byteswap.in.h (((x) & 0xFF00000000000000ULL) >> 56)) x 126 lib/cdefs.h #define __CONCAT(x,y) x ## y x 127 lib/cdefs.h #define __STRING(x) #x x 364 lib/cdefs.h # define __attribute_format_arg__(x) __attribute__ ((__format_arg__ (x))) x 366 lib/cdefs.h # define __attribute_format_arg__(x) /* Ignore */ x 667 lib/cdefs.h # define __attr_access(x) __attribute__ ((__access__ x)) x 684 lib/cdefs.h # define __attr_access(x) x 44 lib/count-leading-zeros.h return x ? BUILTIN (x) : CHAR_BIT * sizeof x; x 54 lib/count-leading-zeros.h if (MSC_BUILTIN (&result, x)) \ x 55 lib/count-leading-zeros.h return CHAR_BIT * sizeof x - 1 - result; \ x 56 lib/count-leading-zeros.h return CHAR_BIT * sizeof x; \ x 65 lib/count-leading-zeros.h if (! x) \ x 66 lib/count-leading-zeros.h return CHAR_BIT * sizeof x; \ x 68 lib/count-leading-zeros.h (leading_32 = ((x >> (sizeof (TYPE) * CHAR_BIT - 32)) \ x 70 lib/count-leading-zeros.h count < CHAR_BIT * sizeof x - 32 && !leading_32); \ x 72 lib/count-leading-zeros.h x = x << 31 << 1; \ x 80 lib/count-leading-zeros.h count_leading_zeros_32 (unsigned int x) x 89 lib/count-leading-zeros.h x |= x >> 1; x 90 lib/count-leading-zeros.h x |= x >> 2; x 91 lib/count-leading-zeros.h x |= x >> 4; x 92 lib/count-leading-zeros.h x |= x >> 8; x 93 lib/count-leading-zeros.h x |= x >> 16; x 94 lib/count-leading-zeros.h return de_Bruijn_lookup[((x * 0x07c4acddU) & 0xffffffffU) >> 27]; x 100 lib/count-leading-zeros.h count_leading_zeros (unsigned int x) x 107 lib/count-leading-zeros.h count_leading_zeros_l (unsigned long int x) x 114 lib/count-leading-zeros.h count_leading_zeros_ll (unsigned long long int x) x 119 lib/count-leading-zeros.h if (_BitScanReverse (&result, (unsigned long) (x >> 32))) x 120 lib/count-leading-zeros.h return CHAR_BIT * sizeof x - 1 - 32 - result; x 121 lib/count-leading-zeros.h if (_BitScanReverse (&result, (unsigned long) x)) x 122 lib/count-leading-zeros.h return CHAR_BIT * sizeof x - 1 - result; x 123 lib/count-leading-zeros.h return CHAR_BIT * sizeof x; x 44 lib/count-one-bits.h return GCC_BUILTIN (x) x 50 lib/count-one-bits.h count_one_bits_32 (unsigned int x) x 52 lib/count-one-bits.h x = ((x & 0xaaaaaaaaU) >> 1) + (x & 0x55555555U); x 53 lib/count-one-bits.h x = ((x & 0xccccccccU) >> 2) + (x & 0x33333333U); x 54 lib/count-one-bits.h x = (x >> 16) + (x & 0xffff); x 55 lib/count-one-bits.h x = ((x & 0xf0f0) >> 4) + (x & 0x0f0f); x 56 lib/count-one-bits.h return (x >> 8) + (x & 0x00ff); x 69 lib/count-one-bits.h count += count_one_bits_32 (x); \ x 70 lib/count-one-bits.h x = x >> 31 >> 1; \ x 94 lib/count-one-bits.h static inline __popcnt64 (unsigned long long x) x 96 lib/count-one-bits.h return __popcnt ((unsigned int) (x >> 32)) + __popcnt ((unsigned int) x); x 123 lib/count-one-bits.h return MSC_BUILTIN (x); \ x 139 lib/count-one-bits.h count_one_bits (unsigned int x) x 146 lib/count-one-bits.h count_one_bits_l (unsigned long int x) x 153 lib/count-one-bits.h count_one_bits_ll (unsigned long long int x) x 44 lib/count-trailing-zeros.h return x ? BUILTIN (x) : CHAR_BIT * sizeof x; x 54 lib/count-trailing-zeros.h return MSC_BUILTIN (&result, x) ? result : CHAR_BIT * sizeof x; \ x 62 lib/count-trailing-zeros.h if (! x) \ x 63 lib/count-trailing-zeros.h return CHAR_BIT * sizeof x; \ x 65 lib/count-trailing-zeros.h (count < CHAR_BIT * sizeof x - 32 \ x 66 lib/count-trailing-zeros.h && ! (x & 0xffffffffU)); \ x 68 lib/count-trailing-zeros.h x = x >> 31 >> 1; \ x 69 lib/count-trailing-zeros.h return count + count_trailing_zeros_32 (x); \ x 76 lib/count-trailing-zeros.h count_trailing_zeros_32 (unsigned int x) x 84 lib/count-trailing-zeros.h return de_Bruijn_lookup[(((x & -x) * 0x077cb531U) & 0xffffffffU) >> 27]; x 90 lib/count-trailing-zeros.h count_trailing_zeros (unsigned int x) x 97 lib/count-trailing-zeros.h count_trailing_zeros_l (unsigned long int x) x 104 lib/count-trailing-zeros.h count_trailing_zeros_ll (unsigned long long int x) x 109 lib/count-trailing-zeros.h if (_BitScanForward (&result, (unsigned long) x)) x 111 lib/count-trailing-zeros.h if (_BitScanForward (&result, (unsigned long) (x >> 32))) x 113 lib/count-trailing-zeros.h return CHAR_BIT * sizeof x; x 187 lib/diffseq.h #define XREF_YREF_EQUAL(x,y) EQUAL (xv[x], yv[y]) x 189 lib/diffseq.h #define XREF_YREF_EQUAL(x,y) XVECREF_YVECREF_EQUAL (ctxt, x, y) x 222 lib/diffseq.h OFFSET x; x 228 lib/diffseq.h for (x = x0, y = x0 - d; x 229 lib/diffseq.h x < xlim && y < ylim && XREF_YREF_EQUAL (x, y); x 230 lib/diffseq.h x++, y++) x 232 lib/diffseq.h if (x - x0 > SNAKE_LIMIT) x 234 lib/diffseq.h fd[d] = x; x 235 lib/diffseq.h if (odd && bmin <= d && d <= bmax && bd[d] <= x) x 237 lib/diffseq.h part->xmid = x; x 255 lib/diffseq.h OFFSET x; x 261 lib/diffseq.h for (x = x0, y = x0 - d; x 262 lib/diffseq.h xoff < x && yoff < y && XREF_YREF_EQUAL (x - 1, y - 1); x 263 lib/diffseq.h x--, y--) x 265 lib/diffseq.h if (x0 - x > SNAKE_LIMIT) x 267 lib/diffseq.h bd[d] = x; x 268 lib/diffseq.h if (!odd && fmin <= d && d <= fmax && x <= fd[d]) x 270 lib/diffseq.h part->xmid = x; x 302 lib/diffseq.h OFFSET x = fd[d]; x 303 lib/diffseq.h OFFSET y = x - d; x 304 lib/diffseq.h OFFSET v = (x - xoff) * 2 - dd; x 309 lib/diffseq.h && xoff + SNAKE_LIMIT <= x && x < xlim x 316 lib/diffseq.h for (k = 1; XREF_YREF_EQUAL (x - k, y - k); k++) x 320 lib/diffseq.h part->xmid = x; x 341 lib/diffseq.h OFFSET x = bd[d]; x 342 lib/diffseq.h OFFSET y = x - d; x 343 lib/diffseq.h OFFSET v = (xlim - x) * 2 + dd; x 348 lib/diffseq.h && xoff < x && x <= xlim - SNAKE_LIMIT x 355 lib/diffseq.h for (k = 0; XREF_YREF_EQUAL (x + k, y + k); k++) x 359 lib/diffseq.h part->xmid = x; x 388 lib/diffseq.h OFFSET x = MIN (fd[d], xlim); x 389 lib/diffseq.h OFFSET y = x - d; x 392 lib/diffseq.h x = ylim + d; x 395 lib/diffseq.h if (fxybest < x + y) x 397 lib/diffseq.h fxybest = x + y; x 398 lib/diffseq.h fxbest = x; x 406 lib/diffseq.h OFFSET x = MAX (xoff, bd[d]); x 407 lib/diffseq.h OFFSET y = x - d; x 410 lib/diffseq.h x = yoff + d; x 413 lib/diffseq.h if (x + y < bxybest) x 415 lib/diffseq.h bxybest = x + y; x 416 lib/diffseq.h bxbest = x; x 465 lib/diffseq.h #define XREF_YREF_EQUAL(x,y) EQUAL (xv[x], yv[y]) x 467 lib/diffseq.h #define XREF_YREF_EQUAL(x,y) XVECREF_YVECREF_EQUAL (ctxt, x, y) x 423 lib/fcntl.c int x = va_arg (arg, int); x 424 lib/fcntl.c result = fcntl (fd, action, x); x 55 lib/fsusage.c #define PROPAGATE_ALL_ONES(x) \ x 56 lib/fsusage.c ((sizeof (x) < sizeof (uintmax_t) \ x 57 lib/fsusage.c && (~ (x) == (sizeof (x) < sizeof (int) \ x 58 lib/fsusage.c ? - (1 << (sizeof (x) * CHAR_BIT)) \ x 60 lib/fsusage.c ? UINTMAX_MAX : (uintmax_t) (x)) x 63 lib/fsusage.c #define EXTRACT_TOP_BIT(x) ((x) \ x 64 lib/fsusage.c & ((uintmax_t) 1 << (sizeof (x) * CHAR_BIT - 1))) x 73 lib/fsusage.c #define PROPAGATE_TOP_BIT(x) ((x) | ~ (EXTRACT_TOP_BIT (x) - 1)) x 90 lib/ftoastr.c int width, int prec, FLOAT x) x 92 lib/ftoastr.c PROMOTED_FLOAT promoted_x = x; x 112 lib/ftoastr.c FTOASTR (char *buf, size_t bufsize, int flags, int width, FLOAT x) x 122 lib/ftoastr.c PROMOTED_FLOAT promoted_x = x; x 124 lib/ftoastr.c FLOAT abs_x = x < 0 ? -x : x; x 148 lib/ftoastr.c || (n < bufsize && STRTOF (buf, NULL) == x)) x 48 lib/ftoastr.h int ftoastr (char *buf, size_t bufsize, int flags, int width, float x); x 49 lib/ftoastr.h int dtoastr (char *buf, size_t bufsize, int flags, int width, double x); x 50 lib/ftoastr.h int ldtoastr (char *buf, size_t bufsize, int flags, int width, long double x); x 54 lib/ftoastr.h int c_dtoastr (char *buf, size_t bufsize, int flags, int width, double x); x 55 lib/ftoastr.h int c_ldtoastr (char *buf, size_t bufsize, int flags, int width, long double x); x 35 lib/getopt-pfx-core.h # define __GETOPT_CONCAT(x, y) x ## y x 36 lib/getopt-pfx-core.h # define __GETOPT_XCONCAT(x, y) __GETOPT_CONCAT (x, y) x 35 lib/getopt-pfx-ext.h # define __GETOPT_CONCAT(x, y) x ## y x 36 lib/getopt-pfx-ext.h # define __GETOPT_XCONCAT(x, y) __GETOPT_CONCAT (x, y) x 45 lib/ignore-value.h # define ignore_value(x) \ x 46 lib/ignore-value.h (__extension__ ({ __typeof__ (x) __x = (x); (void) __x; })) x 48 lib/ignore-value.h # define ignore_value(x) ((void) (x)) x 71 lib/mini-gmp.c #define GMP_ABS(x) ((x) >= 0 ? (x) : -(x)) x 72 lib/mini-gmp.c #define GMP_NEG_CAST(T,x) (-((T)((x) + 1) - 1)) x 91 lib/mini-gmp.c #define gmp_assert_nocarry(x) do { \ x 92 lib/mini-gmp.c mp_limb_t __cy = (x); \ x 97 lib/mini-gmp.c #define gmp_clz(count, x) do { \ x 98 lib/mini-gmp.c mp_limb_t __clz_x = (x); \ x 111 lib/mini-gmp.c #define gmp_ctz(count, x) do { \ x 112 lib/mini-gmp.c mp_limb_t __ctz_x = (x); \ x 222 lib/mini-gmp.c #define MP_LIMB_T_SWAP(x, y) \ x 224 lib/mini-gmp.c mp_limb_t __mp_limb_t_swap__tmp = (x); \ x 225 lib/mini-gmp.c (x) = (y); \ x 228 lib/mini-gmp.c #define MP_SIZE_T_SWAP(x, y) \ x 230 lib/mini-gmp.c mp_size_t __mp_size_t_swap__tmp = (x); \ x 231 lib/mini-gmp.c (x) = (y); \ x 234 lib/mini-gmp.c #define MP_BITCNT_T_SWAP(x,y) \ x 236 lib/mini-gmp.c mp_bitcnt_t __mp_bitcnt_t_swap__tmp = (x); \ x 237 lib/mini-gmp.c (x) = (y); \ x 240 lib/mini-gmp.c #define MP_PTR_SWAP(x, y) \ x 242 lib/mini-gmp.c mp_ptr __mp_ptr_swap__tmp = (x); \ x 243 lib/mini-gmp.c (x) = (y); \ x 246 lib/mini-gmp.c #define MP_SRCPTR_SWAP(x, y) \ x 248 lib/mini-gmp.c mp_srcptr __mp_srcptr_swap__tmp = (x); \ x 249 lib/mini-gmp.c (x) = (y); \ x 264 lib/mini-gmp.c #define MPZ_PTR_SWAP(x, y) \ x 266 lib/mini-gmp.c mpz_ptr __mpz_ptr_swap__tmp = (x); \ x 267 lib/mini-gmp.c (x) = (y); \ x 270 lib/mini-gmp.c #define MPZ_SRCPTR_SWAP(x, y) \ x 272 lib/mini-gmp.c mpz_srcptr __mpz_srcptr_swap__tmp = (x); \ x 273 lib/mini-gmp.c (x) = (y); \ x 1479 lib/mini-gmp.c mpz_set_si (mpz_t r, signed long int x) x 1481 lib/mini-gmp.c if (x >= 0) x 1482 lib/mini-gmp.c mpz_set_ui (r, x); x 1486 lib/mini-gmp.c mpz_set_ui (r, GMP_NEG_CAST (unsigned long int, x)); x 1492 lib/mini-gmp.c MPZ_REALLOC (r, 1)[0] = GMP_NEG_CAST (unsigned long int, x); x 1497 lib/mini-gmp.c mpz_set_ui (mpz_t r, unsigned long int x) x 1499 lib/mini-gmp.c if (x > 0) x 1502 lib/mini-gmp.c MPZ_REALLOC (r, 1)[0] = x; x 1506 lib/mini-gmp.c while (x >>= LOCAL_GMP_LIMB_BITS) x 1509 lib/mini-gmp.c MPZ_REALLOC (r, r->_mp_size)[r->_mp_size - 1] = x; x 1518 lib/mini-gmp.c mpz_set (mpz_t r, const mpz_t x) x 1521 lib/mini-gmp.c if (r != x) x 1526 lib/mini-gmp.c n = GMP_ABS (x->_mp_size); x 1529 lib/mini-gmp.c mpn_copyi (rp, x->_mp_d, n); x 1530 lib/mini-gmp.c r->_mp_size = x->_mp_size; x 1535 lib/mini-gmp.c mpz_init_set_si (mpz_t r, signed long int x) x 1538 lib/mini-gmp.c mpz_set_si (r, x); x 1542 lib/mini-gmp.c mpz_init_set_ui (mpz_t r, unsigned long int x) x 1545 lib/mini-gmp.c mpz_set_ui (r, x); x 1549 lib/mini-gmp.c mpz_init_set (mpz_t r, const mpz_t x) x 1552 lib/mini-gmp.c mpz_set (r, x); x 1651 lib/mini-gmp.c mpz_realloc2 (mpz_t x, mp_bitcnt_t n) x 1653 lib/mini-gmp.c mpz_realloc (x, 1 + (n - (n != 0)) / GMP_LIMB_BITS); x 1657 lib/mini-gmp.c mpz_limbs_read (mpz_srcptr x) x 1659 lib/mini-gmp.c return x->_mp_d; x 1663 lib/mini-gmp.c mpz_limbs_modify (mpz_t x, mp_size_t n) x 1666 lib/mini-gmp.c return MPZ_REALLOC (x, n); x 1670 lib/mini-gmp.c mpz_limbs_write (mpz_t x, mp_size_t n) x 1672 lib/mini-gmp.c return mpz_limbs_modify (x, n); x 1676 lib/mini-gmp.c mpz_limbs_finish (mpz_t x, mp_size_t xs) x 1679 lib/mini-gmp.c xn = mpn_normalized_size (x->_mp_d, GMP_ABS (xs)); x 1680 lib/mini-gmp.c x->_mp_size = xs < 0 ? -xn : xn; x 1684 lib/mini-gmp.c mpz_roinit_normal_n (mpz_t x, mp_srcptr xp, mp_size_t xs) x 1686 lib/mini-gmp.c x->_mp_alloc = 0; x 1687 lib/mini-gmp.c x->_mp_d = (mp_ptr) xp; x 1688 lib/mini-gmp.c x->_mp_size = xs; x 1689 lib/mini-gmp.c return x; x 1693 lib/mini-gmp.c mpz_roinit_n (mpz_t x, mp_srcptr xp, mp_size_t xs) x 1695 lib/mini-gmp.c mpz_roinit_normal_n (x, xp, xs); x 1696 lib/mini-gmp.c mpz_limbs_finish (x, xs); x 1697 lib/mini-gmp.c return x; x 1703 lib/mini-gmp.c mpz_set_d (mpz_t r, double x) x 1714 lib/mini-gmp.c if (x != x || x == x * 0.5) x 1720 lib/mini-gmp.c sign = x < 0.0 ; x 1722 lib/mini-gmp.c x = - x; x 1724 lib/mini-gmp.c if (x < 1.0) x 1731 lib/mini-gmp.c for (rn = 1; x >= B; rn++) x 1732 lib/mini-gmp.c x *= Bi; x 1736 lib/mini-gmp.c f = (mp_limb_t) x; x 1737 lib/mini-gmp.c x -= f; x 1738 lib/mini-gmp.c assert (x < 1.0); x 1743 lib/mini-gmp.c x = B * x; x 1744 lib/mini-gmp.c f = (mp_limb_t) x; x 1745 lib/mini-gmp.c x -= f; x 1746 lib/mini-gmp.c assert (x < 1.0); x 1754 lib/mini-gmp.c mpz_init_set_d (mpz_t r, double x) x 1757 lib/mini-gmp.c mpz_set_d (r, x); x 1766 lib/mini-gmp.c double x; x 1780 lib/mini-gmp.c for (x = l; --un >= 0;) x 1782 lib/mini-gmp.c x = B*x; x 1788 lib/mini-gmp.c x += l; x 1793 lib/mini-gmp.c x = -x; x 1795 lib/mini-gmp.c return x; x 1799 lib/mini-gmp.c mpz_cmpabs_d (const mpz_t x, double d) x 1805 lib/mini-gmp.c xn = x->_mp_size; x 1828 lib/mini-gmp.c xl = x->_mp_d[i]; x 1840 lib/mini-gmp.c mpz_cmp_d (const mpz_t x, double d) x 1842 lib/mini-gmp.c if (x->_mp_size < 0) x 1847 lib/mini-gmp.c return -mpz_cmpabs_d (x, d); x 1854 lib/mini-gmp.c return mpz_cmpabs_d (x, d); x 3201 lib/mini-gmp.c mpz_rootrem (mpz_t x, mpz_t r, const mpz_t y, unsigned long z) x 3214 lib/mini-gmp.c if (x) x 3215 lib/mini-gmp.c mpz_set (x, y); x 3256 lib/mini-gmp.c if (x) x 3257 lib/mini-gmp.c mpz_swap (x, u); x 3263 lib/mini-gmp.c mpz_root (mpz_t x, const mpz_t y, unsigned long z) x 3269 lib/mini-gmp.c mpz_rootrem (x, r, y, z); x 3334 lib/mini-gmp.c mpz_mfac_uiui (mpz_t x, unsigned long n, unsigned long m) x 3336 lib/mini-gmp.c mpz_set_ui (x, n + (n == 0)); x 3339 lib/mini-gmp.c mpz_mul_ui (x, x, n -= m); x 3343 lib/mini-gmp.c mpz_2fac_ui (mpz_t x, unsigned long n) x 3345 lib/mini-gmp.c mpz_mfac_uiui (x, n, 2); x 3349 lib/mini-gmp.c mpz_fac_ui (mpz_t x, unsigned long n) x 3351 lib/mini-gmp.c mpz_mfac_uiui (x, n, 1); x 3494 lib/mini-gmp.c gmp_stronglucas (const mpz_t x, mpz_t Qk) x 3503 lib/mini-gmp.c mpz_roinit_normal_n (n, x->_mp_d, GMP_ABS (x->_mp_size)); x 4017 lib/mini-gmp.c gmp_popcount_limb (mp_limb_t x) x 4023 lib/mini-gmp.c for (c = 0; x > 0;) x 4025 lib/mini-gmp.c unsigned w = x - ((x >> 1) & 0x5555); x 4031 lib/mini-gmp.c x >>= LOCAL_SHIFT_BITS; x 4033 lib/mini-gmp.c x = 0; x 4425 lib/mini-gmp.c mpz_out_str (FILE *stream, int base, const mpz_t x) x 4430 lib/mini-gmp.c str = mpz_get_str (NULL, base, x); x 121 lib/mini-gmp.h #define mpn_invert_limb(x) mpn_invert_3by2 ((x), 0) x 260 lib/mktime.c __time64_t x = t; x 261 lib/mktime.c return convert (&x, tm); x 131 lib/nstrftime.c # define STRFTIME_ARG(x) /* empty */ x 134 lib/nstrftime.c # define STRFTIME_ARG(x) x, x 543 lib/regex.h # define _Attr_access_(x) __attribute__ ((__access__ x)) x 545 lib/regex.h # define _Attr_access_(x) x 43 lib/regex_internal.h # define DEBUG_ASSERT(x) assert (x) x 45 lib/regex_internal.h # define DEBUG_ASSERT(x) assume (x) x 228 lib/sha1.c uint32_t x[16]; x 242 lib/sha1.c #define rol(x, n) (((x) << (n)) | ((uint32_t) (x) >> (32 - (n)))) x 244 lib/sha1.c #define M(I) ( tm = x[I&0x0f] ^ x[(I-14)&0x0f] \ x 245 lib/sha1.c ^ x[(I-8)&0x0f] ^ x[(I-3)&0x0f] \ x 246 lib/sha1.c , (x[I&0x0f] = rol(tm, 1)) ) x 261 lib/sha1.c x[t] = SWAP (*words); x 265 lib/sha1.c R( a, b, c, d, e, F1, K1, x[ 0] ); x 266 lib/sha1.c R( e, a, b, c, d, F1, K1, x[ 1] ); x 267 lib/sha1.c R( d, e, a, b, c, F1, K1, x[ 2] ); x 268 lib/sha1.c R( c, d, e, a, b, F1, K1, x[ 3] ); x 269 lib/sha1.c R( b, c, d, e, a, F1, K1, x[ 4] ); x 270 lib/sha1.c R( a, b, c, d, e, F1, K1, x[ 5] ); x 271 lib/sha1.c R( e, a, b, c, d, F1, K1, x[ 6] ); x 272 lib/sha1.c R( d, e, a, b, c, F1, K1, x[ 7] ); x 273 lib/sha1.c R( c, d, e, a, b, F1, K1, x[ 8] ); x 274 lib/sha1.c R( b, c, d, e, a, F1, K1, x[ 9] ); x 275 lib/sha1.c R( a, b, c, d, e, F1, K1, x[10] ); x 276 lib/sha1.c R( e, a, b, c, d, F1, K1, x[11] ); x 277 lib/sha1.c R( d, e, a, b, c, F1, K1, x[12] ); x 278 lib/sha1.c R( c, d, e, a, b, F1, K1, x[13] ); x 279 lib/sha1.c R( b, c, d, e, a, F1, K1, x[14] ); x 280 lib/sha1.c R( a, b, c, d, e, F1, K1, x[15] ); x 302 lib/sha256.c uint32_t x[16]; x 319 lib/sha256.c #define rol(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) x 320 lib/sha256.c #define S0(x) (rol(x,25)^rol(x,14)^(x>>3)) x 321 lib/sha256.c #define S1(x) (rol(x,15)^rol(x,13)^(x>>10)) x 322 lib/sha256.c #define SS0(x) (rol(x,30)^rol(x,19)^rol(x,10)) x 323 lib/sha256.c #define SS1(x) (rol(x,26)^rol(x,21)^rol(x,7)) x 325 lib/sha256.c #define M(I) ( tm = S1(x[(I-2)&0x0f]) + x[(I-7)&0x0f] \ x 326 lib/sha256.c + S0(x[(I-15)&0x0f]) + x[I&0x0f] \ x 327 lib/sha256.c , x[I&0x0f] = tm ) x 345 lib/sha256.c x[t] = SWAP (*words); x 349 lib/sha256.c R( a, b, c, d, e, f, g, h, K( 0), x[ 0] ); x 350 lib/sha256.c R( h, a, b, c, d, e, f, g, K( 1), x[ 1] ); x 351 lib/sha256.c R( g, h, a, b, c, d, e, f, K( 2), x[ 2] ); x 352 lib/sha256.c R( f, g, h, a, b, c, d, e, K( 3), x[ 3] ); x 353 lib/sha256.c R( e, f, g, h, a, b, c, d, K( 4), x[ 4] ); x 354 lib/sha256.c R( d, e, f, g, h, a, b, c, K( 5), x[ 5] ); x 355 lib/sha256.c R( c, d, e, f, g, h, a, b, K( 6), x[ 6] ); x 356 lib/sha256.c R( b, c, d, e, f, g, h, a, K( 7), x[ 7] ); x 357 lib/sha256.c R( a, b, c, d, e, f, g, h, K( 8), x[ 8] ); x 358 lib/sha256.c R( h, a, b, c, d, e, f, g, K( 9), x[ 9] ); x 359 lib/sha256.c R( g, h, a, b, c, d, e, f, K(10), x[10] ); x 360 lib/sha256.c R( f, g, h, a, b, c, d, e, K(11), x[11] ); x 361 lib/sha256.c R( e, f, g, h, a, b, c, d, K(12), x[12] ); x 362 lib/sha256.c R( d, e, f, g, h, a, b, c, K(13), x[13] ); x 363 lib/sha256.c R( c, d, e, f, g, h, a, b, K(14), x[14] ); x 364 lib/sha256.c R( b, c, d, e, f, g, h, a, K(15), x[15] ); x 326 lib/sha512.c u64 x[16]; x 345 lib/sha512.c #define S0(x) u64xor (u64rol(x, 63), u64xor (u64rol (x, 56), u64shr (x, 7))) x 346 lib/sha512.c #define S1(x) u64xor (u64rol (x, 45), u64xor (u64rol (x, 3), u64shr (x, 6))) x 347 lib/sha512.c #define SS0(x) u64xor (u64rol (x, 36), u64xor (u64rol (x, 30), u64rol (x, 25))) x 348 lib/sha512.c #define SS1(x) u64xor (u64rol(x, 50), u64xor (u64rol (x, 46), u64rol (x, 23))) x 350 lib/sha512.c #define M(I) (x[(I) & 15] \ x 351 lib/sha512.c = u64plus (x[(I) & 15], \ x 352 lib/sha512.c u64plus (S1 (x[((I) - 2) & 15]), \ x 353 lib/sha512.c u64plus (x[((I) - 7) & 15], \ x 354 lib/sha512.c S0 (x[((I) - 15) & 15]))))) x 374 lib/sha512.c x[t] = SWAP (*words); x 378 lib/sha512.c R( a, b, c, d, e, f, g, h, K( 0), x[ 0] ); x 379 lib/sha512.c R( h, a, b, c, d, e, f, g, K( 1), x[ 1] ); x 380 lib/sha512.c R( g, h, a, b, c, d, e, f, K( 2), x[ 2] ); x 381 lib/sha512.c R( f, g, h, a, b, c, d, e, K( 3), x[ 3] ); x 382 lib/sha512.c R( e, f, g, h, a, b, c, d, K( 4), x[ 4] ); x 383 lib/sha512.c R( d, e, f, g, h, a, b, c, K( 5), x[ 5] ); x 384 lib/sha512.c R( c, d, e, f, g, h, a, b, K( 6), x[ 6] ); x 385 lib/sha512.c R( b, c, d, e, f, g, h, a, K( 7), x[ 7] ); x 386 lib/sha512.c R( a, b, c, d, e, f, g, h, K( 8), x[ 8] ); x 387 lib/sha512.c R( h, a, b, c, d, e, f, g, K( 9), x[ 9] ); x 388 lib/sha512.c R( g, h, a, b, c, d, e, f, K(10), x[10] ); x 389 lib/sha512.c R( f, g, h, a, b, c, d, e, K(11), x[11] ); x 390 lib/sha512.c R( e, f, g, h, a, b, c, d, K(12), x[12] ); x 391 lib/sha512.c R( d, e, f, g, h, a, b, c, K(13), x[13] ); x 392 lib/sha512.c R( c, d, e, f, g, h, a, b, K(14), x[14] ); x 393 lib/sha512.c R( b, c, d, e, f, g, h, a, K(15), x[15] ); x 625 lib/stdint.in.h # define INT8_C(x) x x 626 lib/stdint.in.h # define UINT8_C(x) x x 630 lib/stdint.in.h # define INT16_C(x) x x 631 lib/stdint.in.h # define UINT16_C(x) x x 635 lib/stdint.in.h # define INT32_C(x) x x 636 lib/stdint.in.h # define UINT32_C(x) x ## U x 641 lib/stdint.in.h # define INT64_C(x) x##L x 643 lib/stdint.in.h # define INT64_C(x) x##i64 x 645 lib/stdint.in.h # define INT64_C(x) x##LL x 648 lib/stdint.in.h # define UINT64_C(x) x##UL x 650 lib/stdint.in.h # define UINT64_C(x) x##ui64 x 652 lib/stdint.in.h # define UINT64_C(x) x##ULL x 659 lib/stdint.in.h # define INTMAX_C(x) x##LL x 661 lib/stdint.in.h # define INTMAX_C(x) INT64_C(x) x 663 lib/stdint.in.h # define INTMAX_C(x) x##L x 669 lib/stdint.in.h # define UINTMAX_C(x) x##ULL x 671 lib/stdint.in.h # define UINTMAX_C(x) UINT64_C(x) x 673 lib/stdint.in.h # define UINTMAX_C(x) x##UL x 31 lib/u64.h #define u64rol(x, n) u64or (u64shl (x, n), u64shr (x, 64 - n)) x 40 lib/u64.h # define u64lo(x) ((u64) (x)) x 41 lib/u64.h # define u64size(x) u64lo (x) x 42 lib/u64.h # define u64lt(x, y) ((x) < (y)) x 43 lib/u64.h # define u64and(x, y) ((x) & (y)) x 44 lib/u64.h # define u64or(x, y) ((x) | (y)) x 45 lib/u64.h # define u64xor(x, y) ((x) ^ (y)) x 46 lib/u64.h # define u64plus(x, y) ((x) + (y)) x 47 lib/u64.h # define u64shl(x, n) ((x) << (n)) x 48 lib/u64.h # define u64shr(x, n) ((x) >> (n)) x 96 lib/u64.h u64lt (u64 x, u64 y) x 98 lib/u64.h return x.hi < y.hi || (x.hi == y.hi && x.lo < y.lo); x 103 lib/u64.h u64and (u64 x, u64 y) x 106 lib/u64.h r.hi = x.hi & y.hi; x 107 lib/u64.h r.lo = x.lo & y.lo; x 113 lib/u64.h u64or (u64 x, u64 y) x 116 lib/u64.h r.hi = x.hi | y.hi; x 117 lib/u64.h r.lo = x.lo | y.lo; x 123 lib/u64.h u64xor (u64 x, u64 y) x 126 lib/u64.h r.hi = x.hi ^ y.hi; x 127 lib/u64.h r.lo = x.lo ^ y.lo; x 133 lib/u64.h u64plus (u64 x, u64 y) x 136 lib/u64.h r.lo = x.lo + y.lo; x 137 lib/u64.h r.hi = x.hi + y.hi + (r.lo < x.lo); x 143 lib/u64.h u64shl (u64 x, int n) x 148 lib/u64.h r.hi = (x.hi << n) | (x.lo >> (32 - n)); x 149 lib/u64.h r.lo = x.lo << n; x 153 lib/u64.h r.hi = x.lo << (n - 32); x 161 lib/u64.h u64shr (u64 x, int n) x 166 lib/u64.h r.hi = x.hi >> n; x 167 lib/u64.h r.lo = (x.hi << (32 - n)) | (x.lo >> n); x 172 lib/u64.h r.lo = x.hi >> (n - 32); x 38 lib/unlocked-io.h # define clearerr(x) clearerr_unlocked (x) x 40 lib/unlocked-io.h # define clearerr_unlocked(x) clearerr (x) x 45 lib/unlocked-io.h # define feof(x) feof_unlocked (x) x 47 lib/unlocked-io.h # define feof_unlocked(x) feof (x) x 52 lib/unlocked-io.h # define ferror(x) ferror_unlocked (x) x 54 lib/unlocked-io.h # define ferror_unlocked(x) ferror (x) x 59 lib/unlocked-io.h # define fflush(x) fflush_unlocked (x) x 61 lib/unlocked-io.h # define fflush_unlocked(x) fflush (x) x 66 lib/unlocked-io.h # define fgets(x,y,z) fgets_unlocked (x,y,z) x 68 lib/unlocked-io.h # define fgets_unlocked(x,y,z) fgets (x,y,z) x 73 lib/unlocked-io.h # define fputc(x,y) fputc_unlocked (x,y) x 75 lib/unlocked-io.h # define fputc_unlocked(x,y) fputc (x,y) x 80 lib/unlocked-io.h # define fputs(x,y) fputs_unlocked (x,y) x 82 lib/unlocked-io.h # define fputs_unlocked(x,y) fputs (x,y) x 87 lib/unlocked-io.h # define fread(w,x,y,z) fread_unlocked (w,x,y,z) x 89 lib/unlocked-io.h # define fread_unlocked(w,x,y,z) fread (w,x,y,z) x 94 lib/unlocked-io.h # define fwrite(w,x,y,z) fwrite_unlocked (w,x,y,z) x 96 lib/unlocked-io.h # define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z) x 101 lib/unlocked-io.h # define getc(x) getc_unlocked (x) x 103 lib/unlocked-io.h # define getc_unlocked(x) getc (x) x 115 lib/unlocked-io.h # define putc(x,y) putc_unlocked (x,y) x 117 lib/unlocked-io.h # define putc_unlocked(x,y) putc (x,y) x 122 lib/unlocked-io.h # define putchar(x) putchar_unlocked (x) x 124 lib/unlocked-io.h # define putchar_unlocked(x) putchar (x) x 128 lib/unlocked-io.h # define flockfile(x) ((void) 0) x 131 lib/unlocked-io.h # define ftrylockfile(x) 0 x 134 lib/unlocked-io.h # define funlockfile(x) ((void) 0) x 155 lib/verify.h #define _GL_CONCAT(x, y) _GL_CONCAT0 (x, y) x 156 lib/verify.h #define _GL_CONCAT0(x, y) x##y x 241 lib/verify.h # define _GL_EXPAND(x) x x 192 lwlib/lwlib-Xaw.c int x = inverse ? 0 : 2; x 211 lwlib/lwlib-Xaw.c data->xft_font, x, y, x 432 lwlib/lwlib-Xaw.c unsigned int x, y, w, h; x 440 lwlib/lwlib-Xaw.c if (topmost->core.width < w) x = topmost->core.x; x 441 lwlib/lwlib-Xaw.c else x = topmost->core.x + ((topmost->core.width - w) / 2); x 447 lwlib/lwlib-Xaw.c XtSetArg (args[0], XtNx, x); x 259 lwlib/lwlib-Xlw.c &bd->x, &bd->y, &bd->state); x 1351 lwlib/lwlib-Xm.c Position x; x 1358 lwlib/lwlib-Xm.c x = (((Position)parent_width) - ((Position)child_width)) / 2; x 1361 lwlib/lwlib-Xm.c XtTranslateCoords (parent, x, y, &x, &y); x 1363 lwlib/lwlib-Xm.c if (x + child_width > screen_width) x 1364 lwlib/lwlib-Xm.c x = screen_width - child_width; x 1365 lwlib/lwlib-Xm.c if (x < 0) x 1366 lwlib/lwlib-Xm.c x = 0; x 1373 lwlib/lwlib-Xm.c XtVaSetValues (widget, XtNx, x, XtNy, y, NULL); x 1717 lwlib/lwlib-Xm.c &dummy.x, &dummy.y, &dummy.state); x 43 lwlib/lwlib-utils.c event.xexpose.x = 0; x 222 lwlib/lwlib-utils.c int x, y; x 225 lwlib/lwlib-utils.c if (!XGetGeometry (dpy, drawable, &root, &x, &y, &width, &height, x 250 lwlib/lwlib-utils.c crxft_draw_rect (cairo_t *cr, const XftColor *color, int x, int y, x 254 lwlib/lwlib-utils.c cairo_rectangle (cr, x, y, width, height); x 260 lwlib/lwlib-utils.c int x, int y, const FcChar8 *string, int len) x 267 lwlib/lwlib-utils.c cairo_move_to (cr, x, y); x 282 lwlib/lwlib-utils.c extents->x = ceil (- text_extents.x_bearing); x 285 lwlib/lwlib-utils.c + extents->x); x 40 lwlib/lwlib-utils.h short x, y, xOff, yOff; x 57 lwlib/lwlib.c #define max(x, y) ((x) > (y) ? (x) : (y)) x 571 lwlib/xlwmenu.c int x, x 599 lwlib/xlwmenu.c pt[0].x = x; x 601 lwlib/xlwmenu.c pt[1].x = x + thickness; x 603 lwlib/xlwmenu.c pt[2].x = x + thickness2; x 605 lwlib/xlwmenu.c pt[3].x = x; x 609 lwlib/xlwmenu.c pt[0].x = x; x 611 lwlib/xlwmenu.c pt[1].x = x + thickness; x 613 lwlib/xlwmenu.c pt[2].x = x + width - thickness2; x 615 lwlib/xlwmenu.c pt[3].x = x + width; x 619 lwlib/xlwmenu.c pt[0].x = x; x 621 lwlib/xlwmenu.c pt[1].x = x + thickness; x 623 lwlib/xlwmenu.c pt[2].x = x + width - thickness2; x 625 lwlib/xlwmenu.c pt[3].x = x + width; x 636 lwlib/xlwmenu.c draw_shadow_rectangle (XlwMenuWidget mw, Window window, int x, int y, x 641 lwlib/xlwmenu.c int thickness = !x && !y ? mw->menu.border_thickness : mw->menu.shadow_thickness; x 660 lwlib/xlwmenu.c points [0].x = x; x 662 lwlib/xlwmenu.c points [1].x = x + width; x 664 lwlib/xlwmenu.c points [2].x = x + width; x 666 lwlib/xlwmenu.c points [3].x = x; x 682 lwlib/xlwmenu.c points [0].x = x; x 684 lwlib/xlwmenu.c points [1].x = x + width; x 686 lwlib/xlwmenu.c points [2].x = x + width - thickness; x 688 lwlib/xlwmenu.c points [3].x = x; x 691 lwlib/xlwmenu.c points [0].x = x; x 693 lwlib/xlwmenu.c points [1].x = x; x 695 lwlib/xlwmenu.c points [2].x = x + thickness; x 697 lwlib/xlwmenu.c points [3].x = x + thickness; x 700 lwlib/xlwmenu.c points [0].x = x + width; x 702 lwlib/xlwmenu.c points [1].x = x + width - thickness; x 704 lwlib/xlwmenu.c points [2].x = x + width - thickness; x 706 lwlib/xlwmenu.c points [3].x = x + width; x 709 lwlib/xlwmenu.c points [0].x = x; x 711 lwlib/xlwmenu.c points [1].x = x + width; x 713 lwlib/xlwmenu.c points [2].x = x + width; x 715 lwlib/xlwmenu.c points [3].x = x + thickness; x 722 lwlib/xlwmenu.c draw_shadow_rhombus (XlwMenuWidget mw, Window window, int x, int y, x 746 lwlib/xlwmenu.c points [0].x = x; x 748 lwlib/xlwmenu.c points [1].x = x + height / 2; x 750 lwlib/xlwmenu.c points [2].x = x + height; x 752 lwlib/xlwmenu.c points [3].x = x + height / 2; x 767 lwlib/xlwmenu.c points [0].x = x; x 769 lwlib/xlwmenu.c points [1].x = x + thickness; x 771 lwlib/xlwmenu.c points [2].x = x + width / 2; x 773 lwlib/xlwmenu.c points [3].x = x + width / 2; x 776 lwlib/xlwmenu.c points [0].x = x + width / 2; x 778 lwlib/xlwmenu.c points [1].x = x + width / 2; x 780 lwlib/xlwmenu.c points [2].x = x + width - thickness; x 782 lwlib/xlwmenu.c points [3].x = x + width; x 785 lwlib/xlwmenu.c points [0].x = x; x 787 lwlib/xlwmenu.c points [1].x = x + thickness; x 789 lwlib/xlwmenu.c points [2].x = x + width / 2; x 791 lwlib/xlwmenu.c points [3].x = x + width / 2; x 794 lwlib/xlwmenu.c points [0].x = x + width / 2; x 796 lwlib/xlwmenu.c points [1].x = x + width / 2; x 798 lwlib/xlwmenu.c points [2].x = x + width - thickness; x 800 lwlib/xlwmenu.c points [3].x = x + width; x 811 lwlib/xlwmenu.c draw_toggle (XlwMenuWidget mw, Window window, int x, int y, int selected_p, x 830 lwlib/xlwmenu.c x += mw->menu.horizontal_spacing; x 832 lwlib/xlwmenu.c draw_shadow_rectangle (mw, window, x, y, width, height, False, x 842 lwlib/xlwmenu.c draw_radio (XlwMenuWidget mw, Window window, int x, int y, int selected_p, x 861 lwlib/xlwmenu.c x += mw->menu.horizontal_spacing; x 863 lwlib/xlwmenu.c draw_shadow_rhombus (mw, window, x, y, width, height, False, selected_p, x 875 lwlib/xlwmenu.c int x, x 890 lwlib/xlwmenu.c x, y, x + width, y); x 894 lwlib/xlwmenu.c draw_separator (mw, window, x, y, width, SEPARATOR_SINGLE_LINE); x 895 lwlib/xlwmenu.c draw_separator (mw, window, x, y + 2, width, SEPARATOR_SINGLE_LINE); x 902 lwlib/xlwmenu.c x, y, x + width, y); x 908 lwlib/xlwmenu.c draw_separator (mw, window, x, y, width, x 910 lwlib/xlwmenu.c draw_separator (mw, window, x, y + 2, width, x 916 lwlib/xlwmenu.c x, y, x + width, y); x 918 lwlib/xlwmenu.c x, y + 1, x + width, y + 1); x 923 lwlib/xlwmenu.c x, y, x + width, y); x 925 lwlib/xlwmenu.c x, y + 1, x + width, y + 1); x 932 lwlib/xlwmenu.c draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN); x 942 lwlib/xlwmenu.c draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_OUT); x 949 lwlib/xlwmenu.c draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN); x 950 lwlib/xlwmenu.c draw_separator (mw, window, x, y + 3, width, SEPARATOR_SHADOW_ETCHED_IN); x 954 lwlib/xlwmenu.c draw_separator (mw, window, x, y, width, x 956 lwlib/xlwmenu.c draw_separator (mw, window, x, y + 3, width, x 964 lwlib/xlwmenu.c draw_separator (mw, window, x, y, width, x 975 lwlib/xlwmenu.c draw_separator (mw, window, x, y, width, x 1026 lwlib/xlwmenu.c draw_highlight (XlwMenuWidget mw, Window window, int x, int y, int width, x 1032 lwlib/xlwmenu.c points [0].x = x; x 1034 lwlib/xlwmenu.c points [1].x = x + width; x 1036 lwlib/xlwmenu.c points [2].x = x + width; x 1038 lwlib/xlwmenu.c points [3].x = x; x 1044 lwlib/xlwmenu.c draw_shadow_rectangle(mw, window, x, y, width, height, False, False, x 1100 lwlib/xlwmenu.c int x = where->x + shadow; x 1105 lwlib/xlwmenu.c x += margin; x 1129 lwlib/xlwmenu.c draw_separator (mw, ws->pixmap, x, y, width, separator); x 1132 lwlib/xlwmenu.c int x_offset = x + h_spacing + shadow; x 1135 lwlib/xlwmenu.c draw_shadow_rectangle (mw, ws->pixmap, x, y, width, height, x 1138 lwlib/xlwmenu.c draw_highlight (mw, ws->pixmap, x, y, width, height); x 1183 lwlib/xlwmenu.c draw_toggle (mw, ws->pixmap, x, y + v_spacing + shadow, x 1186 lwlib/xlwmenu.c draw_radio (mw, ws->pixmap, x, y + v_spacing + shadow, x 1193 lwlib/xlwmenu.c x + width - a_w x 1220 lwlib/xlwmenu.c x + label_width + mw->menu.arrow_spacing, x 1227 lwlib/xlwmenu.c x + label_width + mw->menu.arrow_spacing, x 1237 lwlib/xlwmenu.c draw_shadow_rectangle (mw, ws->pixmap, x, y, width, height, x 1246 lwlib/xlwmenu.c where->x += width; x 1278 lwlib/xlwmenu.c where.x = 0; x 1293 lwlib/xlwmenu.c highlighted_pos->x = where.x; x 1306 lwlib/xlwmenu.c highlighted_pos->x = where.x; x 1311 lwlib/xlwmenu.c && (horizontal_p ? hit->x < where.x : hit->y < where.y) x 1333 lwlib/xlwmenu.c where.x = 0; x 1421 lwlib/xlwmenu.c windows [i].x = 0; x 1476 lwlib/xlwmenu.c previous_ws->x, previous_ws->y, x 1480 lwlib/xlwmenu.c ws->x, ws->y, &screen_x, &screen_y, x 1492 lwlib/xlwmenu.c if (ws->x < screen_x) x 1493 lwlib/xlwmenu.c ws->x = screen_x; x 1494 lwlib/xlwmenu.c else if (ws->x + ws->width > screen_x + screen_width) x 1501 lwlib/xlwmenu.c ws->x = screen_x + (previous_ws->x x 1506 lwlib/xlwmenu.c ws->x = screen_x + (screen_width - ws->width); x 1507 lwlib/xlwmenu.c if (ws->x < screen_x) x 1509 lwlib/xlwmenu.c ws->x = screen_x; x 1619 lwlib/xlwmenu.c selection_position.x = 0; x 1630 lwlib/xlwmenu.c ws->x = (previous_ws->x + selection_position.x x 1633 lwlib/xlwmenu.c ws->x += mw->menu.margin; x 1637 lwlib/xlwmenu.c ws->x += mw->menu.shadow_thickness; x 1656 lwlib/xlwmenu.c XtConfigureWidget (ws->w, ws->x, ws->y, ws->width, ws->height, x 1676 lwlib/xlwmenu.c int x = ws->x + shadow; x 1678 lwlib/xlwmenu.c relative_pos->x = ev->x_root - x; x 1680 lwlib/xlwmenu.c return (x - shadow < ev->x_root && ev->x_root < x + ws->width x 1833 lwlib/xlwmenu.c #define MINL(x,y) ((((unsigned long) (x)) < ((unsigned long) (y))) \ x 1834 lwlib/xlwmenu.c ? ((unsigned long) (x)) : ((unsigned long) (y))) x 2166 lwlib/xlwmenu.c mw->menu.windows [0].x = 0; x 2212 lwlib/xlwmenu.c mw->menu.windows [0].x = w->core.x; x 2473 lwlib/xlwmenu.c int x = ev->x_root; x 2483 lwlib/xlwmenu.c &ev->x, &ev->y, x 2486 lwlib/xlwmenu.c && (ev->x_root != x || ev->y_root != y)) x 2516 lwlib/xlwmenu.c mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x; x 2808 lwlib/xlwmenu.c int x = event->x_root; x 2821 lwlib/xlwmenu.c xlw_monitor_dimensions_at_pos (display, screen, x, y, x 2841 lwlib/xlwmenu.c x -= borderwidth; x 2843 lwlib/xlwmenu.c if (x < screen_x + borderwidth) x 2844 lwlib/xlwmenu.c x = screen_x + borderwidth; x 2845 lwlib/xlwmenu.c if (x + w + 2 * borderwidth > screen_x + screen_w) x 2846 lwlib/xlwmenu.c x = (screen_x + screen_w) - w - 2 * borderwidth; x 2856 lwlib/xlwmenu.c XtConfigureWidget (XtParent ((Widget)mw), x, y, w, h, x 2860 lwlib/xlwmenu.c mw->menu.windows [0].x = x + borderwidth; x 2871 lwlib/xlwmenu.c mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x; x 40 lwlib/xlwmenuP.h Position x; x 47 nt/preprep.c #define min(x, y) (((x) < (y)) ? (x) : (y)) x 48 nt/preprep.c #define max(x, y) (((x) > (y)) ? (x) : (y)) x 634 oldXMenu/Internal.c changes.x = p_ptr->window_x; x 757 oldXMenu/Internal.c changes.x = s_ptr->window_x; x 29 oldXMenu/X10.h short x, y; x 50 oldXMenu/XMenuInt.h #define min(x, y) ((x) <= (y) ? (x) : (y)) x 51 oldXMenu/XMenuInt.h #define max(x, y) ((x) >= (y) ? (x) : (y)) x 480 src/alloc.c deadp (Lisp_Object x) x 482 src/alloc.c return BASE_EQ (x, dead_object ()); x 692 src/alloc.c enum { LISP_ALIGNMENT = alignof (union { union emacs_align_type x; x 1115 src/alloc.c } x; x 1237 src/alloc.c abase->blocks[i].x.next_free = free_ablock; x 1254 src/alloc.c free_ablock = free_ablock->x.next_free; x 1280 src/alloc.c ablock->x.next_free = free_ablock; x 1299 src/alloc.c *tem = (*tem)->x.next_free; x 1302 src/alloc.c tem = &(*tem)->x.next_free; x 2889 src/alloc.c #define vroundup_ct(x) ROUNDUP (x, roundup_size) x 2891 src/alloc.c #define vroundup(x) (eassume ((x) >= 0), vroundup_ct (x)) x 4219 src/alloc.c struct mem_node *c, *parent, *x; x 4240 src/alloc.c x = malloc (sizeof *x); x 4241 src/alloc.c if (x == NULL) x 4244 src/alloc.c x = xmalloc (sizeof *x); x 4246 src/alloc.c x->start = start; x 4247 src/alloc.c x->end = end; x 4248 src/alloc.c x->type = type; x 4249 src/alloc.c x->parent = parent; x 4250 src/alloc.c x->left = x->right = MEM_NIL; x 4251 src/alloc.c x->color = MEM_RED; x 4257 src/alloc.c parent->left = x; x 4259 src/alloc.c parent->right = x; x 4262 src/alloc.c mem_root = x; x 4265 src/alloc.c mem_insert_fixup (x); x 4267 src/alloc.c return x; x 4275 src/alloc.c mem_insert_fixup (struct mem_node *x) x 4277 src/alloc.c while (x != mem_root && x->parent->color == MEM_RED) x 4282 src/alloc.c if (x->parent == x->parent->parent->left) x 4286 src/alloc.c struct mem_node *y = x->parent->parent->right; x 4293 src/alloc.c x->parent->color = MEM_BLACK; x 4295 src/alloc.c x->parent->parent->color = MEM_RED; x 4296 src/alloc.c x = x->parent->parent; x 4302 src/alloc.c if (x == x->parent->right) x 4304 src/alloc.c x = x->parent; x 4305 src/alloc.c mem_rotate_left (x); x 4308 src/alloc.c x->parent->color = MEM_BLACK; x 4309 src/alloc.c x->parent->parent->color = MEM_RED; x 4310 src/alloc.c mem_rotate_right (x->parent->parent); x 4316 src/alloc.c struct mem_node *y = x->parent->parent->left; x 4320 src/alloc.c x->parent->color = MEM_BLACK; x 4322 src/alloc.c x->parent->parent->color = MEM_RED; x 4323 src/alloc.c x = x->parent->parent; x 4327 src/alloc.c if (x == x->parent->left) x 4329 src/alloc.c x = x->parent; x 4330 src/alloc.c mem_rotate_right (x); x 4333 src/alloc.c x->parent->color = MEM_BLACK; x 4334 src/alloc.c x->parent->parent->color = MEM_RED; x 4335 src/alloc.c mem_rotate_left (x->parent->parent); x 4353 src/alloc.c mem_rotate_left (struct mem_node *x) x 4358 src/alloc.c y = x->right; x 4359 src/alloc.c x->right = y->left; x 4361 src/alloc.c y->left->parent = x; x 4365 src/alloc.c y->parent = x->parent; x 4368 src/alloc.c if (x->parent) x 4370 src/alloc.c if (x == x->parent->left) x 4371 src/alloc.c x->parent->left = y; x 4373 src/alloc.c x->parent->right = y; x 4379 src/alloc.c y->left = x; x 4380 src/alloc.c if (x != MEM_NIL) x 4381 src/alloc.c x->parent = y; x 4392 src/alloc.c mem_rotate_right (struct mem_node *x) x 4394 src/alloc.c struct mem_node *y = x->left; x 4396 src/alloc.c x->left = y->right; x 4398 src/alloc.c y->right->parent = x; x 4401 src/alloc.c y->parent = x->parent; x 4402 src/alloc.c if (x->parent) x 4404 src/alloc.c if (x == x->parent->right) x 4405 src/alloc.c x->parent->right = y; x 4407 src/alloc.c x->parent->left = y; x 4412 src/alloc.c y->right = x; x 4413 src/alloc.c if (x != MEM_NIL) x 4414 src/alloc.c x->parent = y; x 4423 src/alloc.c struct mem_node *x, *y; x 4438 src/alloc.c x = y->left; x 4440 src/alloc.c x = y->right; x 4442 src/alloc.c x->parent = y->parent; x 4446 src/alloc.c y->parent->left = x; x 4448 src/alloc.c y->parent->right = x; x 4451 src/alloc.c mem_root = x; x 4461 src/alloc.c mem_delete_fixup (x); x 4475 src/alloc.c mem_delete_fixup (struct mem_node *x) x 4477 src/alloc.c while (x != mem_root && x->color == MEM_BLACK) x 4479 src/alloc.c if (x == x->parent->left) x 4481 src/alloc.c struct mem_node *w = x->parent->right; x 4486 src/alloc.c x->parent->color = MEM_RED; x 4487 src/alloc.c mem_rotate_left (x->parent); x 4488 src/alloc.c w = x->parent->right; x 4494 src/alloc.c x = x->parent; x 4503 src/alloc.c w = x->parent->right; x 4505 src/alloc.c w->color = x->parent->color; x 4506 src/alloc.c x->parent->color = MEM_BLACK; x 4508 src/alloc.c mem_rotate_left (x->parent); x 4509 src/alloc.c x = mem_root; x 4514 src/alloc.c struct mem_node *w = x->parent->left; x 4519 src/alloc.c x->parent->color = MEM_RED; x 4520 src/alloc.c mem_rotate_right (x->parent); x 4521 src/alloc.c w = x->parent->left; x 4527 src/alloc.c x = x->parent; x 4536 src/alloc.c w = x->parent->left; x 4539 src/alloc.c w->color = x->parent->color; x 4540 src/alloc.c x->parent->color = MEM_BLACK; x 4542 src/alloc.c mem_rotate_right (x->parent); x 4543 src/alloc.c x = mem_root; x 4548 src/alloc.c x->color = MEM_BLACK; x 5042 src/alloc.c register int x; x 5047 src/alloc.c x = strlen (buf); x 5048 src/alloc.c x = 2 * x - 1; x 5063 src/alloc.c if (x == 1) x 5073 src/alloc.c x = 2; x 273 src/bignum.c bignum_to_intmax (Lisp_Object x) x 276 src/bignum.c return mpz_to_intmax (*xbignum_val (x), &i) ? i : 0; x 279 src/bignum.c bignum_to_uintmax (Lisp_Object x) x 282 src/bignum.c return mpz_to_uintmax (*xbignum_val (x), &i) ? i : 0; x 448 src/bignum.c check_integer_range (Lisp_Object x, intmax_t lo, intmax_t hi) x 450 src/bignum.c CHECK_INTEGER (x); x 452 src/bignum.c if (! (integer_to_intmax (x, &i) && lo <= i && i <= hi)) x 453 src/bignum.c args_out_of_range_3 (x, make_int (lo), make_int (hi)); x 461 src/bignum.c check_uinteger_max (Lisp_Object x, uintmax_t hi) x 463 src/bignum.c CHECK_INTEGER (x); x 465 src/bignum.c if (! (integer_to_uintmax (x, &i) && i <= hi)) x 466 src/bignum.c args_out_of_range_3 (x, make_fixnum (0), make_uint (hi)); x 474 src/bignum.c check_int_nonnegative (Lisp_Object x) x 476 src/bignum.c CHECK_INTEGER (x); x 477 src/bignum.c return NILP (Fnatnump (x)) ? 0 : check_integer_range (x, 0, INT_MAX); x 125 src/buffer.c CHECK_OVERLAY (Lisp_Object x) x 127 src/buffer.c CHECK_TYPE (OVERLAYP (x), Qoverlayp, x); x 719 src/buffer.h CHECK_BUFFER (Lisp_Object x) x 721 src/buffer.h CHECK_TYPE (BUFFERP (x), Qbufferp, x); x 1162 src/buffer.h #define CHECK_FIXNUM_COERCE_MARKER(x) ((x) = make_fixnum (fix_position (x))) x 293 src/bytecode.c #define PUSH(x) (*++top = (x)) x 62 src/category.h #define CATEGORYP(x) RANGED_FIXNUMP (0x20, x, 0x7E) x 64 src/category.h #define CHECK_CATEGORY(x) \ x 65 src/category.h CHECK_TYPE (CATEGORYP (x), Qcategoryp, x) x 67 src/category.h #define CATEGORY_SET_P(x) \ x 68 src/category.h (BOOL_VECTOR_P (x) && bool_vector_size (x) == 128) x 73 src/category.h #define CHECK_CATEGORY_SET(x) \ x 74 src/category.h CHECK_TYPE (CATEGORY_SET_P (x), Qcategorysetp, x) x 82 src/ccl.h #define CHECK_CCL_PROGRAM(x) \ x 84 src/ccl.h if (NILP (Fccl_program_p (x))) \ x 85 src/ccl.h wrong_type_argument (Qcclp, (x)); \ x 167 src/character.h CHARACTERP (Lisp_Object x) x 169 src/character.h return FIXNUMP (x) && CHAR_VALID_P (XFIXNUM (x)); x 174 src/character.h CHECK_CHARACTER (Lisp_Object x) x 176 src/character.h CHECK_TYPE (CHARACTERP (x), Qcharacterp, x); x 180 src/character.h CHECK_CHARACTER_CAR (Lisp_Object x) x 182 src/character.h CHECK_CHARACTER (XCAR (x)); x 186 src/character.h CHECK_CHARACTER_CDR (Lisp_Object x) x 188 src/character.h CHECK_CHARACTER (XCDR (x)); x 345 src/charset.h #define CHECK_CHARSET(x) \ x 347 src/charset.h if (! SYMBOLP (x) || CHARSET_SYMBOL_HASH_INDEX (x) < 0) \ x 348 src/charset.h wrong_type_argument (Qcharsetp, (x)); \ x 354 src/charset.h #define CHECK_CHARSET_GET_ID(x, id) \ x 358 src/charset.h if (! SYMBOLP (x) || (idx = CHARSET_SYMBOL_HASH_INDEX (x)) < 0) \ x 359 src/charset.h wrong_type_argument (Qcharsetp, (x)); \ x 367 src/charset.h #define CHECK_CHARSET_GET_ATTR(x, attr) \ x 369 src/charset.h if (!SYMBOLP (x) || NILP (attr = CHARSET_SYMBOL_ATTRIBUTES (x))) \ x 370 src/charset.h wrong_type_argument (Qcharsetp, (x)); \ x 374 src/charset.h #define CHECK_CHARSET_GET_CHARSET(x, charset) \ x 377 src/charset.h CHECK_CHARSET_GET_ID (x, csid); \ x 87 src/chartab.c CHECK_CHAR_TABLE (Lisp_Object x) x 89 src/chartab.c CHECK_TYPE (CHAR_TABLE_P (x), Qchar_table_p, x); x 141 src/cm.c #define COST(x,e) (x ? (cost = 0, tputs (x, 1, e), cost) : BIG) x 142 src/cm.c #define CMCOST(x,e) ((x == 0) ? BIG : (p = tgoto(x, 0, 0), COST(p ,e))) x 200 src/cm.c goto x; x 215 src/cm.c x: x 208 src/coding.h #define CHECK_CODING_SYSTEM(x) \ x 210 src/coding.h if (CODING_SYSTEM_ID (x) < 0 \ x 211 src/coding.h && NILP (Fcheck_coding_system (x))) \ x 212 src/coding.h wrong_type_argument (Qcoding_system_p, (x)); \ x 219 src/coding.h #define CHECK_CODING_SYSTEM_GET_SPEC(x, spec) \ x 221 src/coding.h spec = CODING_SYSTEM_SPEC (x); \ x 224 src/coding.h Fcheck_coding_system (x); \ x 225 src/coding.h spec = CODING_SYSTEM_SPEC (x); \ x 228 src/coding.h wrong_type_argument (Qcoding_system_p, (x)); \ x 235 src/coding.h #define CHECK_CODING_SYSTEM_GET_ID(x, id) \ x 238 src/coding.h id = CODING_SYSTEM_ID (x); \ x 241 src/coding.h Fcheck_coding_system (x); \ x 242 src/coding.h id = CODING_SYSTEM_ID (x); \ x 245 src/coding.h wrong_type_argument (Qcoding_system_p, (x)); \ x 720 src/coding.h #define WCSDATA(x) ((wchar_t *) SDATA (x)) x 498 src/comp.c #define FIRST(x) \ x 499 src/comp.c XCAR(x) x 500 src/comp.c #define SECOND(x) \ x 501 src/comp.c XCAR (XCDR (x)) x 502 src/comp.c #define THIRD(x) \ x 503 src/comp.c XCAR (XCDR (XCDR (x))) x 1415 src/comp.c emit_BASE_EQ (gcc_jit_rvalue *x, gcc_jit_rvalue *y) x 1423 src/comp.c emit_XLI (x), x 1428 src/comp.c emit_AND (gcc_jit_rvalue *x, gcc_jit_rvalue *y) x 1435 src/comp.c x, x 1440 src/comp.c emit_OR (gcc_jit_rvalue *x, gcc_jit_rvalue *y) x 1447 src/comp.c x, x 1556 src/comp.c emit_EQ (gcc_jit_rvalue *x, gcc_jit_rvalue *y) x 1563 src/comp.c emit_XLI (x), emit_XLI (y)), x 1570 src/comp.c emit_SYMBOL_WITH_POS_P (x), x 1575 src/comp.c emit_XLI (emit_SYMBOL_WITH_POS_SYM (x)), x 1580 src/comp.c emit_XLI (emit_SYMBOL_WITH_POS_SYM (x)), x 1583 src/comp.c emit_BARE_SYMBOL_P (x), x 1587 src/comp.c emit_XLI (x), x 1802 src/comp.c emit_NILP (gcc_jit_rvalue *x) x 1805 src/comp.c return emit_BASE_EQ (x, emit_lisp_obj_rval (Qnil)); x 1902 src/comp.c emit_CHECK_CONS (gcc_jit_rvalue *x) x 1907 src/comp.c { emit_CONSP (x), x 1909 src/comp.c x }; x 1922 src/comp.c emit_CHECK_SYMBOL_WITH_POS (gcc_jit_rvalue *x) x 1929 src/comp.c emit_SYMBOL_WITH_POS_P (x), x 1932 src/comp.c x }; x 2635 src/comp.c gcc_jit_rvalue *x = emit_mvar_rval (SECOND (insn)); x 2637 src/comp.c emit_CONSP (x)); x 2671 src/comp.c gcc_jit_rvalue *x = emit_mvar_rval (SECOND (insn)); x 2672 src/comp.c gcc_jit_rvalue *res = emit_NUMBERP (x); x 2680 src/comp.c gcc_jit_rvalue *x = emit_mvar_rval (SECOND (insn)); x 2681 src/comp.c gcc_jit_rvalue *res = emit_INTEGERP (x); x 3559 src/comp.c gcc_jit_rvalue *x = gcc_jit_param_as_rvalue (param[2]); x 3574 src/comp.c gcc_jit_rvalue *wrong_type_args[] = { predicate, x }; x 5283 src/comp.c Lisp_Object x = data_imp_relocs[i]; x 5284 src/comp.c if (EQ (x, Qlambda_fixup)) x 5286 src/comp.c else if (SUBR_NATIVE_COMPILEDP (x)) x 5288 src/comp.c if (NILP (Fgethash (x, comp_u->lambda_gc_guard_h, Qnil))) x 5493 src/comp.c union Aligned_Lisp_Subr *x = x 5502 src/comp.c x->s.lambda_list = maxarg; x 5510 src/comp.c x->s.lambda_list = Qnil; x 5513 src/comp.c x->s.function.a0 = func; x 5514 src/comp.c x->s.min_args = XFIXNUM (minarg); x 5515 src/comp.c x->s.max_args = FIXNUMP (maxarg) ? XFIXNUM (maxarg) : MANY; x 5516 src/comp.c x->s.symbol_name = xstrdup (SSDATA (symbol_name)); x 5517 src/comp.c x->s.intspec.native = intspec; x 5518 src/comp.c x->s.command_modes = command_modes; x 5519 src/comp.c x->s.doc = XFIXNUM (doc_idx); x 5521 src/comp.c x->s.native_comp_u = comp_u; x 5522 src/comp.c x->s.native_c_name = xstrdup (SSDATA (c_name)); x 5523 src/comp.c x->s.type = type; x 5526 src/comp.c XSETSUBR (tem, &x->s); x 777 src/composite.c int x; x 785 src/composite.c x = metrics->width + LGLYPH_LBEARING (*glyph) + LGLYPH_XOFF (*glyph); x 786 src/composite.c if (metrics->lbearing > x) x 787 src/composite.c metrics->lbearing = x; x 788 src/composite.c x = metrics->width + LGLYPH_RBEARING (*glyph) + LGLYPH_XOFF (*glyph); x 789 src/composite.c if (metrics->rbearing < x) x 790 src/composite.c metrics->rbearing = x; x 792 src/composite.c x = LGLYPH_ASCENT (*glyph) - LGLYPH_YOFF (*glyph); x 793 src/composite.c if (metrics->ascent < x) x 794 src/composite.c metrics->ascent = x; x 795 src/composite.c x = LGLYPH_DESCENT (*glyph) + LGLYPH_YOFF (*glyph); x 796 src/composite.c if (metrics->descent < x) x 797 src/composite.c metrics->descent = x; x 44 src/conf_post.h # define GNUC_PREREQ(v, w, x) false x 46 src/conf_post.h # define GNUC_PREREQ(v, w, x) \ x 47 src/conf_post.h ((v) < __GNUC__ + ((w) < __GNUC_MINOR__ + ((x) == 0)) x 49 src/conf_post.h # define GNUC_PREREQ(v, w, x) \ x 50 src/conf_post.h ((v) < __GNUC__ + ((w) < __GNUC_MINOR__ + ((x) <= __GNUC_PATCHLEVEL__))) x 2678 src/data.c check_integer_coerce_marker (Lisp_Object x) x 2680 src/data.c if (MARKERP (x)) x 2681 src/data.c return make_fixnum (marker_position (x)); x 2682 src/data.c CHECK_TYPE (INTEGERP (x), Qinteger_or_marker_p, x); x 2683 src/data.c return x; x 2687 src/data.c check_number_coerce_marker (Lisp_Object x) x 2689 src/data.c if (MARKERP (x)) x 2690 src/data.c return make_fixnum (marker_position (x)); x 2691 src/data.c CHECK_TYPE (NUMBERP (x), Qnumber_or_marker_p, x); x 2692 src/data.c return x; x 3019 src/data.c EMACS_INT x = number; x 3020 src/data.c bool negative = x < 0; x 3022 src/data.c x = -x; x 3027 src/data.c *--p = '0' + x % 10; x 3028 src/data.c x /= 10; x 3030 src/data.c while (x); x 3409 src/data.c (Lisp_Object x, Lisp_Object y) x 3411 src/data.c x = check_integer_coerce_marker (x); x 3413 src/data.c return integer_remainder (x, y, false); x 3420 src/data.c (Lisp_Object x, Lisp_Object y) x 3422 src/data.c x = check_number_coerce_marker (x); x 3424 src/data.c if (FLOATP (x) || FLOATP (y)) x 3425 src/data.c return fmod_float (x, y); x 3426 src/data.c return integer_remainder (x, y, true); x 3588 src/data.c expt_integer (Lisp_Object x, Lisp_Object y) x 3591 src/data.c if (BASE_EQ (x, make_fixnum (1))) x 3592 src/data.c return x; x 3593 src/data.c if (BASE_EQ (x, make_fixnum (0))) x 3594 src/data.c return BASE_EQ (x, y) ? make_fixnum (1) : x; x 3595 src/data.c if (BASE_EQ (x, make_fixnum (-1))) x 3597 src/data.c ? x : make_fixnum (1)); x 3614 src/data.c emacs_mpz_pow_ui (mpz[0], *bignum_integer (&mpz[0], x), exp); x 364 src/dbusbind.c xd_signature_cat (char *signature, char const *x) x 367 src/dbusbind.c ptrdiff_t xlen = strlen (x); x 370 src/dbusbind.c strcpy (signature + siglen, x); x 386 src/dbusbind.c char x[DBUS_MAXIMUM_SIGNATURE_LENGTH]; x 454 src/dbusbind.c xd_signature (x, subtype, dtype, CAR_SAFE (XD_NEXT_VALUE (elt))); x 455 src/dbusbind.c subsig = x; x 473 src/dbusbind.c char x[DBUS_MAXIMUM_SIGNATURE_LENGTH]; x 475 src/dbusbind.c xd_signature (x, subtype, dtype, CAR_SAFE (XD_NEXT_VALUE (elt))); x 476 src/dbusbind.c if (strcmp (subsig, x) != 0) x 493 src/dbusbind.c xd_signature (x, subtype, dtype, CAR_SAFE (XD_NEXT_VALUE (elt))); x 516 src/dbusbind.c xd_signature (x, subtype, dtype, CAR_SAFE (XD_NEXT_VALUE (elt))); x 517 src/dbusbind.c xd_signature_cat (signature, x); x 541 src/dbusbind.c xd_signature (x, subtype, dtype, CAR_SAFE (XD_NEXT_VALUE (elt))); x 542 src/dbusbind.c xd_signature_cat (signature, x); x 551 src/dbusbind.c xd_signature (x, subtype, dtype, CAR_SAFE (XD_NEXT_VALUE (elt))); x 552 src/dbusbind.c xd_signature_cat (signature, x); x 571 src/dbusbind.c xd_extract_signed (Lisp_Object x, intmax_t lo, intmax_t hi) x 573 src/dbusbind.c CHECK_NUMBER (x); x 574 src/dbusbind.c if (INTEGERP (x)) x 577 src/dbusbind.c if (integer_to_intmax (x, &i) && lo <= i && i <= hi) x 582 src/dbusbind.c double d = XFLOAT_DATA (x); x 594 src/dbusbind.c args_out_of_range_3 (x, INT_TO_INTEGER (lo), INT_TO_INTEGER (hi)); x 599 src/dbusbind.c xd_extract_unsigned (Lisp_Object x, uintmax_t hi) x 601 src/dbusbind.c CHECK_NUMBER (x); x 602 src/dbusbind.c if (INTEGERP (x)) x 605 src/dbusbind.c if (integer_to_uintmax (x, &i) && i <= hi) x 610 src/dbusbind.c double d = XFLOAT_DATA (x); x 622 src/dbusbind.c args_out_of_range_3 (x, make_fixnum (0), INT_TO_INTEGER (hi)); x 62 src/dispextern.h int x, y; x 403 src/dispextern.h unsigned x : 16; x 601 src/dispextern.h ? ((X)->slice.img.x == (Y)->slice.img.x \ x 888 src/dispextern.h int x, y; x 1303 src/dispextern.h int x; x 2104 src/dispextern.h int x, y; x 2238 src/dispextern.h Lisp_Object x; x 2945 src/dispextern.h enum glyph_row_area area, int x); x 3008 src/dispextern.h void (*clear_frame_area) (struct frame *f, int x, int y, x 3022 src/dispextern.h int x, int y, x 3028 src/dispextern.h int x, int y_0, int y_1); x 3038 src/dispextern.h int x, int y, int width, x 363 src/dispnew.c adjust_glyph_matrix (struct window *w, struct glyph_matrix *matrix, int x, int y, struct dim dim) x 452 src/dispnew.c + x); x 619 src/dispnew.c matrix->matrix_x = x; x 1035 src/dispnew.c enum { off = offsetof (struct glyph_row, x) }; x 1307 src/dispnew.c || a->x != b->x x 1629 src/dispnew.c allocate_matrices_for_frame_redisplay (Lisp_Object window, int x, int y, x 1633 src/dispnew.c int x0 = x, y0 = y; x 1658 src/dispnew.c dim = allocate_matrices_for_frame_redisplay (w->contents, x, y, x 1677 src/dispnew.c if (x != w->desired_matrix->matrix_x x 1696 src/dispnew.c adjust_glyph_matrix (w, w->desired_matrix, x, y, dim); x 1697 src/dispnew.c adjust_glyph_matrix (w, w->current_matrix, x, y, dim); x 1705 src/dispnew.c x += dim.width; x 1726 src/dispnew.c total.width = x - x0; x 2880 src/dispnew.c int left, right, x, width; x 2888 src/dispnew.c x = w->current_matrix->matrix_x; x 2898 src/dispnew.c = frame_row->glyphs[0] + x; x 3397 src/dispnew.c update_mouse_position (struct frame *f, int x, int y) x 3402 src/dispnew.c note_mouse_highlight (f, x, y); x 3520 src/dispnew.c area == TEXT_AREA ? row->x : 0); x 3908 src/dispnew.c w->output_cursor.x, w->output_cursor.y); x 3996 src/dispnew.c || current_row->x != desired_row->x) x 3998 src/dispnew.c output_cursor_to (w, vpos, 0, desired_row->y, desired_row->x); x 4020 src/dispnew.c int stop, i, x; x 4039 src/dispnew.c x = desired_row->x; x 4072 src/dispnew.c x += desired_glyph->pixel_width; x 4105 src/dispnew.c x -= desired_glyph->pixel_width; x 4123 src/dispnew.c int start_x = x, start_hpos = i; x 4125 src/dispnew.c int current_x = x; x 4132 src/dispnew.c && x == current_x) x 4134 src/dispnew.c x += desired_glyph->pixel_width; x 4140 src/dispnew.c if (i == start_hpos || x != current_x) x 4143 src/dispnew.c x = start_x; x 4164 src/dispnew.c output_cursor_to (w, vpos, i, desired_row->y, x); x 4361 src/dispnew.c cx = w->cursor.x; x 5053 src/dispnew.c int x = WINDOW_TO_FRAME_HPOS (w, w->cursor.hpos); x 5056 src/dispnew.c x += max (0, w->left_margin_cols); x 5057 src/dispnew.c cursor_to (f, y, x); x 5541 src/dispnew.c buffer_posn_from_coords (struct window *w, int *x, int *y, struct display_pos *pos, Lisp_Object *object, int *dx, int *dy, int *width, int *height) x 5560 src/dispnew.c x0 = *x; x 5674 src/dispnew.c *dx += glyph->slice.img.x; x 5703 src/dispnew.c *x = it.hpos; x 5716 src/dispnew.c int *x, int *y, ptrdiff_t *charpos, Lisp_Object *object, x 5739 src/dispnew.c for (x0 = *x; glyph < end && x0 >= glyph->pixel_width; ++glyph) x 5741 src/dispnew.c *x = glyph - row->glyphs[TEXT_AREA]; x 5762 src/dispnew.c *x += x0 / WINDOW_FRAME_COLUMN_WIDTH (w); x 5769 src/dispnew.c *x = 0; x 5787 src/dispnew.c int *x, int *y, ptrdiff_t *charpos, Lisp_Object *object, x 5826 src/dispnew.c for (x0 = *x - x0; glyph < end && x0 >= glyph->pixel_width; ++glyph) x 5828 src/dispnew.c *x = glyph - row->glyphs[area]; x 5843 src/dispnew.c x0 += glyph->slice.img.x; x 5851 src/dispnew.c *x += x0 / WINDOW_FRAME_COLUMN_WIDTH (w); x 5859 src/dispnew.c *x = 0; x 77 src/dosfns.c inregs.x.ax = (unsigned long) XFIXNUM (AREF (registers, 0)); x 78 src/dosfns.c inregs.x.bx = (unsigned long) XFIXNUM (AREF (registers, 1)); x 79 src/dosfns.c inregs.x.cx = (unsigned long) XFIXNUM (AREF (registers, 2)); x 80 src/dosfns.c inregs.x.dx = (unsigned long) XFIXNUM (AREF (registers, 3)); x 81 src/dosfns.c inregs.x.si = (unsigned long) XFIXNUM (AREF (registers, 4)); x 82 src/dosfns.c inregs.x.di = (unsigned long) XFIXNUM (AREF (registers, 5)); x 83 src/dosfns.c inregs.x.cflag = (unsigned long) XFIXNUM (AREF (registers, 6)); x 84 src/dosfns.c inregs.x.flags = (unsigned long) XFIXNUM (AREF (registers, 7)); x 88 src/dosfns.c ASET (registers, 0, make_fixnum (outregs.x.ax)); x 89 src/dosfns.c ASET (registers, 1, make_fixnum (outregs.x.bx)); x 90 src/dosfns.c ASET (registers, 2, make_fixnum (outregs.x.cx)); x 91 src/dosfns.c ASET (registers, 3, make_fixnum (outregs.x.dx)); x 92 src/dosfns.c ASET (registers, 4, make_fixnum (outregs.x.si)); x 93 src/dosfns.c ASET (registers, 5, make_fixnum (outregs.x.di)); x 94 src/dosfns.c ASET (registers, 6, make_fixnum (outregs.x.cflag)); x 95 src/dosfns.c ASET (registers, 7, make_fixnum (outregs.x.flags)); x 281 src/dosfns.c regs.x.ax = 0x3000; x 286 src/dosfns.c dpmiregs.x.ax = 0x3800; x 287 src/dosfns.c dpmiregs.x.ds = xbuf >> 4; x 288 src/dosfns.c dpmiregs.x.dx = 0; x 289 src/dosfns.c dpmiregs.x.ss = dpmiregs.x.sp = dpmiregs.x.flags = 0; x 291 src/dosfns.c if (dpmiregs.x.flags & 1) x 298 src/dosfns.c dos_country_code = dpmiregs.x.bx; x 304 src/dosfns.c regs.x.ax = 0x6601; x 306 src/dosfns.c if (regs.x.cflag) x 319 src/dosfns.c dos_codepage = regs.x.bx & 0xffff; x 325 src/dosfns.c dpmiregs.x.ax = 0x1600; /* enhanced mode installation check */ x 326 src/dosfns.c dpmiregs.x.ss = dpmiregs.x.sp = dpmiregs.x.flags = 0; x 342 src/dosfns.c dos_windows_version = dpmiregs.x.ax; x 351 src/dosfns.c dpmiregs.x.ax = 0x168e; x 352 src/dosfns.c dpmiregs.x.dx = 3; /* get VM title */ x 353 src/dosfns.c dpmiregs.x.cx = sizeof (parent_vm_title) - 1; x 354 src/dosfns.c dpmiregs.x.es = __tb >> 4; x 355 src/dosfns.c dpmiregs.x.di = __tb & 15; x 356 src/dosfns.c dpmiregs.x.sp = dpmiregs.x.ss = dpmiregs.x.flags = 0; x 358 src/dosfns.c if (dpmiregs.x.ax == 1) x 442 src/dosfns.c regs.x.ax = 0x168e; x 443 src/dosfns.c regs.x.dx = 1; x 444 src/dosfns.c regs.x.es = __tb >> 4; x 445 src/dosfns.c regs.x.di = __tb & 15; x 446 src/dosfns.c regs.x.sp = regs.x.ss = regs.x.flags = 0; x 448 src/dosfns.c return regs.x.ax == 1; x 3947 src/editfns.c intmax_t x = XFIXNUM (arg); x 3948 src/editfns.c sprintf_bytes = sprintf (p, convspec, prec, x); x 3953 src/editfns.c double x = XFLOAT_DATA (arg); x 3957 src/editfns.c x = trunc (x); x 3958 src/editfns.c x = x ? x : 0; x 3960 src/editfns.c sprintf_bytes = sprintf (p, convspec, 0, x); x 3967 src/editfns.c uintmax_t x; x 3973 src/editfns.c x = XUFIXNUM (arg); x 3980 src/editfns.c x = negative ? -i : i; x 3990 src/editfns.c x = abs_d; x 4000 src/editfns.c sprintf_bytes = sprintf (p + signedp, convspec, prec, x); x 991 src/emacs-module.c EMACS_INT x = XFIXNUM (o); x 992 src/emacs-module.c *sign = (0 < x) - (x < 0); x 993 src/emacs-module.c if (x == 0 || count == NULL) x 1016 src/emacs-module.c if (0 < x) x 1017 src/emacs-module.c u = (EMACS_UINT) x; x 1019 src/emacs-module.c u = -(EMACS_UINT) x; x 1025 src/emacs-module.c const mpz_t *x = xbignum_val (o); x 1026 src/emacs-module.c *sign = mpz_sgn (*x); x 1029 src/emacs-module.c size_t required_size = (mpz_sizeinbase (*x, 2) + numb - 1) / numb; x 1046 src/emacs-module.c mpz_export (magnitude, &written, order, size, endian, nails, *x); x 106 src/emacsgtkfixed.c int w = priv->f->output_data.x->size_hints.min_width; x 124 src/emacsgtkfixed.c int h = priv->f->output_data.x->size_hints.min_height; x 147 src/emacsgtkfixed.c data[1] = hints->x; x 157 src/emacsgtkfixed.c data[11] = hints->min_aspect.x; x 159 src/emacsgtkfixed.c data[13] = hints->max_aspect.x; x 84 src/fileio.c #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z') x 87 src/fileio.c #define IS_DRIVE(x) c_isalpha (x) x 92 src/fileio.c #define DRIVE_LETTER(x) c_tolower (x) x 1959 src/fileio.c char *nm, *p, *x, *endp; x 2032 src/fileio.c x = xnm + SBYTES (filename); x 2035 src/fileio.c while ((p = search_embedded_absfilename (xnm, x)) != NULL) x 2044 src/fileio.c Lisp_Object xname = make_specified_string (xnm, -1, x - xnm, multibyte); x 2051 src/fileio.c filename = make_specified_string (xnm, -1, x - xnm, multibyte); x 68 src/floatfns.c CHECK_FLOAT (Lisp_Object x) x 70 src/floatfns.c CHECK_TYPE (FLOATP (x), Qfloatp, x); x 108 src/floatfns.c (Lisp_Object y, Lisp_Object x) x 112 src/floatfns.c if (NILP (x)) x 116 src/floatfns.c double d2 = extract_float (x); x 151 src/floatfns.c (Lisp_Object x) x 153 src/floatfns.c CHECK_FLOAT (x); x 154 src/floatfns.c return isnan (XFLOAT_DATA (x)) ? Qt : Qnil; x 160 src/floatfns.c # define signbit(x) ((x) < 0 || (IEEE_FLOATING_POINT && !(x) && 1 / (x) < 0)) x 191 src/floatfns.c (Lisp_Object x) x 193 src/floatfns.c double f = extract_float (x); x 305 src/floatfns.c ecount_leading_zeros (EMACS_UINT x) x 307 src/floatfns.c return (EMACS_UINT_WIDTH == UINT_WIDTH ? count_leading_zeros (x) x 308 src/floatfns.c : EMACS_UINT_WIDTH == ULONG_WIDTH ? count_leading_zeros_l (x) x 309 src/floatfns.c : count_leading_zeros_ll (x)); x 561 src/floatfns.c identity (double x) x 563 src/floatfns.c return x; x 577 src/floatfns.c fmod_float (Lisp_Object x, Lisp_Object y) x 579 src/floatfns.c double f1 = XFLOATINT (x); x 290 src/fns.c ptrdiff_t x, y, lastdiag, olddiag; x 302 src/fns.c for (x = 1; x <= len2; x++) x 304 src/fns.c column[0] = x; x 305 src/fns.c for (y = 1, lastdiag = x - 1; y <= len1; y++) x 309 src/fns.c lastdiag + (s1[y-1] == s2[x-1] ? 0 : 1)); x 318 src/fns.c for (x = 1; x <= len2; x++) x 320 src/fns.c column[0] = x; x 323 src/fns.c for (y = 1, lastdiag = x - 1; y <= len1; y++) x 1853 src/fns.c same_float (Lisp_Object x, Lisp_Object y) x 1856 src/fns.c xu = { .val = XFLOAT_DATA (x) }, x 1867 src/fns.c eq_comparable_value (Lisp_Object x) x 1869 src/fns.c return SYMBOLP (x) || FIXNUMP (x); x 4221 src/fns.c CHECK_HASH_TABLE (Lisp_Object x) x 4223 src/fns.c CHECK_TYPE (HASH_TABLE_P (x), Qhash_table_p, x); x 424 src/font.h FONTP (Lisp_Object x) x 426 src/font.h return PSEUDOVECTORP (x, PVEC_FONT); x 431 src/font.h FONT_SPEC_P (Lisp_Object x) x 433 src/font.h return FONTP (x) && PVSIZE (x) == FONT_SPEC_MAX; x 438 src/font.h GC_FONT_SPEC_P (Lisp_Object x) x 440 src/font.h return FONTP (x) && (gc_asize (x) & PSEUDOVECTOR_SIZE_MASK) == FONT_SPEC_MAX; x 445 src/font.h FONT_ENTITY_P (Lisp_Object x) x 447 src/font.h return FONTP (x) && PVSIZE (x) == FONT_ENTITY_MAX; x 452 src/font.h GC_FONT_ENTITY_P (Lisp_Object x) x 454 src/font.h return FONTP (x) && (gc_asize (x) & PSEUDOVECTOR_SIZE_MASK) == FONT_ENTITY_MAX; x 459 src/font.h FONT_OBJECT_P (Lisp_Object x) x 461 src/font.h return FONTP (x) && PVSIZE (x) == FONT_OBJECT_MAX; x 466 src/font.h GC_FONT_OBJECT_P (Lisp_Object x) x 468 src/font.h return FONTP (x) && (gc_asize (x) & PSEUDOVECTOR_SIZE_MASK) == FONT_OBJECT_MAX; x 474 src/font.h CHECK_FONT (Lisp_Object x) x 476 src/font.h CHECK_TYPE (FONTP (x), Qfont, x); x 480 src/font.h CHECK_FONT_SPEC (Lisp_Object x) x 482 src/font.h CHECK_TYPE (FONT_SPEC_P (x), Qfont_spec, x); x 486 src/font.h CHECK_FONT_ENTITY (Lisp_Object x) x 488 src/font.h CHECK_TYPE (FONT_ENTITY_P (x), Qfont_entity, x); x 492 src/font.h CHECK_FONT_OBJECT (Lisp_Object x) x 494 src/font.h CHECK_TYPE (FONT_OBJECT_P (x), Qfont_object, x); x 544 src/font.h CHECK_FONT_GET_OBJECT (Lisp_Object x) x 546 src/font.h CHECK_FONT_OBJECT (x); x 547 src/font.h return XFONT_OBJECT (x); x 667 src/font.h int x, int y, bool with_background); x 688 src/font.h int *x, int *y); x 888 src/frame.c if (w->cursor.x >= text_area_x + text_area_width) x 889 src/frame.c w->cursor.hpos = w->cursor.x = 0; x 2469 src/frame.c frame_internal_border_part (struct frame *f, int x, int y) x 2482 src/frame.c if (offset < x && x < width - offset) x 2493 src/frame.c if (0 <= x && x <= border) x 2495 src/frame.c else if (width - border <= x && x <= width) x 2504 src/frame.c if (0 <= x && x <= border) x 2512 src/frame.c else if (width - border <= x && x <= width) x 2523 src/frame.c if (0 <= x && x <= half_width) x 2525 src/frame.c else if (half_width < x && x <= width) x 2531 src/frame.c if (0 <= x && x <= half_width) x 2533 src/frame.c else if (half_width < x && x <= width) x 2568 src/frame.c Lisp_Object x, y, retval; x 2571 src/frame.c x = y = Qnil; x 2580 src/frame.c &x, &y, x 2584 src/frame.c if (! NILP (x) && f) x 2586 src/frame.c int col = XFIXNUM (x); x 2589 src/frame.c XSETINT (x, col); x 2596 src/frame.c retval = Fcons (lispy_dummy, Fcons (x, y)); x 2617 src/frame.c Lisp_Object x, y, retval; x 2620 src/frame.c x = y = Qnil; x 2629 src/frame.c &x, &y, x 2638 src/frame.c retval = Fcons (lispy_dummy, Fcons (x, y)); x 2650 src/frame.c frame_char_to_pixel_position (struct frame *f, int x, int y, x 2653 src/frame.c *pix_x = FRAME_COL_TO_PIXEL_X (f, x) + FRAME_COLUMN_WIDTH (f) / 2; x 2670 src/frame.c frame_set_mouse_position (struct frame *f, int x, int y) x 2674 src/frame.c frame_char_to_pixel_position (f, x, y, &pix_x, &pix_y); x 2695 src/frame.c (Lisp_Object frame, Lisp_Object x, Lisp_Object y) x 2698 src/frame.c int xval = check_integer_range (x, INT_MIN, INT_MAX); x 2740 src/frame.c (Lisp_Object frame, Lisp_Object x, Lisp_Object y) x 2743 src/frame.c int xval = check_integer_range (x, INT_MIN, INT_MAX); x 3840 src/frame.c (Lisp_Object frame, Lisp_Object x, Lisp_Object y) x 3843 src/frame.c int xval = check_integer_range (x, INT_MIN, INT_MAX); x 5016 src/frame.c XWINDOW (FRAME_SELECTED_WINDOW (f))->cursor.x = 0; x 5544 src/frame.c int *x, int *y, x 5606 src/frame.c *x = clip_to_bounds (INT_MIN, tempX, INT_MAX); x 5640 src/frame.c int x UNINIT, y UNINIT; x 5650 src/frame.c &x, &y, &width, &height); x 5656 src/frame.c if (x >= 0 && (geometry & XNegative)) x 5657 src/frame.c element = list3 (Qleft, Qminus, make_fixnum (-x)); x 5658 src/frame.c else if (x < 0 && ! (geometry & XNegative)) x 5659 src/frame.c element = list3 (Qleft, Qplus, make_fixnum (x)); x 5661 src/frame.c element = Fcons (Qleft, make_fixnum (x)); x 6111 src/frame.c workarea = list4i (mi->work.x, mi->work.y, x 6113 src/frame.c geometry = list4i (mi->geom.x, mi->geom.y, x 590 src/frame.h struct x_output *x; /* From xterm.h. */ x 811 src/frame.h NUMVAL (Lisp_Object x) x 813 src/frame.h return NUMBERP (x) ? XFLOATINT (x) : -1; x 1233 src/frame.h #define CHECK_FRAME(x) \ x 1234 src/frame.h CHECK_TYPE (FRAMEP (x), Qframep, x) x 1236 src/frame.h #define CHECK_LIVE_FRAME(x) \ x 1237 src/frame.h CHECK_TYPE (FRAMEP (x) && FRAME_LIVE_P (XFRAME (x)), Qframe_live_p, x) x 1397 src/frame.h frame_dimension (int x) x 1400 src/frame.h return x; x 1599 src/frame.h #define FRAME_PIXEL_X_TO_COL(f, x) \ x 1600 src/frame.h (((x) - FRAME_INTERNAL_BORDER_WIDTH (f)) \ x 1714 src/frame.h extern enum internal_border_part frame_internal_border_part (struct frame *f, int x, int y); x 662 src/fringe.c int x = window_box_left (w, (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w) x 667 src/fringe.c p.x = x - p.wd - (wd - p.wd) / 2; x 686 src/fringe.c p.bx = x - wd; x 692 src/fringe.c int x = window_box_right (w, x 699 src/fringe.c p.x = x + (wd - p.wd) / 2; x 704 src/fringe.c p.bx = x; x 709 src/fringe.c if (p.x >= WINDOW_BOX_LEFT_EDGE_X (w) x 710 src/fringe.c && (p.x + p.wd) <= WINDOW_BOX_LEFT_EDGE_X (w) + WINDOW_PIXEL_WIDTH (w)) x 458 src/ftcrfont.c int *x, int *y) x 469 src/ftcrfont.c int result = ftfont_anchor_point (font, code, idx, x, y); x 534 src/ftcrfont.c int from, int to, int x, int y, bool with_background) x 593 src/ftcrfont.c cairo_rectangle (cr, x, y - FONT_BASE (s->font), x 602 src/ftcrfont.c glyphs[i].x = x; x 604 src/ftcrfont.c x += (s->padding_p ? 1 : ftcrfont_glyph_extents (s->font, x 1675 src/ftfont.c int *x, int *y) x 1688 src/ftfont.c *x = ft_face->glyph->outline.points[idx].x; x 1810 src/ftfont.c #define FLOOR(x) ((x) & -64) x 1811 src/ftfont.c #define CEIL(x) (((x)+63) & -64) x 1812 src/ftfont.c #define ROUND(x) (((x)+32) & -64) x 1838 src/ftfont.c v[0].x = v[1].x = m->horiBearingX; x 1839 src/ftfont.c v[2].x = v[3].x = m->horiBearingX + m->width; x 1844 src/ftfont.c g->g.lbearing = v[0].x < v[1].x ? FLOOR (v[0].x) : FLOOR (v[1].x); x 1845 src/ftfont.c g->g.rbearing = v[2].x > v[3].x ? CEIL (v[2].x) : CEIL (v[3].x); x 1856 src/ftfont.c g->g.xadv = ROUND (ft_face->glyph->advance.x); x 1951 src/ftfont.c unsigned code, int x_ppem, int y_ppem, int *x, int *y) x 1962 src/ftfont.c *x = outline->points[ap].x << 6; x 1970 src/ftfont.c *x += DEVICE_DELTA (anchor->f.f2.XDeviceTable, x_ppem); x 35 src/gtkutil.c #define xp x x 110 src/gtkutil.c #define gtk_font_chooser_dialog_new(x, y) \ x 111 src/gtkutil.c gtk_font_selection_dialog_new (x) x 113 src/gtkutil.c #define GTK_FONT_CHOOSER(x) GTK_FONT_SELECTION_DIALOG (x) x 114 src/gtkutil.c #define gtk_font_chooser_set_font(x, y) \ x 115 src/gtkutil.c gtk_font_selection_dialog_set_font_name (x, y) x 126 src/gtkutil.c #define XG_BIN_CHILD(x) gtk_bin_get_child (GTK_BIN (x)) x 409 src/gtkutil.c for (int x = 0; x < width; x++) x 411 src/gtkutil.c unsigned long rgb = XGetPixel (xim, x, y); x 415 src/gtkutil.c *pixels++ = xmm && !XGetPixel (xmm, x, y) ? 0 : 255; x 451 src/gtkutil.c for (int x = 0; x < width; x++) x 453 src/gtkutil.c guint32 argb = ((guint32 *) pixels)[x]; x 457 src/gtkutil.c ((guint32 *) pixels)[x] = 0; x 463 src/gtkutil.c pixels[x * 4 ] = red * 0xff / alpha; x 464 src/gtkutil.c pixels[x * 4 + 1] = green * 0xff / alpha; x 465 src/gtkutil.c pixels[x * 4 + 2] = blue * 0xff / alpha; x 466 src/gtkutil.c pixels[x * 4 + 3] = alpha; x 829 src/gtkutil.c xp_output *x = f->output_data.xp; x 830 src/gtkutil.c GtkWidget *top = gtk_widget_get_toplevel (x->ttip_lbl); x 851 src/gtkutil.c xp_output *x = f->output_data.xp; x 852 src/gtkutil.c if (x->ttip_widget == NULL) x 858 src/gtkutil.c x->ttip_widget = tooltip; x 860 src/gtkutil.c x->ttip_lbl = gtk_label_new (""); x 861 src/gtkutil.c g_object_ref (G_OBJECT (x->ttip_lbl)); x 862 src/gtkutil.c gtk_tooltip_set_custom (tooltip, x->ttip_lbl); x 863 src/gtkutil.c x->ttip_window = GTK_WINDOW (gtk_widget_get_toplevel (x->ttip_lbl)); x 866 src/gtkutil.c p = gtk_widget_get_parent (x->ttip_lbl); x 877 src/gtkutil.c gtk_window_set_title (x->ttip_window, ""); x 879 src/gtkutil.c gtk_widget_realize (GTK_WIDGET (x->ttip_window)); x 880 src/gtkutil.c gtk_widget_realize (x->ttip_lbl); x 882 src/gtkutil.c g_signal_connect (x->ttip_lbl, "hierarchy-changed", x 898 src/gtkutil.c xp_output *x = f->output_data.xp; x 907 src/gtkutil.c if (!x->ttip_lbl) x 912 src/gtkutil.c widget = GTK_WIDGET (x->ttip_lbl); x 913 src/gtkutil.c gwin = gtk_widget_get_window (GTK_WIDGET (x->ttip_window)); x 921 src/gtkutil.c g_object_set_data (G_OBJECT (x->ttip_window), "restore-tt", x 927 src/gtkutil.c (gtk_widget_get_display (GTK_WIDGET (x->ttip_window))), x 932 src/gtkutil.c gtk_tooltip_set_custom (x->ttip_widget, widget); x 933 src/gtkutil.c gtk_tooltip_set_text (x->ttip_widget, SSDATA (encoded_string)); x 934 src/gtkutil.c gtk_widget_get_preferred_size (GTK_WIDGET (x->ttip_window), NULL, &req); x 949 src/gtkutil.c xp_output *x = f->output_data.xp; x 950 src/gtkutil.c if (x->ttip_window) x 954 src/gtkutil.c gtk_window_move (x->ttip_window, root_x / xg_get_scale (f), x 956 src/gtkutil.c gtk_widget_show (GTK_WIDGET (x->ttip_window)); x 958 src/gtkutil.c gtk_widget_show (GTK_WIDGET (x->ttip_window)); x 959 src/gtkutil.c gtk_window_move (x->ttip_window, root_x / xg_get_scale (f), x 1881 src/gtkutil.c xp_output *x = f->output_data.xp; x 1901 src/gtkutil.c if (x->ttip_widget) x 1905 src/gtkutil.c gtk_tooltip_set_custom (x->ttip_widget, NULL); x 1906 src/gtkutil.c g_object_unref (G_OBJECT (x->ttip_widget)); x 1908 src/gtkutil.c if (x->ttip_lbl) x 1909 src/gtkutil.c gtk_widget_destroy (x->ttip_lbl); x 4125 src/gtkutil.c xp_output *x = f->output_data.xp; x 4129 src/gtkutil.c if (!x->menubar_widget || gtk_widget_get_mapped (x->menubar_widget)) x 4132 src/gtkutil.c if (x->menubar_widget && gtk_widget_get_parent (x->menubar_widget)) x 4137 src/gtkutil.c gtk_box_pack_start (GTK_BOX (x->vbox_widget), x->menubar_widget, x 4139 src/gtkutil.c gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x->menubar_widget, 0); x 4141 src/gtkutil.c g_signal_connect (x->menubar_widget, "map", G_CALLBACK (menubar_map_cb), f); x 4142 src/gtkutil.c gtk_widget_show_all (x->menubar_widget); x 4143 src/gtkutil.c gtk_widget_get_preferred_size (x->menubar_widget, NULL, &req); x 4149 src/gtkutil.c GdkScreen *screen = gtk_widget_get_screen (x->menubar_widget); x 4152 src/gtkutil.c gtk_widget_realize (x->menubar_widget); x 4153 src/gtkutil.c gtk_widget_set_visual (x->menubar_widget, visual); x 4171 src/gtkutil.c xp_output *x = f->output_data.xp; x 4173 src/gtkutil.c if (x->menubar_widget) x 4177 src/gtkutil.c gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x->menubar_widget); x 4180 src/gtkutil.c x->menubar_widget = 0; x 4191 src/gtkutil.c struct x_output *x = f->output_data.x; x 4200 src/gtkutil.c if (! x->menubar_widget) return 0; x 4214 src/gtkutil.c if (! (event->xbutton.x >= 0 x 4215 src/gtkutil.c && event->xbutton.x < FRAME_PIXEL_WIDTH (f) x 4235 src/gtkutil.c && ! gtk_widget_is_ancestor (x->menubar_widget, gwdesc)) x 4238 src/gtkutil.c list = gtk_container_get_children (GTK_CONTAINER (x->menubar_widget)); x 4244 src/gtkutil.c rec.x = xev->event_x / scale; x 4250 src/gtkutil.c rec.x = event->xbutton.x / scale; x 4513 src/gtkutil.c dummy.configure.x = allocation->x; x 5381 src/gtkutil.c event->area.x -= width > event->area.width ? width-event->area.width : 0; x 5384 src/gtkutil.c event->area.x = max (0, event->area.x); x 5399 src/gtkutil.c xp_output *x = f->output_data.xp; x 5401 src/gtkutil.c GtkWidget *top_widget = x->toolbar_widget; x 5403 src/gtkutil.c gtk_orientable_set_orientation (GTK_ORIENTABLE (x->toolbar_widget), x 5410 src/gtkutil.c gtk_box_pack_start (GTK_BOX (x->hbox_widget), top_widget, x 5414 src/gtkutil.c gtk_box_reorder_child (GTK_BOX (x->hbox_widget), x 5417 src/gtkutil.c x->toolbar_in_hbox = true; x 5421 src/gtkutil.c bool vbox_pos = x->menubar_widget != 0; x 5422 src/gtkutil.c gtk_box_pack_start (GTK_BOX (x->vbox_widget), top_widget, x 5426 src/gtkutil.c gtk_box_reorder_child (GTK_BOX (x->vbox_widget), x 5429 src/gtkutil.c x->toolbar_in_hbox = false; x 5431 src/gtkutil.c x->toolbar_is_packed = true; x 5455 src/gtkutil.c xp_output *x = f->output_data.xp; x 5475 src/gtkutil.c x->toolbar_widget = gtk_toolbar_new (); x 5477 src/gtkutil.c gtk_widget_set_name (x->toolbar_widget, "emacs-toolbar"); x 5479 src/gtkutil.c gtk_toolbar_set_style (GTK_TOOLBAR (x->toolbar_widget), GTK_TOOLBAR_ICONS); x 5480 src/gtkutil.c gtk_orientable_set_orientation (GTK_ORIENTABLE (x->toolbar_widget), x 5482 src/gtkutil.c g_signal_connect (x->toolbar_widget, "size-allocate", x 5485 src/gtkutil.c gsty = gtk_widget_get_style_context (x->toolbar_widget); x 5694 src/gtkutil.c xp_output *x = f->output_data.xp; x 5697 src/gtkutil.c GtkWidget *top_widget = x->toolbar_widget; x 5701 src/gtkutil.c if (x->toolbar_in_hbox) x 5704 src/gtkutil.c gtk_container_child_get (GTK_CONTAINER (x->hbox_widget), x 5715 src/gtkutil.c gtk_container_child_get (GTK_CONTAINER (x->vbox_widget), x 5718 src/gtkutil.c if (pos == 0 || (pos == 1 && x->menubar_widget)) x 5785 src/gtkutil.c xp_output *x = f->output_data.xp; x 5828 src/gtkutil.c if (! x->toolbar_widget) x 5831 src/gtkutil.c wtoolbar = GTK_TOOLBAR (x->toolbar_widget); x 6035 src/gtkutil.c w = xg_get_image_for_pixmap (f, img, x->widget, NULL); x 6080 src/gtkutil.c if (! x->toolbar_is_packed) x 6082 src/gtkutil.c gtk_widget_show_all (x->toolbar_widget); x 6100 src/gtkutil.c xp_output *x = f->output_data.xp; x 6102 src/gtkutil.c if (x->toolbar_widget) x 6105 src/gtkutil.c GtkWidget *top_widget = x->toolbar_widget; x 6108 src/gtkutil.c if (x->toolbar_is_packed) x 6110 src/gtkutil.c if (x->toolbar_in_hbox) x 6111 src/gtkutil.c gtk_container_remove (GTK_CONTAINER (x->hbox_widget), x 6114 src/gtkutil.c gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x 6118 src/gtkutil.c gtk_widget_destroy (x->toolbar_widget); x 6120 src/gtkutil.c x->toolbar_widget = 0; x 6121 src/gtkutil.c x->toolbar_widget = 0; x 6122 src/gtkutil.c x->toolbar_is_packed = false; x 6145 src/gtkutil.c xp_output *x = f->output_data.xp; x 6146 src/gtkutil.c GtkWidget *top_widget = x->toolbar_widget; x 6148 src/gtkutil.c if (! x->toolbar_widget || ! top_widget) x 6153 src/gtkutil.c if (x->toolbar_is_packed) x 6155 src/gtkutil.c if (x->toolbar_in_hbox) x 6156 src/gtkutil.c gtk_container_remove (GTK_CONTAINER (x->hbox_widget), x 6159 src/gtkutil.c gtk_container_remove (GTK_CONTAINER (x->vbox_widget), x 96 src/haiku_draw_support.cc BView_FillRectangle (void *view, int x, int y, int width, int height) x 99 src/haiku_draw_support.cc BRect rect = BRect (x, y, x + width - 1, y + height - 1); x 105 src/haiku_draw_support.cc BView_FillRectangleAbs (void *view, int x, int y, int x1, int y1) x 108 src/haiku_draw_support.cc BRect rect = BRect (x, y, x1, y1); x 114 src/haiku_draw_support.cc BView_StrokeRectangle (void *view, int x, int y, int width, int height) x 117 src/haiku_draw_support.cc BRect rect = BRect (x, y, x + width - 1, y + height - 1); x 137 src/haiku_draw_support.cc BView_ClipToRect (void *view, int x, int y, int width, int height) x 140 src/haiku_draw_support.cc BRect rect = BRect (x, y, x + width - 1, y + height - 1); x 146 src/haiku_draw_support.cc BView_ClipToInverseRect (void *view, int x, int y, int width, int height) x 149 src/haiku_draw_support.cc BRect rect = BRect (x, y, x + width - 1, y + height - 1); x 173 src/haiku_draw_support.cc BView_MovePenTo (void *view, int x, int y) x 176 src/haiku_draw_support.cc BPoint pt = BPoint (x, y); x 198 src/haiku_draw_support.cc BView_CopyBits (void *view, int x, int y, int width, int height, x 203 src/haiku_draw_support.cc vw->CopyBits (BRect (x, y, x + width - 1, y + height - 1), x 281 src/haiku_draw_support.cc BView_DrawBitmap (void *view, void *bitmap, int x, int y, x 290 src/haiku_draw_support.cc vw->DrawBitmap (bm, BRect (x, y, x + width - 1, y + height - 1), x 293 src/haiku_draw_support.cc vw->DrawBitmap (bm, BRect (x, y, x + width - 1, y + height - 1), x 300 src/haiku_draw_support.cc BView_DrawBitmapTiled (void *view, void *bitmap, int x, int y, x 315 src/haiku_draw_support.cc vw->DrawBitmap (bm, BRect (x, y, x + width - 1, y + height - 1), x 322 src/haiku_draw_support.cc BView_DrawBitmapWithEraseOp (void *view, void *bitmap, int x, x 328 src/haiku_draw_support.cc BRect rect (x, y, x + width - 1, y + height - 1); x 347 src/haiku_draw_support.cc for (int x = 0; x < BE_RECT_WIDTH (bounds); ++x) x 349 src/haiku_draw_support.cc if (bits[y * (stride / 4) + x] == 0xFF000000) x 350 src/haiku_draw_support.cc bits[y * (stride / 4) + x] = RGB_COLOR_UINT32 (low_color); x 352 src/haiku_draw_support.cc bits[y * (stride / 4) + x] = 0; x 365 src/haiku_draw_support.cc be_draw_image_mask (void *src, void *view, int x, int y, int width, x 396 src/haiku_draw_support.cc vw->DrawBitmap (&bm, BRect (x, y, x + width - 1, y + height - 1), x 411 src/haiku_draw_support.cc be_apply_inverse_transform (double (*matrix3x3)[3], int x, int y, x 417 src/haiku_draw_support.cc BPoint point (x, y); x 421 src/haiku_draw_support.cc *x_out = std::floor (point.x); x 435 src/haiku_draw_support.cc BView_InvertRect (void *view, int x, int y, int width, int height) x 439 src/haiku_draw_support.cc vw->InvertRect (BRect (x, y, x + width - 1, y + height - 1)); x 443 src/haiku_draw_support.cc be_draw_cross_on_pixmap_1 (BBitmap *bitmap, int x, int y, int width, x 461 src/haiku_draw_support.cc view.StrokeLine (BPoint (x, y), x 462 src/haiku_draw_support.cc BPoint (x + width - 1, y + height - 1)); x 463 src/haiku_draw_support.cc view.StrokeLine (BPoint (x, y + height - 1), x 464 src/haiku_draw_support.cc BPoint (x + width - 1, y)); x 470 src/haiku_draw_support.cc be_draw_cross_on_pixmap (void *bitmap, int x, int y, int width, x 475 src/haiku_draw_support.cc be_draw_cross_on_pixmap_1 (target, x, y, width, height, x 488 src/haiku_draw_support.cc int x, y, bit; x 508 src/haiku_draw_support.cc for (x = 0; x < BE_RECT_WIDTH (bounds); ++x) x 510 src/haiku_draw_support.cc bit = haiku_get_pixel (mask, x, y); x 514 src/haiku_draw_support.cc pixel = haiku_get_pixel (bitmap, x, y); x 515 src/haiku_draw_support.cc haiku_put_pixel ((void *) &combined, x, y, x 519 src/haiku_draw_support.cc haiku_put_pixel ((void *) &combined, x, y, 0); x 298 src/haiku_select.cc int32 index, float *x, float *y) x 310 src/haiku_select.cc *x = point.x; x 398 src/haiku_select.cc float x, float y) x 402 src/haiku_select.cc return msg->AddPoint (name, BPoint (x, y)) != B_OK; x 245 src/haiku_support.cc int x, y; x 258 src/haiku_support.cc it = data->menu->Go (BPoint (data->x, data->y)); x 892 src/haiku_support.cc MoveToIncludingFrame (int x, int y) x 899 src/haiku_support.cc MoveTo (x + frame.left - decorator.left, x 972 src/haiku_support.cc rq.x = whereto.x; x 1145 src/haiku_support.cc && new_position.x != 0) x 1154 src/haiku_support.cc MoveTo (new_position.x, 0); x 1159 src/haiku_support.cc rq.x = std::lrint (new_position.x); x 1197 src/haiku_support.cc EmacsMoveTo (int x, int y) x 1203 src/haiku_support.cc this->MoveToIncludingFrame (x, y); x 1205 src/haiku_support.cc this->parent->MoveChild (this, x, y, 0); x 1442 src/haiku_support.cc rq.x = std::lrint (point.x); x 1458 src/haiku_support.cc rq.x = std::lrint (point.x); x 1486 src/haiku_support.cc set_mouse_position (pt.x, pt.y); x 1741 src/haiku_support.cc rq.x = std::floor (expose_bounds.left); x 1839 src/haiku_support.cc rq.x = point.x; x 1908 src/haiku_support.cc rq.x = point.x; x 1995 src/haiku_support.cc rq.x = point.x; x 2053 src/haiku_support.cc EmacsScrollBar (int x, int y, int x1, int y1, bool horizontal_p, x 2055 src/haiku_support.cc : BScrollBar (BRect (x, y, x1, y1), NULL, NULL, 0, 0, horizontal_p ? x 2395 src/haiku_support.cc rq.x = std::lrint (conv.x); x 2405 src/haiku_support.cc diff = point.x - last_overscroll.x; x 3541 src/haiku_support.cc BWindow_set_offset (void *window, int x, int y) x 3549 src/haiku_support.cc w->EmacsMoveTo (x, y); x 3553 src/haiku_support.cc wn->MoveTo (x, y); x 3678 src/haiku_support.cc int x, int y, int x1, int y1) x 3686 src/haiku_support.cc scroll_bar = new EmacsScrollBar (x, y, x1, y1, horizontal_p, x 3710 src/haiku_support.cc BView_move_frame (void *view, int x, int y, int x1, int y1) x 3716 src/haiku_support.cc vw->MoveTo (x, y); x 3717 src/haiku_support.cc vw->ResizeTo (x1 - x, y1 - y); x 3770 src/haiku_support.cc int x, int y, int width, int height) x 3778 src/haiku_support.cc vw->invalid_region.Include (BRect (x, y, x + width - 1, x 3795 src/haiku_support.cc vw->invalid_region.Include (BRect (x, y, x + width - 1, x 3801 src/haiku_support.cc BView_invalidate_region (void *view, int x, int y, int width, int height) x 3806 src/haiku_support.cc vw->invalid_region.Include (BRect (x, y, x + width - 1, x 3859 src/haiku_support.cc BView_publish_scroll_bar (void *view, int x, int y, int width, int height) x 3864 src/haiku_support.cc vw->sb_region.Include (BRect (x, y, x - 1 + width, x 3871 src/haiku_support.cc BView_forget_scroll_bar (void *view, int x, int y, int width, int height) x 3876 src/haiku_support.cc vw->sb_region.Exclude (BRect (x, y, x - 1 + width, x 3883 src/haiku_support.cc BView_inside_scroll_bar (void *view, int x, int y) x 3890 src/haiku_support.cc val = vw->sb_region.Contains (BPoint (x, y)); x 3900 src/haiku_support.cc BView_get_mouse (void *view, int *x, int *y) x 3909 src/haiku_support.cc *x = std::lrint (l.x); x 3916 src/haiku_support.cc BView_convert_to_screen (void *view, int *x, int *y) x 3918 src/haiku_support.cc BPoint l = BPoint (*x, *y); x 3925 src/haiku_support.cc *x = std::lrint (l.x); x 3930 src/haiku_support.cc BView_convert_from_screen (void *view, int *x, int *y) x 3932 src/haiku_support.cc BPoint l = BPoint (*x, *y); x 3939 src/haiku_support.cc *x = std::lrint (l.x); x 4097 src/haiku_support.cc BMenu_run (void *menu, int x, int y, x 4118 src/haiku_support.cc data.x = x; x 4419 src/haiku_support.cc int x, int y) x 4442 src/haiku_support.cc point.x -= x; x 4445 src/haiku_support.cc point.x = -point.x; x 4645 src/haiku_support.cc be_warp_pointer (int x, int y) x 4651 src/haiku_support.cc set_mouse_position (x, y); x 4833 src/haiku_support.cc for (int x = 0; x < i_count; ++x) x 4835 src/haiku_support.cc if (!strcmp (i_fmts[x].MIME, mime)) x 4842 src/haiku_support.cc for (int x = 0; x < i_count; ++x) x 4844 src/haiku_support.cc if (!strcmp (o_fmts[x].MIME, "image/x-be-bitmap") || x 4845 src/haiku_support.cc !strcmp (o_fmts[x].MIME, "image/x-vnd.Be-bitmap")) x 5221 src/haiku_support.cc msg.AddPoint ("emacs:point", BPoint (event->x, event->y)); x 5367 src/haiku_support.cc be_create_pixmap_cursor (void *bitmap, int x, int y) x 5373 src/haiku_support.cc cursor = new BCursor (bm, BPoint (x, y)); x 5480 src/haiku_support.cc be_get_explicit_workarea (int *x, int *y, int *width, int *height) x 5494 src/haiku_support.cc *x = zoom.left; x 146 src/haiku_support.h int x; x 155 src/haiku_support.h int x, y; x 198 src/haiku_support.h int x; x 207 src/haiku_support.h int x, y; x 213 src/haiku_support.h int x, y; x 222 src/haiku_support.h int x; x 236 src/haiku_support.h int x, y; x 1251 src/haikufns.c int x, y; x 1263 src/haikufns.c BView_get_mouse (FRAME_HAIKU_VIEW (f), &x, &y); x 1264 src/haikufns.c BView_convert_to_screen (FRAME_HAIKU_VIEW (f), &x, &y); x 1265 src/haikufns.c *root_x = x; x 1562 src/haikufns.c haiku_get_pixel (haiku bitmap, int x, int y) x 1572 src/haikufns.c if (x < 0 || x > right - left || y < 0 || y > bottom - top) x 1576 src/haikufns.c return ((uint32_t *) (data + (bytes_per_row * y)))[x]; x 1578 src/haikufns.c byte = y * bytes_per_row + x / 8; x 1579 src/haikufns.c return data[byte] & (1 << (x % 8)); x 1583 src/haikufns.c haiku_put_pixel (haiku bitmap, int x, int y, unsigned long pixel) x 1594 src/haikufns.c if (x < 0 || x > right - left || y < 0 || y > bottom - top) x 1600 src/haikufns.c bit = x % 8; x 1601 src/haikufns.c xoff = x / 8; x 1610 src/haikufns.c ((uint32_t *) (data + (bytes_per_row * y)))[x] = pixel; x 1886 src/haikufns.c int x, y; x 1973 src/haikufns.c int width, height, bytes_per_line, x, y; x 1988 src/haikufns.c for (x = 0; x < width; ++x) x 1990 src/haikufns.c if (mask[x / 8] >> (x % 8) & 1) x 1991 src/haikufns.c haiku_put_pixel (bitmap, x, y, x 1992 src/haikufns.c (bits[x / 8] >> (x % 8) & 1 x 1996 src/haikufns.c haiku_put_pixel (bitmap, x, y, 0); x 2003 src/haikufns.c cursor = be_create_pixmap_cursor (bitmap, info->x, info->y); x 2146 src/haikufns.c (Lisp_Object x, Lisp_Object y) x 2148 src/haikufns.c int xval = check_integer_range (x, INT_MIN, INT_MAX); x 2170 src/haikufns.c int x, y; x 2177 src/haikufns.c BView_get_mouse (view, &x, &y); x 2178 src/haikufns.c BView_convert_to_screen (view, &x, &y); x 2181 src/haikufns.c return Fcons (make_fixnum (x), make_fixnum (y)); x 3077 src/haikufns.c monitor.geom.x = 0; x 3088 src/haikufns.c if (!be_get_explicit_workarea ((int *) &monitor.work.x, x 757 src/haikufont.c haikufont_open (struct frame *f, Lisp_Object font_entity, int x) x 768 src/haikufont.c if (x <= 0) x 772 src/haikufont.c x = NILP (tem) ? 0 : XFIXNAT (tem); x 791 src/haikufont.c XFIXNUM (XCDR (indices)), x); x 802 src/haikufont.c if (BFont_open_pattern (&ptn, &be_font, x)) x 816 src/haikufont.c font_entity, x); x 1077 src/haikufont.c int x, int y, bool with_background) x 1119 src/haikufont.c haiku_draw_background_rect (s, s->face, x, y - ascent, x 1125 src/haikufont.c BView_MovePenTo (view, x, y); x 33 src/haikugui.h int x, y; x 46 src/haikugui.h ((xr).x = (nr).x, \ x 52 src/haikugui.h ((nr).x = (xr).x, \ x 58 src/haikugui.h ((nr).x = (px), \ x 383 src/haikumenu.c haiku_menu_show (struct frame *f, int x, int y, int menuflags, x 422 src/haikumenu.c BView_convert_to_screen (view, &x, &y); x 427 src/haikumenu.c menu_item_selection = BMenu_run (menu, x, y, haiku_menu_show_help, x 1145 src/haikuselect.c int x, y; x 1155 src/haikuselect.c &x, &y); x 1157 src/haikuselect.c &x, &y); x 1159 src/haikuselect.c haiku_dnd_compute_tip_xy (&x, &y); x 1160 src/haikuselect.c BWindow_set_offset (FRAME_HAIKU_WINDOW (tip_f), x, y); x 1193 src/haikuselect.c ie->x, ie->y, horizontal ? Qt : Qnil, up ? Qt : Qnil, x 97 src/haikuterm.c haiku_coords_from_parent (struct frame *f, int *x, int *y) x 101 src/haikuterm.c *x -= FRAME_OUTPUT_DATA (p)->frame_x; x 106 src/haikuterm.c haiku_toolkit_position (struct frame *f, int x, int y, x 110 src/haikuterm.c *menu_bar_p = (x >= 0 && x < FRAME_PIXEL_WIDTH (f) x 172 src/haikuterm.c BView_ClipToRect (FRAME_HAIKU_DRAWABLE (s->f), r[0].x, x 174 src/haikuterm.c BView_invalidate_region (FRAME_HAIKU_DRAWABLE (s->f), r[0].x, x 190 src/haikuterm.c BView_ClipToRect (FRAME_HAIKU_DRAWABLE (s->f), r[1].x, r[1].y, x 192 src/haikuterm.c BView_invalidate_region (FRAME_HAIKU_DRAWABLE (s->f), r[1].x, x 201 src/haikuterm.c BView_ClipToRect (FRAME_HAIKU_DRAWABLE (s->f), s->x, s->y, x 203 src/haikuterm.c BView_invalidate_region (FRAME_HAIKU_DRAWABLE (s->f), s->x, x 249 src/haikuterm.c haiku_clear_frame_area (struct frame *f, int x, int y, x 254 src/haikuterm.c BView_draw_lock (vw, true, x, y, width, height); x 256 src/haikuterm.c BView_ClipToRect (vw, x, y, width, height); x 258 src/haikuterm.c BView_FillRectangle (vw, x, y, width, height); x 609 src/haikuterm.c BView_ClipToRect (view, clip_rect->x, clip_rect->y, clip_rect->width, x 677 src/haikuterm.c BView_ClipToRect (view, clip_rect->x, clip_rect->y, x 760 src/haikuterm.c haiku_draw_underwave (struct glyph_string *s, int width, int x) x 776 src/haikuterm.c xmax = x + width; x 781 src/haikuterm.c BView_ClipToRect (view, x, y, width, wave_height); x 783 src/haikuterm.c ax = x - ((int) (x) % dx) + (float) 0.5; x 809 src/haikuterm.c int width, int x) x 831 src/haikuterm.c haiku_draw_underwave (s, width, x); x 913 src/haikuterm.c BView_FillRectangle (view, s->x, y, s->width, thickness); x 927 src/haikuterm.c BView_FillRectangle (view, s->x, s->y + dy, s->width, h); x 951 src/haikuterm.c BView_FillRectangle (view, s->x, glyph_y + dy, s->width, h); x 991 src/haikuterm.c left_x = s->x; x 994 src/haikuterm.c : min (last_x, s->x + s->background_width) - 1); x 1019 src/haikuterm.c int x, int y, int width, int height) x 1034 src/haikuterm.c BView_FillRectangle (view, x, y, width, height); x 1049 src/haikuterm.c int x, y, bytes_per_line; x 1060 src/haikuterm.c for (x = 0; x < rec->width; x++) x 1061 src/haikuterm.c haiku_put_pixel (rec->img, x, y, x 1062 src/haikuterm.c ((bits[x / 8] >> (x % 8)) & 1 x 1074 src/haikuterm.c int x, int y, int width, int height, x 1103 src/haikuterm.c BView_ClipToRect (view, x, y, width, height); x 1105 src/haikuterm.c 0, 0, x + width, y + height); x 1111 src/haikuterm.c int x, int y, int width, int height) x 1114 src/haikuterm.c haiku_draw_plain_background (s, face, x, y, width, height); x 1116 src/haikuterm.c haiku_draw_stipple_background (s, face, x, y, width, height, x 1133 src/haikuterm.c haiku_draw_background_rect (s, s->face, s->x, s->y + box_line_width, x 1174 src/haikuterm.c int i, x; x 1177 src/haikuterm.c x = s->x + max (face->box_vertical_line_width, 0); x 1179 src/haikuterm.c x = s->x; x 1194 src/haikuterm.c BView_StrokeRectangle (view, x, s->y, g->pixel_width, x 1196 src/haikuterm.c x += g->pixel_width; x 1209 src/haikuterm.c ft->driver->draw (s, 0, s->nchars, x, y, false); x 1211 src/haikuterm.c ft->driver->draw (s, 0, s->nchars, x, y, true); x 1214 src/haikuterm.c ft->driver->draw (s, 0, s->nchars, x + 1, y, false); x 1223 src/haikuterm.c int x, i, j; x 1231 src/haikuterm.c x = s->x + max (face->box_vertical_line_width, 0); x 1233 src/haikuterm.c x = s->x; x 1283 src/haikuterm.c x + glyph->slice.glyphless.upper_xoff, x 1287 src/haikuterm.c x + glyph->slice.glyphless.lower_xoff, x 1302 src/haikuterm.c x, s->ybase - glyph->ascent, x 1306 src/haikuterm.c x += glyph->pixel_width; x 1319 src/haikuterm.c int x = s->x; x 1325 src/haikuterm.c if (x < left_x) x 1327 src/haikuterm.c background_width -= left_x - x; x 1328 src/haikuterm.c x = left_x; x 1336 src/haikuterm.c if (x + background_width > right_x) x 1337 src/haikuterm.c background_width -= x - right_x; x 1338 src/haikuterm.c x += background_width; x 1343 src/haikuterm.c x -= width; x 1350 src/haikuterm.c BView_FillRectangle (view, x, s->y, width, s->height); x 1355 src/haikuterm.c x += width; x 1357 src/haikuterm.c x = s->x; x 1373 src/haikuterm.c BView_FillRectangle (view, x, y, w, h); x 1382 src/haikuterm.c haiku_draw_stipple_background (s, s->face, x, y, w, h, x 1390 src/haikuterm.c int x = s->x, text_left_x = window_box_left (s->w, TEXT_AREA); x 1395 src/haikuterm.c && x < text_left_x && !s->row->mode_line_p) x 1397 src/haikuterm.c background_width -= text_left_x - x; x 1398 src/haikuterm.c x = text_left_x; x 1402 src/haikuterm.c haiku_draw_background_rect (s, s->face, s->x, s->y, x 1428 src/haikuterm.c int x, y, width, height; x 1432 src/haikuterm.c x = window_x; x 1438 src/haikuterm.c BView_ClipToRect (FRAME_HAIKU_DRAWABLE (f), x, y, width, height); x 1459 src/haikuterm.c int i, j, x; x 1468 src/haikuterm.c x = s->x + max (face->box_vertical_line_width, 0); x 1470 src/haikuterm.c x = s->x; x 1487 src/haikuterm.c BView_StrokeRectangle (view, s->x, s->y, x 1499 src/haikuterm.c int xx = x + s->cmp->offsets[j * 2]; x 1525 src/haikuterm.c font->driver->draw (s, j, i, x, y, false); x 1527 src/haikuterm.c font->driver->draw (s, j, i, x + 1, y, false); x 1528 src/haikuterm.c x += width; x 1533 src/haikuterm.c font->driver->draw (s, i, i + 1, x + xoff, y + yoff, false); x 1535 src/haikuterm.c font->driver->draw (s, i, i + 1, x + xoff + 1, y + yoff, x 1537 src/haikuterm.c x += wadjust; x 1544 src/haikuterm.c font->driver->draw (s, j, i, x, y, false); x 1546 src/haikuterm.c font->driver->draw (s, j, i, x + 1, y, false); x 1558 src/haikuterm.c int x = s->x; x 1567 src/haikuterm.c && s->slice.x == 0) x 1568 src/haikuterm.c x += max (face->box_vertical_line_width, 0); x 1572 src/haikuterm.c if (s->slice.x == 0) x 1573 src/haikuterm.c x += s->img->hmargin; x 1596 src/haikuterm.c x1 = x + s->slice.width - 1; x 1629 src/haikuterm.c if (s->slice.x == 0) x 1630 src/haikuterm.c x -= thick + extra_x, left_p = 1; x 1633 src/haikuterm.c if (s->slice.x + s->slice.width == s->img->width) x 1639 src/haikuterm.c haiku_draw_relief_rect (s, x, y, x1, y1, thick, thick, raised_p, x 1658 src/haikuterm.c int x, y, height, width, relief; x 1671 src/haikuterm.c x = s->x; x 1673 src/haikuterm.c && s->slice.x == 0) x 1675 src/haikuterm.c x += box_line_hwidth; x 1693 src/haikuterm.c haiku_draw_background_rect (s, face, x, y, x 1700 src/haikuterm.c x = s->x; x 1703 src/haikuterm.c if (s->slice.x == 0) x 1704 src/haikuterm.c x += s->img->hmargin; x 1710 src/haikuterm.c && s->slice.x == 0) x 1711 src/haikuterm.c x += max (face->box_vertical_line_width, 0); x 1713 src/haikuterm.c ir.x = x; x 1726 src/haikuterm.c if (s->slice.x != x || s->slice.y != y x 1731 src/haikuterm.c BView_ClipToRect (view, r.x, r.y, r.width, r.height); x 1735 src/haikuterm.c x - s->slice.x, x 1777 src/haikuterm.c if (s->slice.x != x || s->slice.y != y x 1800 src/haikuterm.c BView_StrokeRectangle (view, x - relief, y - relief, x 1915 src/haikuterm.c haiku_draw_text_decoration (s, face, s->width, s->x); x 1923 src/haikuterm.c && prev->x + prev->width + prev->right_overhang > s->x) x 1948 src/haikuterm.c && next->x - next->left_overhang < s->x + s->width) x 2082 src/haikuterm.c int x, y, wd, h; x 2097 src/haikuterm.c get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h); x 2109 src/haikuterm.c x += cursor_glyph->pixel_width - wd; x 2114 src/haikuterm.c BView_draw_lock (view, true, x, y, wd, h); x 2123 src/haikuterm.c BView_StrokeRectangle (view, x, y, wd, h); x 2140 src/haikuterm.c int x, y, dummy_x, dummy_y, dummy_h; x 2181 src/haikuterm.c x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x); x 2193 src/haikuterm.c x += cursor_glyph->pixel_width - width; x 2195 src/haikuterm.c BView_FillRectangle (view, x, y, width, row->height); x 2196 src/haikuterm.c BView_invalidate_region (view, x, y, width, row->height); x 2200 src/haikuterm.c x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x); x 2214 src/haikuterm.c x += cursor_glyph->pixel_width - w->phys_cursor_width + 1; x 2216 src/haikuterm.c BView_FillRectangle (view, x, y, w->phys_cursor_width - 1, x 2218 src/haikuterm.c BView_invalidate_region (view, x, y, w->phys_cursor_width - 1, x 2229 src/haikuterm.c int x, int y, enum text_cursor_kinds cursor_type, x 2341 src/haikuterm.c int x, int y_0, int y_1) x 2348 src/haikuterm.c BView_draw_lock (view, true, x, y_0, 1, y_1); x 2352 src/haikuterm.c BView_StrokeLine (view, x, y_0, x, y_1); x 2733 src/haikuterm.c BView_invalidate_region (view, p->x, p->y, p->wd, p->h); x 2792 src/haikuterm.c BView_FillRectangle (view, p->x, p->y, p->wd, p->h); x 2796 src/haikuterm.c BView_DrawBitmapWithEraseOp (view, bitmap, p->x, p->y, p->wd, p->h); x 2842 src/haikuterm.c int x, y, width, height, from_y, to_y, bottom_y; x 2843 src/haikuterm.c window_box (w, ANY_AREA, &x, &y, &width, &height); x 2871 src/haikuterm.c BView_draw_lock (view, true, x, to_y, width, height); x 2873 src/haikuterm.c BView_CopyBits (view, x, from_y, width, height, x 2874 src/haikuterm.c x, to_y, width, height); x 2889 src/haikuterm.c enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y, x 2954 src/haikuterm.c XSETINT (*x, screen_x); x 3248 src/haikuterm.c expose_frame (f, b->x, b->y, b->width, b->height); x 3328 src/haikuterm.c && b->x > 0 && b->x <= FRAME_PIXEL_WIDTH (f)) x 3397 src/haikuterm.c b->x, b->y)) x 3402 src/haikuterm.c if (b->x > FRAME_PIXEL_WIDTH (f) x 3404 src/haikuterm.c || b->x < 0 x 3428 src/haikuterm.c && b->x == dpyinfo->last_mouse_motion_x x 3432 src/haikuterm.c dpyinfo->last_mouse_motion_x = b->x; x 3460 src/haikuterm.c || b->x < r.x || b->x >= r.x + r.width x 3464 src/haikuterm.c note_mouse_highlight (f, b->x, b->y); x 3465 src/haikuterm.c remember_mouse_glyph (f, b->x, b->y, x 3475 src/haikuterm.c Lisp_Object window = window_from_coordinates (f, b->x, b->y, 0, 0, 0); x 3515 src/haikuterm.c XSETINT (inev.x, b->x); x 3555 src/haikuterm.c int x = b->x; x 3558 src/haikuterm.c window = window_from_coordinates (f, x, y, 0, true, true); x 3564 src/haikuterm.c (f, x, y, type == BUTTON_DOWN, inev.modifiers); x 3573 src/haikuterm.c int x = b->x; x 3576 src/haikuterm.c window = window_from_coordinates (f, x, y, 0, true, true); x 3584 src/haikuterm.c (f, x, y, type == BUTTON_DOWN, inev.modifiers); x 3630 src/haikuterm.c XSETINT (inev.x, min (max (0, b->x - bar->left), x 3636 src/haikuterm.c XSETINT (inev.x, min (max (0, b->y - bar->top), x 3645 src/haikuterm.c XSETINT (inev.x, b->x); x 3695 src/haikuterm.c FRAME_OUTPUT_DATA (f)->frame_x = b->x; x 3699 src/haikuterm.c haiku_coords_from_parent (f, &b->x, &b->y); x 3701 src/haikuterm.c left = b->x - b->decorator_width; x 3708 src/haikuterm.c XSETINT (inev.x, left); x 3768 src/haikuterm.c XSETINT (inev.x, portion); x 3802 src/haikuterm.c XSETINT (inev.x, 0); x 3828 src/haikuterm.c int x, y, scroll_width, scroll_height; x 3835 src/haikuterm.c BView_get_mouse (FRAME_HAIKU_VIEW (f), &x, &y); x 3837 src/haikuterm.c wheel_window = window_from_coordinates (f, x, y, 0, false, false); x 3874 src/haikuterm.c XSETINT (inev.x, x); x 4017 src/haikuterm.c XSETINT (inev.x, b->x); x 4536 src/haikuterm.c haiku_set_offset (struct frame *frame, int x, int y, x 4558 src/haikuterm.c frame->left_pos = x; x 4560 src/haikuterm.c if (x < 0) x 4571 src/haikuterm.c BWindow_set_offset (FRAME_HAIKU_WINDOW (frame), x, y); x 74 src/image.c #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y) x 126 src/image.c #define GET_PIXEL(ximg, x, y) GetPixel (ximg, x, y) x 138 src/image.c #define GET_PIXEL(ximg, x, y) XGetPixel (ximg, x, y) x 161 src/image.c #define GET_PIXEL(ximg, x, y) haiku_get_pixel (ximg, x, y) x 216 src/image.c int x, int y, unsigned long pixel) x 219 src/image.c ((uint32_t *)(image->data + y * image->bytes_per_line))[x] = pixel; x 221 src/image.c ((uint8_t *)(image->data + y * image->bytes_per_line))[x] = pixel; x 225 src/image.c image_pix_context_get_pixel (Emacs_Pix_Context image, int x, int y) x 228 src/image.c return ((uint32_t *)(image->data + y * image->bytes_per_line))[x]; x 230 src/image.c return ((uint8_t *)(image->data + y * image->bytes_per_line))[x]; x 245 src/image.c for (int x = 0; x < width; x++) x 246 src/image.c PUT_PIXEL (pimg, x, y, x 247 src/image.c (data[x / CHAR_BIT] >> (x % CHAR_BIT)) & 1 ? fg : bg); x 262 src/image.c int x, y; x 265 src/image.c for (x = 0; x < pimg->width; x++) x 270 src/image.c color = GET_PIXEL (pimg, x, y); x 271 src/image.c alpha = GET_PIXEL (mask, x, y); x 275 src/image.c PUT_PIXEL (pimg, x, y, ARGB_TO_ULONG (alpha, r, g, b)); x 321 src/image.c XGetPixel (Emacs_Pix_Container image, int x, int y) x 323 src/image.c return ns_get_pixel (image, x, y); x 329 src/image.c XPutPixel (Emacs_Pix_Container image, int x, int y, unsigned long pixel) x 331 src/image.c ns_put_pixel (image, x, y, pixel); x 520 src/image.c for (int x = 0; x < width; x++) x 551 src/image.c int bytes_per_line, x, y; x 564 src/image.c for (x = 0; x < width; x++) x 565 src/image.c PUT_PIXEL (bitmap, x, y, ((bits[8] >> (x % 8)) & 1 x 757 src/image.c int fd, width, height, rc, bytes_per_line, x, y; x 826 src/image.c for (x = 0; x < width; x++) x 827 src/image.c PUT_PIXEL (bitmap, x, y, ((tmp[x / 8] >> (x % 8)) & 1 x 966 src/image.c unsigned long x, y, xp, xm, yp, ym; x 1017 src/image.c for (x = 0; x < ximg->width; ++x) x 1019 src/image.c xp = x != ximg->width - 1 ? x + 1 : 0; x 1020 src/image.c xm = x != 0 ? x - 1 : ximg->width - 1; x 1023 src/image.c if (XGetPixel (ximg, x, y) == bg x 1024 src/image.c && XGetPixel (ximg, x, yp) == bg x 1025 src/image.c && XGetPixel (ximg, x, ym) == bg x 1032 src/image.c XPutPixel (mask_img, x, y, 0); x 1034 src/image.c XPutPixel (mask_img, x, y, 1); x 4226 src/image.c for (int x = 0; x < img->width; x++) x 4227 src/image.c PUT_PIXEL (img->pixmap, x, y, x 4228 src/image.c (data[x / 8] >> (x % 8)) & 1 ? fg : bg); x 5532 src/image.c int width, height, x, y; x 5715 src/image.c for (x = 0; x < width; x++, str += chars_per_pixel) x 5720 src/image.c PUT_PIXEL (ximg, x, y, x 5723 src/image.c PUT_PIXEL (mask_img, x, y, x 5728 src/image.c ns_set_alpha (ximg, x, y, 0); x 6131 src/image.c int x, y; x 6155 src/image.c for (x = 0; x < img->width; ++x, ++p) x 6156 src/image.c p->pixel = GET_PIXEL (ximg, x, y); x 6162 src/image.c for (x = 0; x < img->width; ++x, ++p) x 6164 src/image.c p->pixel = GET_PIXEL (ximg, x, y); x 6187 src/image.c XPutPixel (XImage *ximg, int x, int y, COLORREF color) x 6200 src/image.c pixel = ximg->data + y * rowbytes + x * 3; x 6213 src/image.c pixel = ximg->data + y * rowbytes + x / 8; x 6216 src/image.c *pixel = *pixel | (1 << x % 8); x 6218 src/image.c *pixel = *pixel & ~(1 << x % 8); x 6233 src/image.c int x, y; x 6246 src/image.c for (x = 0; x < img->width; ++x, ++p) x 6250 src/image.c PUT_PIXEL (ximage, x, y, pixel); x 6277 src/image.c int x, y, i, sum; x 6298 src/image.c for (x = 1; x < img->width - 1; ++x) x 6300 src/image.c p = COLOR (new, x, 0); x 6302 src/image.c p = COLOR (new, x, img->height - 1); x 6310 src/image.c for (x = 1; x < img->width - 1; ++x, ++p) x 6316 src/image.c for (xx = x - 1; xx < x + 2; ++xx, ++i) x 6402 src/image.c int x, int y, unsigned int width, unsigned int height, x 6418 src/image.c cairo_move_to (cr, x + 0.5, y + 0.5); x 6430 src/image.c XDrawLine (dpy, pixmap, gc, x, y, x + width - 1, y + height - 1); x 6431 src/image.c XDrawLine (dpy, pixmap, gc, x, y + height - 1, x + width - 1, y); x 6434 src/image.c be_draw_cross_on_pixmap (pixmap, x, y, width, height, color); x 6548 src/image.c int x, y; x 6610 src/image.c for (x = 0; x < img->width; ++x) x 6612 src/image.c PUT_PIXEL (mask_img, x, y, (GET_PIXEL (ximg, x, y) != bg x 6615 src/image.c if (XGetPixel (ximg, x, y) == bg) x 6616 src/image.c ns_set_alpha (ximg, x, y, 0); x 6627 src/image.c for (x = 0; x < img->width; ++x) x 6629 src/image.c COLORREF p = GetPixel (ximg, x, y); x 6631 src/image.c mask_img[y * row_width + x / 8] |= 1 << (x % 8); x 6779 src/image.c int x, y; x 6923 src/image.c for (x = 0; x < width; ++x) x 6927 src/image.c if ((x & 7) == 0) x 6955 src/image.c PUT_PIXEL (ximg, x, y, g ? fg : bg); x 6976 src/image.c for (x = 0; x < width; ++x) x 7009 src/image.c PUT_PIXEL (ximg, x, y, lookup_rgb_color (f, r, g, b)); x 7436 src/image.c int x, y; x 7694 src/image.c for (x = 0; x < width; ++x) x 7701 src/image.c PUT_PIXEL (ximg, x, y, lookup_rgb_color (f, r, g, b)); x 7721 src/image.c PUT_PIXEL (mask_img, x, y, *p > 0 ? PIX_MASK_DRAW : PIX_MASK_RETAIN); x 8174 src/image.c int row_stride, x, y; x 8321 src/image.c for (x = 0; x < mgr->cinfo.output_width; ++x) x 8322 src/image.c PUT_PIXEL (ximg, x, y, colors[buffer[0][x]]); x 8625 src/image.c int width, height, x, y, count; x 8754 src/image.c for (x = 0; x < width; ++x) x 8756 src/image.c UINT32 abgr = row[x]; x 8760 src/image.c PUT_PIXEL (ximg, x, height - 1 - y, lookup_rgb_color (f, r, g, b)); x 9033 src/image.c int rc, width, height, x, y, i, j; x 9263 src/image.c for (x = 0; x < width; ++x) x 9264 src/image.c *(pixmap + x + y * width) = frame_bg; x 9267 src/image.c for (x = 0; x < width; ++x) x 9268 src/image.c *(pixmap + x + y * width) = frame_bg; x 9272 src/image.c for (x = 0; x < img->corners[LEFT_CORNER]; ++x) x 9273 src/image.c *(pixmap + x + y * width) = frame_bg; x 9274 src/image.c for (x = img->corners[RIGHT_CORNER]; x < width; ++x) x 9275 src/image.c *(pixmap + x + y * width) = frame_bg; x 9398 src/image.c for (x = 0; x < subimg_width; x++) x 9400 src/image.c int c = raster[y * subimg_width + x]; x 9403 src/image.c *(pixmap + x + subimg_left + (y + subimg_top) * width) = x 9412 src/image.c for (x = 0; x < subimg_width; ++x) x 9414 src/image.c int c = raster[y * subimg_width + x]; x 9417 src/image.c *(pixmap + x + subimg_left + (y + subimg_top) * width) = x 9427 src/image.c for (x = 0; x < width; ++x) x 9428 src/image.c PUT_PIXEL (ximg, x, y, *(pixmap + x + y * width)); x 9873 src/image.c for (int x = 0; x < width; ++x) x 9878 src/image.c PUT_PIXEL (ximg, x, y, lookup_rgb_color (f, r, g, b)); x 9887 src/image.c PUT_PIXEL (mask_img, x, y, *p > 0 ? PIX_MASK_DRAW : PIX_MASK_RETAIN); x 10255 src/image.c ptrdiff_t x; x 10263 src/image.c for (x = 0; x < source_width; x++) x 10267 src/image.c if (x + source_left >= dest_width) x 10272 src/image.c if (dispose == BackgroundDispose || PixelGetAlpha (source[x])) x 10274 src/image.c PixelGetMagickColor (source[x], &pixel); x 10275 src/image.c PixelSetMagickColor (dest[x + source_left], &pixel); x 10316 src/image.c int x, y; x 10640 src/image.c for (x = 0; x < xlim; x++) x 10642 src/image.c PixelGetMagickColor (pixels[x], &pixel); x 10643 src/image.c PUT_PIXEL (ximg, x, y, x 10852 src/image.c # define LIBRSVG_CHECK_VERSION(v, w, x) false x 11352 src/image.c viewbox_width = viewbox.x + viewbox.width; x 11527 src/image.c for (int x = 0; x < width; ++x) x 11536 src/image.c PUT_PIXEL (ximg, x, y, lookup_rgb_color (f, red << 8, green << 8, blue << 8)); x 11825 src/image.c for (int x = 0; x < img->width; ++x) x 11827 src/image.c unsigned long pixel = XGetPixel (ximg, x, y); x 2121 src/indent.c double x = col * FRAME_COLUMN_WIDTH (XFRAME (w->frame)) + 0.5; x 2124 src/indent.c if (! (INT_MIN <= x && x <= INT_MAX)) x 2127 src/indent.c return x; x 161 src/inotify.c Lisp_Object x = aspect; x 163 src/inotify.c FOR_EACH_TAIL (x) x 164 src/inotify.c mask |= symbol_to_inotifymask (XCAR (x)); x 165 src/inotify.c CHECK_LIST_END (x, aspect); x 3809 src/keyboard.c event.x = WINDOWP (window) ? window : frame; x 3827 src/keyboard.c event.x = Qnil; x 4338 src/keyboard.c Lisp_Object x, y; x 4346 src/keyboard.c x = Qnil; x 4351 src/keyboard.c &part, &x, &y, &t); x 4358 src/keyboard.c if (!NILP (x) && f) x 4374 src/keyboard.c if (!NILP (x) && NILP (obj)) x 4375 src/keyboard.c obj = make_lispy_movement (f, bar_window, part, x, y, t); x 5403 src/keyboard.c make_lispy_position (struct frame *f, Lisp_Object x, Lisp_Object y, x 5409 src/keyboard.c int mx = XFIXNUM (x), my = XFIXNUM (y); x 5732 src/keyboard.c return list5 (ev->frame_or_window, type, Fcons (ev->x, ev->y), x 5743 src/keyboard.c coords_in_menu_bar_window (struct frame *f, int x, int y) x 5753 src/keyboard.c && x >= WINDOW_LEFT_EDGE_X (window) x 5755 src/keyboard.c && x <= WINDOW_RIGHT_EDGE_X (window)); x 5810 src/keyboard.c Lisp_Object window = event->x; x 6017 src/keyboard.c || coords_in_menu_bar_window (f, XFIXNUM (event->x), x 6026 src/keyboard.c int x, y, dummy; x 6028 src/keyboard.c x = FRAME_TO_WINDOW_PIXEL_X (menu_w, XFIXNUM (event->x)); x 6031 src/keyboard.c x_y_to_hpos_vpos (XWINDOW (f->menu_bar_window), x, y, &column, &row, x 6036 src/keyboard.c pixel_to_glyph_coords (f, XFIXNUM (event->x), XFIXNUM (event->y), x 6074 src/keyboard.c Fcons (event->x, event->y), x 6081 src/keyboard.c position = make_lispy_position (f, event->x, event->y, x 6127 src/keyboard.c && (eabs (XFIXNUM (event->x) - last_mouse_x) <= fuzz) x 6137 src/keyboard.c last_mouse_x = XFIXNUM (event->x); x 6155 src/keyboard.c frame_relative_event_pos = Fcons (event->x, event->y); x 6180 src/keyboard.c xdiff = XFIXNUM (event->x) x 6294 src/keyboard.c position = make_lispy_position (f, event->x, event->y, x 6338 src/keyboard.c && (eabs (XFIXNUM (event->x) - last_mouse_x) <= fuzz) x 6361 src/keyboard.c last_mouse_x = XFIXNUM (event->x); x 6397 src/keyboard.c position = make_lispy_position (f, event->x, event->y, x 6406 src/keyboard.c Lisp_Object x, y, id, position; x 6410 src/keyboard.c x = event->x; x 6413 src/keyboard.c position = make_lispy_position (f, x, y, event->timestamp); x 6424 src/keyboard.c Lisp_Object x, y, position; x 6427 src/keyboard.c x = event->x; x 6430 src/keyboard.c position = make_lispy_position (f, x, y, event->timestamp); x 6440 src/keyboard.c Lisp_Object x, y, id, position, tem, it, evt; x 6448 src/keyboard.c x = XCAR (it); x 6452 src/keyboard.c position = make_lispy_position (f, x, y, event->timestamp); x 6544 src/keyboard.c position = make_lispy_position (f, event->x, event->y, x 6633 src/keyboard.c Lisp_Object x, Lisp_Object y, Time t) x 6644 src/keyboard.c Fcons (x, y), x 6652 src/keyboard.c position = make_lispy_position (frame, x, y, t); x 11820 src/keyboard.c (Lisp_Object x, Lisp_Object y, Lisp_Object frame_or_window, Lisp_Object whole) x 11822 src/keyboard.c CHECK_FIXNUM (x); x 11825 src/keyboard.c if (XFIXNUM (x) != -1) x 11826 src/keyboard.c CHECK_FIXNAT (x); x 11836 src/keyboard.c XSETINT (x, (XFIXNUM (x) x 11847 src/keyboard.c return make_lispy_position (XFRAME (frame_or_window), x, y, 0); x 11874 src/keyboard.c Lisp_Object x = XCAR (tem); x 11881 src/keyboard.c if (XFIXNUM (x) < -1) x 11889 src/keyboard.c tem = Fposn_at_x_y (x, y, window, Qnil); x 13322 src/keyboard.c mark_object (event->ie.x); x 408 src/keyboard.h #define POSN_SET_POSN(posn,x) (XSETCAR (XCDR (posn), (x))) x 87 src/keymap.c CHECK_VECTOR_OR_CHAR_TABLE (Lisp_Object x) x 89 src/keymap.c CHECK_TYPE (VECTORP (x) || CHAR_TABLE_P (x), Qvector_or_char_table_p, x); x 372 src/lisp.h #define lisp_h_CHECK_FIXNUM(x) CHECK_TYPE (FIXNUMP (x), Qfixnump, x) x 373 src/lisp.h #define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP (x), Qsymbolp, x) x 374 src/lisp.h #define lisp_h_CHECK_TYPE(ok, predicate, x) \ x 375 src/lisp.h ((ok) ? (void) 0 : wrong_type_argument (predicate, x)) x 376 src/lisp.h #define lisp_h_CONSP(x) TAGGEDP (x, Lisp_Cons) x 377 src/lisp.h #define lisp_h_BASE_EQ(x, y) (XLI (x) == XLI (y)) x 378 src/lisp.h #define lisp_h_BASE2_EQ(x, y) \ x 379 src/lisp.h (BASE_EQ (x, y) \ x 381 src/lisp.h && SYMBOL_WITH_POS_P (x) \ x 382 src/lisp.h && BASE_EQ (XSYMBOL_WITH_POS (x)->sym, y))) x 387 src/lisp.h #define lisp_h_EQ(x, y) \ x 388 src/lisp.h ((XLI ((x)) == XLI ((y))) \ x 390 src/lisp.h && (SYMBOL_WITH_POS_P ((x)) \ x 392 src/lisp.h ? XLI (XSYMBOL_WITH_POS((x))->sym) == XLI (y) \ x 394 src/lisp.h && (XLI (XSYMBOL_WITH_POS((x))->sym) \ x 397 src/lisp.h && BARE_SYMBOL_P ((x)) \ x 398 src/lisp.h && (XLI (x) == XLI ((XSYMBOL_WITH_POS ((y)))->sym)))))) x 400 src/lisp.h #define lisp_h_FIXNUMP(x) \ x 401 src/lisp.h (! (((unsigned) (XLI (x) >> (USE_LSB_TAG ? 0 : FIXNUM_BITS)) \ x 404 src/lisp.h #define lisp_h_FLOATP(x) TAGGEDP (x, Lisp_Float) x 405 src/lisp.h #define lisp_h_NILP(x) BASE_EQ (x, Qnil) x 414 src/lisp.h #define lisp_h_SYMBOL_WITH_POS_P(x) PSEUDOVECTORP ((x), PVEC_SYMBOL_WITH_POS) x 415 src/lisp.h #define lisp_h_BARE_SYMBOL_P(x) TAGGEDP ((x), Lisp_Symbol) x 416 src/lisp.h #define lisp_h_SYMBOLP(x) ((BARE_SYMBOL_P ((x)) || \ x 417 src/lisp.h (symbols_with_pos_enabled && (SYMBOL_WITH_POS_P ((x)))))) x 422 src/lisp.h #define lisp_h_VECTORLIKEP(x) TAGGEDP (x, Lisp_Vectorlike) x 462 src/lisp.h # define BARE_SYMBOL_P(x) lisp_h_BARE_SYMBOL_P (x) x 463 src/lisp.h # define CHECK_FIXNUM(x) lisp_h_CHECK_FIXNUM (x) x 464 src/lisp.h # define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x) x 465 src/lisp.h # define CHECK_TYPE(ok, predicate, x) lisp_h_CHECK_TYPE (ok, predicate, x) x 466 src/lisp.h # define CONSP(x) lisp_h_CONSP (x) x 467 src/lisp.h # define BASE_EQ(x, y) lisp_h_BASE_EQ (x, y) x 468 src/lisp.h # define BASE2_EQ(x, y) lisp_h_BASE2_EQ (x, y) x 469 src/lisp.h # define FLOATP(x) lisp_h_FLOATP (x) x 470 src/lisp.h # define FIXNUMP(x) lisp_h_FIXNUMP (x) x 471 src/lisp.h # define NILP(x) lisp_h_NILP (x) x 478 src/lisp.h # define VECTORLIKEP(x) lisp_h_VECTORLIKEP (x) x 799 src/lisp.h (CHECK_TYPE) (int ok, Lisp_Object predicate, Lisp_Object x) x 801 src/lisp.h lisp_h_CHECK_TYPE (ok, predicate, x); x 982 src/lisp.h #define ROUNDUP(x, y) (POWER_OF_2 (y) \ x 983 src/lisp.h ? ((y) - 1 + (x)) & ~ ((y) - 1) \ x 984 src/lisp.h : ((y) - 1 + (x)) - ((y) - 1 + (x)) % (y)) x 1122 src/lisp.h (BARE_SYMBOL_P) (Lisp_Object x) x 1124 src/lisp.h return lisp_h_BARE_SYMBOL_P (x); x 1128 src/lisp.h (SYMBOL_WITH_POS_P) (Lisp_Object x) x 1130 src/lisp.h return lisp_h_SYMBOL_WITH_POS_P (x); x 1134 src/lisp.h (SYMBOLP) (Lisp_Object x) x 1136 src/lisp.h return lisp_h_SYMBOLP (x); x 1196 src/lisp.h (CHECK_SYMBOL) (Lisp_Object x) x 1198 src/lisp.h lisp_h_CHECK_SYMBOL (x); x 1288 src/lisp.h (FIXNUMP) (Lisp_Object x) x 1290 src/lisp.h return lisp_h_FIXNUMP (x); x 1332 src/lisp.h (BASE_EQ) (Lisp_Object x, Lisp_Object y) x 1334 src/lisp.h return lisp_h_BASE_EQ (x, y); x 1340 src/lisp.h (BASE2_EQ) (Lisp_Object x, Lisp_Object y) x 1342 src/lisp.h return lisp_h_BASE2_EQ (x, y); x 1348 src/lisp.h (EQ) (Lisp_Object x, Lisp_Object y) x 1350 src/lisp.h return lisp_h_EQ (x, y); x 1477 src/lisp.h (NILP) (Lisp_Object x) x 1479 src/lisp.h return lisp_h_NILP (x); x 1483 src/lisp.h (CONSP) (Lisp_Object x) x 1485 src/lisp.h return lisp_h_CONSP (x); x 1489 src/lisp.h CHECK_CONS (Lisp_Object x) x 1491 src/lisp.h CHECK_TYPE (CONSP (x), Qconsp, x); x 1606 src/lisp.h STRINGP (Lisp_Object x) x 1608 src/lisp.h return TAGGEDP (x, Lisp_String); x 1612 src/lisp.h CHECK_STRING (Lisp_Object x) x 1614 src/lisp.h CHECK_TYPE (STRINGP (x), Qstringp, x); x 1759 src/lisp.h (VECTORLIKEP) (Lisp_Object x) x 1761 src/lisp.h return lisp_h_VECTORLIKEP (x); x 1793 src/lisp.h VECTORP (Lisp_Object x) x 1795 src/lisp.h return VECTORLIKEP (x) && ! (ASIZE (x) & PSEUDOVECTOR_FLAG); x 1799 src/lisp.h CHECK_VECTOR (Lisp_Object x) x 1801 src/lisp.h CHECK_TYPE (VECTORP (x), Qvectorp, x); x 1884 src/lisp.h CHECK_BOOL_VECTOR (Lisp_Object x) x 1886 src/lisp.h CHECK_TYPE (BOOL_VECTOR_P (x), Qbool_vector_p, x); x 2548 src/lisp.h sxhash_combine (EMACS_UINT x, EMACS_UINT y) x 2550 src/lisp.h return (x << 4) + (x >> (EMACS_INT_WIDTH - 4)) + y; x 2556 src/lisp.h SXHASH_REDUCE (EMACS_UINT x) x 2558 src/lisp.h return (x ^ x >> (EMACS_INT_WIDTH - FIXNUM_BITS)) & INTMASK; x 2650 src/lisp.h mint_ptrp (Lisp_Object x) x 2652 src/lisp.h return FIXNUMP (x) || PSEUDOVECTORP (x, PVEC_MISC_PTR); x 2701 src/lisp.h FINALIZERP (Lisp_Object x) x 2703 src/lisp.h return PSEUDOVECTORP (x, PVEC_FINALIZER); x 2714 src/lisp.h MARKERP (Lisp_Object x) x 2716 src/lisp.h return PSEUDOVECTORP (x, PVEC_MARKER); x 2727 src/lisp.h OVERLAYP (Lisp_Object x) x 2729 src/lisp.h return PSEUDOVECTORP (x, PVEC_OVERLAY); x 2756 src/lisp.h USER_PTRP (Lisp_Object x) x 2758 src/lisp.h return PSEUDOVECTORP (x, PVEC_USER_PTR); x 2769 src/lisp.h SQLITEP (Lisp_Object x) x 2771 src/lisp.h return PSEUDOVECTORP (x, PVEC_SQLITE); x 2781 src/lisp.h CHECK_SQLITE (Lisp_Object x) x 2783 src/lisp.h CHECK_TYPE (SQLITE (x), Qsqlitep, x); x 2794 src/lisp.h BIGNUMP (Lisp_Object x) x 2796 src/lisp.h return PSEUDOVECTORP (x, PVEC_BIGNUM); x 2800 src/lisp.h INTEGERP (Lisp_Object x) x 2802 src/lisp.h return FIXNUMP (x) || BIGNUMP (x); x 2946 src/lisp.h (FLOATP) (Lisp_Object x) x 2948 src/lisp.h return lisp_h_FLOATP (x); x 3010 src/lisp.h FIXNATP (Lisp_Object x) x 3012 src/lisp.h return FIXNUMP (x) && 0 <= XFIXNUM (x); x 3027 src/lisp.h NUMBERP (Lisp_Object x) x 3029 src/lisp.h return INTEGERP (x) || FLOATP (x); x 3033 src/lisp.h RANGED_FIXNUMP (intmax_t lo, Lisp_Object x, intmax_t hi) x 3035 src/lisp.h return FIXNUMP (x) && lo <= XFIXNUM (x) && XFIXNUM (x) <= hi; x 3038 src/lisp.h #define TYPE_RANGED_FIXNUMP(type, x) \ x 3039 src/lisp.h (FIXNUMP (x) \ x 3040 src/lisp.h && (TYPE_SIGNED (type) ? TYPE_MINIMUM (type) <= XFIXNUM (x) : 0 <= XFIXNUM (x)) \ x 3041 src/lisp.h && XFIXNUM (x) <= TYPE_MAXIMUM (type)) x 3044 src/lisp.h AUTOLOADP (Lisp_Object x) x 3046 src/lisp.h return CONSP (x) && EQ (Qautoload, XCAR (x)); x 3077 src/lisp.h CHECK_RECORD (Lisp_Object x) x 3079 src/lisp.h CHECK_TYPE (RECORDP (x), Qrecordp, x); x 3084 src/lisp.h IMAGEP (Lisp_Object x) x 3086 src/lisp.h return CONSP (x) && EQ (XCAR (x), Qimage); x 3091 src/lisp.h ARRAYP (Lisp_Object x) x 3093 src/lisp.h return VECTORP (x) || STRINGP (x) || CHAR_TABLE_P (x) || BOOL_VECTOR_P (x); x 3097 src/lisp.h CHECK_LIST (Lisp_Object x) x 3099 src/lisp.h CHECK_TYPE (CONSP (x) || NILP (x), Qlistp, x); x 3103 src/lisp.h CHECK_LIST_END (Lisp_Object x, Lisp_Object y) x 3105 src/lisp.h CHECK_TYPE (NILP (x), Qlistp, y); x 3109 src/lisp.h (CHECK_FIXNUM) (Lisp_Object x) x 3111 src/lisp.h lisp_h_CHECK_FIXNUM (x); x 3115 src/lisp.h CHECK_STRING_CAR (Lisp_Object x) x 3117 src/lisp.h CHECK_TYPE (STRINGP (XCAR (x)), Qstringp, XCAR (x)); x 3121 src/lisp.h CHECK_VECTOR_OR_STRING (Lisp_Object x) x 3123 src/lisp.h if (VECTORP (x)) x 3124 src/lisp.h return ASIZE (x); x 3125 src/lisp.h if (STRINGP (x)) x 3126 src/lisp.h return SCHARS (x); x 3127 src/lisp.h wrong_type_argument (Qarrayp, x); x 3130 src/lisp.h CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate) x 3132 src/lisp.h CHECK_TYPE (ARRAYP (x), predicate, x); x 3135 src/lisp.h CHECK_FIXNAT (Lisp_Object x) x 3137 src/lisp.h CHECK_TYPE (FIXNATP (x), Qwholenump, x); x 3149 src/lisp.h CHECK_NUMBER (Lisp_Object x) x 3151 src/lisp.h CHECK_TYPE (NUMBERP (x), Qnumberp, x); x 3155 src/lisp.h CHECK_INTEGER (Lisp_Object x) x 3157 src/lisp.h CHECK_TYPE (INTEGERP (x), Qintegerp, x); x 3161 src/lisp.h CHECK_SUBR (Lisp_Object x) x 3163 src/lisp.h CHECK_TYPE (SUBRP (x), Qsubrp, x); x 4066 src/lisp.h extern Lisp_Object fmod_float (Lisp_Object x, Lisp_Object y); x 4503 src/lisp.h LOADHIST_ATTACH (Lisp_Object x) x 4506 src/lisp.h Vcurrent_load_list = Fcons (x, Vcurrent_load_list); x 5321 src/lisp.h #define eabs(x) ((x) < 0 ? -(x) : (x)) x 131 src/marker.c CHECK_MARKER (Lisp_Object x) x 133 src/marker.c CHECK_TYPE (MARKERP (x), Qmarkerp, x); x 1069 src/menu.c (Lisp_Object x, Lisp_Object y, Lisp_Object frame) x 1077 src/menu.c pixel_to_glyph_coords (f, XFIXNUM (x), XFIXNUM (y), &col, &row, NULL, 1); x 1119 src/menu.c Lisp_Object x, y, window; x 1148 src/menu.c x = XCAR (tem); x 1173 src/menu.c x = Fcar (tem); x 1182 src/menu.c if (NILP (x) && NILP (y)) x 1191 src/menu.c XSETFASTINT (x, 0); x 1205 src/menu.c x = make_fixnum (cur_x); x 1225 src/menu.c &part, &x, &y, &time); x 1233 src/menu.c XSETFASTINT (x, 0); x 1273 src/menu.c xpos += check_integer_range (x, x 1483 src/menu.c Lisp_Object x, y, frame, newpos, prompt = Fcar (contents); x 1502 src/menu.c XSETINT (x, x_coord / 2); x 1504 src/menu.c newpos = list2 (list2 (x, y), frame); x 914 src/minibuf.c XWINDOW (minibuf_window)->cursor.x = 0; x 175 src/msdos.c regs.x.ax = 0x0001; x 192 src/msdos.c regs.x.ax = 0x0002; x 237 src/msdos.c mouse_get_xy (int *x, int *y) x 241 src/msdos.c regs.x.ax = 0x0003; x 243 src/msdos.c *x = regs.x.cx / 8; x 244 src/msdos.c *y = regs.x.dx / 8; x 248 src/msdos.c mouse_moveto (int x, int y) x 254 src/msdos.c fprintf (tty->termscript, "<M_XY=%dx%d>", x, y); x 255 src/msdos.c regs.x.ax = 0x0004; x 256 src/msdos.c mouse_last_x = regs.x.cx = x * 8; x 257 src/msdos.c mouse_last_y = regs.x.dx = y * 8; x 268 src/msdos.c regs.x.ax = 0x0005; x 269 src/msdos.c regs.x.bx = mouse_button_translate[b]; x 271 src/msdos.c if (regs.x.bx) x 272 src/msdos.c *xp = regs.x.cx / 8, *yp = regs.x.dx / 8; x 273 src/msdos.c return (regs.x.bx != 0); x 283 src/msdos.c regs.x.ax = 0x0006; x 284 src/msdos.c regs.x.bx = mouse_button_translate[b]; x 286 src/msdos.c if (regs.x.bx) x 287 src/msdos.c *xp = regs.x.cx / 8, *yp = regs.x.dx / 8; x 288 src/msdos.c return (regs.x.bx != 0); x 298 src/msdos.c regs.x.ax = 0x0003; x 300 src/msdos.c if ((regs.x.bx & (1 << mouse_button_translate[b])) != 0) x 302 src/msdos.c *xp = regs.x.cx / 8; x 303 src/msdos.c *yp = regs.x.dx / 8; x 311 src/msdos.c enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y, x 325 src/msdos.c *x = make_fixnum (mouse_last_x = ix); x 332 src/msdos.c int x, y; x 334 src/msdos.c mouse_get_xy (&x, &y); x 335 src/msdos.c SELECTED_FRAME ()->mouse_moved |= (x != mouse_last_x || y != mouse_last_y); x 336 src/msdos.c mouse_last_x = x; x 365 src/msdos.c regs.x.ax = 0x0021; x 374 src/msdos.c regs.x.ax = 0x0007; x 375 src/msdos.c regs.x.cx = 0; x 376 src/msdos.c regs.x.dx = 8 * (ScreenCols () - 1); x 379 src/msdos.c regs.x.ax = 0x0008; x 380 src/msdos.c regs.x.cx = 0; x 381 src/msdos.c regs.x.dx = 8 * (ScreenRows () - 1); x 450 src/msdos.c regs.x.es = screen_virtual_segment; x 451 src/msdos.c regs.x.di = screen_virtual_offset + offset; x 452 src/msdos.c regs.x.cx = count; x 457 src/msdos.c dos_direct_output (int y, int x, char *buf, int len) x 459 src/msdos.c int t0 = 2 * (x + y * screen_size_X); x 488 src/msdos.c regs.x.ax = 0x1003; x 502 src/msdos.c regs.x.ax = 0x1003; x 513 src/msdos.c regs.x.ax = 0x1a00; x 548 src/msdos.c regs.x.ax = video_mode_value; x 556 src/msdos.c regs.x.ax = 0; x 633 src/msdos.c int x, y; x 638 src/msdos.c mouse_get_xy (&x, &y); x 639 src/msdos.c if (y != new_pos_Y || x < new_pos_X) x 729 src/msdos.c regs.x.cx = desired_cursor; x 1109 src/msdos.c IT_cursor_to (struct frame *f, int y, int x) x 1114 src/msdos.c fprintf (tty->termscript, "\n<XY=%dx%d>", x, y); x 1115 src/msdos.c new_pos_X = x; x 1435 src/msdos.c regs.x.es = (ScreenPrimary >> 4) & 0xffff; x 1437 src/msdos.c regs.x.es = (screen_old_address >> 4) & 0xffff; x 1439 src/msdos.c regs.x.es = ScreenMode () == 7 ? 0xb000 : 0xb800; x 1440 src/msdos.c regs.x.di = 0; x 1441 src/msdos.c es_value = regs.x.es; x 1444 src/msdos.c if (regs.x.es != es_value) x 1450 src/msdos.c if (regs.x.es != ((ScreenPrimary >> 4) & 0xffff)) x 1452 src/msdos.c screen_virtual_segment = regs.x.es; x 1453 src/msdos.c screen_virtual_offset = regs.x.di; x 2035 src/msdos.c regs.x.ax = 0xad80; x 2036 src/msdos.c regs.x.ss = regs.x.sp = regs.x.flags = 0; x 2417 src/msdos.c (regs.x.flags & 0x40) == 0) x 2635 src/msdos.c int but, press, x, y, ok; x 2694 src/msdos.c ok = mouse_pressed (but, &x, &y); x 2696 src/msdos.c ok = mouse_released (but, &x, &y); x 2724 src/msdos.c event.x = make_fixnum (x); x 2728 src/msdos.c x, y, press, &event); x 2871 src/msdos.c IT_menu_display (XMenu *menu, int y, int x, int pn, int *faces, int disp_help) x 2891 src/msdos.c IT_cursor_to (sf, y + i, x); x 2894 src/msdos.c mousehere = (y + i == my && x <= mx && mx < x + max_width); x 2926 src/msdos.c if (x + max_width > screen_size_X) x 2928 src/msdos.c max_width = screen_size_X - x; x 3021 src/msdos.c XMenuLocate (Display *foo0, XMenu *menu, int foo1, int foo2, int x, int y, x 3025 src/msdos.c *ulx = x + 1; x 3035 src/msdos.c int x, y; x 3047 src/msdos.c int statecount, x, y, i, b, screensize, leave, result, onepane; x 3125 src/msdos.c state[0].x = x0 - 1; x 3139 src/msdos.c mouse_get_xy (&x, &y); x 3141 src/msdos.c if (state[i].x <= x && x < state[i].x + state[i].menu->width + 2) x 3173 src/msdos.c state[i].x, x 3181 src/msdos.c state[statecount].x x 3182 src/msdos.c = state[i].x + state[i].menu->width + 2; x 3190 src/msdos.c state[statecount - 1].x, x 3213 src/msdos.c if (mouse_pressed (b, &x, &y)) x 3215 src/msdos.c while (mouse_button_depressed (b, &x, &y)) x 3219 src/msdos.c (void) mouse_released (b, &x, &y); x 3647 src/msdos.c extended_kbd = (!outregs.x.cflag) && (outregs.h.ah == 0); x 3657 src/msdos.c inregs.x.ax = 0x0021; x 3659 src/msdos.c have_mouse = (outregs.x.ax & 0xffff) == 0xffff; x 3665 src/msdos.c inregs.x.ax = 0x0000; x 3667 src/msdos.c have_mouse = (outregs.x.ax & 0xffff) == 0xffff; x 3670 src/msdos.c mouse_button_count = outregs.x.bx; x 3702 src/msdos.c inregs.x.cx = outside_cursor; x 3721 src/msdos.c int msshell, result = -1, inbak, outbak, errbak, x, y; x 3775 src/msdos.c mouse_get_xy (&x, &y); x 3838 src/msdos.c mouse_moveto (x, y); x 3870 src/msdos.c int setpriority (int x, int y, int z) { return 0; } x 4155 src/msdos.c r.x.ax = 0x1680; x 4156 src/msdos.c r.x.ss = r.x.sp = r.x.flags = 0; x 81 src/nsgui.h typedef struct _NSPoint { CGFloat x, y; } NSPoint; x 89 src/nsgui.h ((xr).x = (nr).origin.x, \ x 95 src/nsgui.h ((nr).origin.x = (xr).x, \ x 101 src/nsgui.h ((nr).origin.x = (px), \ x 212 src/nsterm.h #define NSTRACE_ARG_POINT(elt) (elt).x, (elt).y x 645 src/nsterm.h - (void) showAtX: (int) x Y: (int) y for: (int) seconds; x 685 src/nsterm.h - (unsigned long)getPixelAtX: (int)x Y: (int)y; x 686 src/nsterm.h - (void)setPixelAtX: (int)x Y: (int)y toRed: (unsigned char)r x 689 src/nsterm.h - (void)setAlphaAtX: (int)x Y: (int)y to: (unsigned char)a; x 1215 src/nsterm.h extern unsigned long ns_get_pixel (void *img, int x, int y); x 1216 src/nsterm.h extern void ns_put_pixel (void *img, int x, int y, unsigned long argb); x 1217 src/nsterm.h extern void ns_set_alpha (void *img, int x, int y, unsigned char a); x 1279 src/nsterm.h #define IN_BOUND(min, x, max) (((x) < (min)) \ x 1280 src/nsterm.h ? (min) : (((x)>(max)) ? (max) : (x))) x 1281 src/nsterm.h #define SCREENMAXBOUND(x) (IN_BOUND (-SCREENMAX, x, SCREENMAX)) x 70 src/nsxwidget.h int x, int y); x 78 src/nsxwidget.h void nsxwidget_move_view (struct xwidget_view *xv, int x, int y); x 79 src/nsxwidget.h void nsxwidget_move_widget_in_view (struct xwidget_view *xv, int x, int y); x 109 src/pdumper.c divide_round_up (size_t x, size_t y) x 111 src/pdumper.c return (x + y - 1) / y; x 261 src/pgtkfns.c struct pgtk_output *x = f->output_data.pgtk; x 276 src/pgtkfns.c pixel = x->mouse_color; x 283 src/pgtkfns.c x->cursor_foreground_color = fore_pixel; x 284 src/pgtkfns.c x->cursor_color = pixel; x 288 src/pgtkfns.c x->cursor_xgcv.background = x->cursor_color; x 289 src/pgtkfns.c x->cursor_xgcv.foreground = fore_pixel; x 2116 src/pgtkfns.c if (rec.x == 0) x 2405 src/pgtkfns.c rec.x = rec.x * scale + 0.5; x 2410 src/pgtkfns.c width = max (width, rec.x + rec.width); x 2450 src/pgtkfns.c rec.x = rec.x * scale + 0.5; x 2535 src/pgtkfns.c rec.x = rec.x * scale + 0.5; x 2539 src/pgtkfns.c work.x = work.x * scale + 0.5; x 2544 src/pgtkfns.c mi->geom.x = rec.x; x 2548 src/pgtkfns.c mi->work.x = work.x; x 3444 src/pgtkfns.c left_pos = alloc.x; x 3578 src/pgtkfns.c (Lisp_Object x, Lisp_Object y) x 3588 src/pgtkfns.c gdk_device_warp (device, gscr, XFIXNUM (x), XFIXNUM (y)); /* No effect on wayland. */ x 3607 src/pgtkfns.c int x = 0, y = 0; x 3609 src/pgtkfns.c gdk_device_get_position (device, &gscr, &x, &y); /* can't get on wayland? */ x 3611 src/pgtkfns.c return Fcons (make_fixnum (x), make_fixnum (y)); x 60 src/pgtkgui.h int x, y; x 102 src/pgtkgui.h ((xr).x = (nr).x, \ x 108 src/pgtkgui.h ((nr).x = (xr).x, \ x 114 src/pgtkgui.h ((nr).x = (px), \ x 216 src/pgtkim.c pgtk_im_set_cursor_location (struct frame *f, int x, int y, int width, x 222 src/pgtkim.c GdkRectangle area = { x, y, width, height }; x 535 src/pgtkmenu.c int x, int y, bool for_click) x 558 src/pgtkmenu.c rect.x = x; x 594 src/pgtkmenu.c pgtk_menu_show (struct frame *f, int x, int y, int menuflags, x 782 src/pgtkmenu.c create_and_show_popup_menu (f, first_wv, x, y, menuflags & MENU_FOR_CLICK); x 229 src/pgtkterm.c pgtk_toolkit_position (struct frame *f, int x, int y, x 237 src/pgtkterm.c x += FRAME_TOOLBAR_LEFT_WIDTH (f); x 240 src/pgtkterm.c *menu_bar_p = (x >= 0 && x < FRAME_PIXEL_WIDTH (f) x 246 src/pgtkterm.c test_rect.x = x / scale; x 386 src/pgtkterm.c mark_object (ev->ie.x); x 1251 src/pgtkterm.c cairo_rectangle (cr, r[i].x, r[i].y, r[i].width, r[i].height); x 1265 src/pgtkterm.c dst->clip[0].x = src->x; x 1271 src/pgtkterm.c cairo_rectangle (cr, src->x, src->y, src->width, src->height); x 1318 src/pgtkterm.c pgtk_clear_glyph_string_rect (struct glyph_string *s, int x, int y, x 1321 src/pgtkterm.c pgtk_fill_rectangle (s->f, s->xgcv.background, x, y, w, h, x 1327 src/pgtkterm.c fill_background_by_face (struct frame *f, struct face *face, int x, int y, x 1334 src/pgtkterm.c cairo_rectangle (cr, x, y, width, height); x 1360 src/pgtkterm.c fill_background (struct glyph_string *s, int x, int y, int width, int height) x 1362 src/pgtkterm.c fill_background_by_face (s->f, s->face, x, y, width, height); x 1382 src/pgtkterm.c fill_background (s, s->x, s->y + box_line_width, x 1396 src/pgtkterm.c pgtk_clear_glyph_string_rect (s, s->x, s->y + box_line_width, x 1406 src/pgtkterm.c pgtk_draw_rectangle (struct frame *f, unsigned long color, int x, int y, x 1413 src/pgtkterm.c cairo_rectangle (cr, x + 0.5, y + 0.5, width, height); x 1423 src/pgtkterm.c int i, x; x 1428 src/pgtkterm.c x = s->x + max (s->face->box_vertical_line_width, 0); x 1430 src/pgtkterm.c x = s->x; x 1440 src/pgtkterm.c s->face->foreground, x, s->y, x 1443 src/pgtkterm.c x += g->pixel_width; x 1457 src/pgtkterm.c font->driver->draw (s, 0, s->nchars, x, y, false); x 1459 src/pgtkterm.c font->driver->draw (s, 0, s->nchars, x, y, true); x 1461 src/pgtkterm.c font->driver->draw (s, 0, s->nchars, x + 1, y, false); x 1469 src/pgtkterm.c int i, j, x; x 1476 src/pgtkterm.c x = s->x + max (s->face->box_vertical_line_width, 0); x 1478 src/pgtkterm.c x = s->x; x 1490 src/pgtkterm.c pgtk_draw_rectangle (s->f, s->face->foreground, x, s->y, x 1502 src/pgtkterm.c int xx = x + s->cmp->offsets[j * 2]; x 1528 src/pgtkterm.c font->driver->draw (s, j, i, x, y, false); x 1530 src/pgtkterm.c font->driver->draw (s, j, i, x + 1, y, false); x 1531 src/pgtkterm.c x += width; x 1536 src/pgtkterm.c font->driver->draw (s, i, i + 1, x + xoff, y + yoff, false); x 1538 src/pgtkterm.c font->driver->draw (s, i, i + 1, x + xoff + 1, y + yoff, x 1540 src/pgtkterm.c x += wadjust; x 1547 src/pgtkterm.c font->driver->draw (s, j, i, x, y, false); x 1549 src/pgtkterm.c font->driver->draw (s, j, i, x + 1, y, false); x 1561 src/pgtkterm.c int x, i, j; x 1567 src/pgtkterm.c x = s->x + max (s->face->box_vertical_line_width, 0); x 1569 src/pgtkterm.c x = s->x; x 1622 src/pgtkterm.c x + glyph->slice.glyphless.upper_xoff, x 1626 src/pgtkterm.c x + glyph->slice.glyphless.lower_xoff, x 1632 src/pgtkterm.c x, s->ybase - glyph->ascent, x 1636 src/pgtkterm.c x += glyph->pixel_width; x 1729 src/pgtkterm.c pgtk_fill_trapezoid_for_relief (struct frame *f, unsigned long color, int x, x 1736 src/pgtkterm.c cairo_move_to (cr, top_p ? x : x + height, y); x 1737 src/pgtkterm.c cairo_line_to (cr, x, y + height); x 1738 src/pgtkterm.c cairo_line_to (cr, top_p ? x + width - height : x + width, y + height); x 1739 src/pgtkterm.c cairo_line_to (cr, x + width, y); x 1754 src/pgtkterm.c pgtk_erase_corners_for_relief (struct frame *f, unsigned long color, int x, x 1769 src/pgtkterm.c xm = x - margin, xc = xm + radius; x 1771 src/pgtkterm.c xm = x + width + margin, xc = xm - radius; x 1781 src/pgtkterm.c cairo_rectangle (cr, x, y, width, height); x 1842 src/pgtkterm.c cairo_rectangle (cr, rectangles[i].x, rectangles[i].y, x 2003 src/pgtkterm.c left_x = s->x; x 2005 src/pgtkterm.c ? last_x - 1 : min (last_x, s->x + s->background_width) - 1); x 2031 src/pgtkterm.c pgtk_draw_horizontal_wave (struct frame *f, unsigned long color, int x, int y, x 2040 src/pgtkterm.c cairo_rectangle (cr, x, y, width, height); x 2043 src/pgtkterm.c if (x >= 0) x 2045 src/pgtkterm.c xoffset = x % (wave_length * 2); x 2050 src/pgtkterm.c xoffset = x % (wave_length * 2) + wave_length * 2; x 2060 src/pgtkterm.c cairo_move_to (cr, x - xoffset + 0.5, y + 0.5); x 2076 src/pgtkterm.c pgtk_draw_horizontal_wave (s->f, color, s->x, s->ybase - wave_height + 3, x 2089 src/pgtkterm.c int x = s->x; x 2096 src/pgtkterm.c && s->slice.x == 0) x 2097 src/pgtkterm.c x += max (s->face->box_vertical_line_width, 0); x 2101 src/pgtkterm.c if (s->slice.x == 0) x 2102 src/pgtkterm.c x += s->img->hmargin; x 2125 src/pgtkterm.c x1 = x + s->slice.width - 1; x 2157 src/pgtkterm.c if (s->slice.x == 0) x 2158 src/pgtkterm.c x -= thick + extra_x, left_p = true; x 2161 src/pgtkterm.c if (s->slice.x + s->slice.width == s->img->width) x 2168 src/pgtkterm.c pgtk_draw_relief_rect (s->f, x, y, x1, y1, thick, thick, raised_p, x 2176 src/pgtkterm.c pgtk_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, x 2180 src/pgtkterm.c fill_background (s, x, y, w, h); x 2182 src/pgtkterm.c pgtk_clear_glyph_string_rect (s, x, y, w, h); x 2226 src/pgtkterm.c int x = s->x; x 2233 src/pgtkterm.c && s->slice.x == 0) x 2234 src/pgtkterm.c x += max (s->face->box_vertical_line_width, 0); x 2238 src/pgtkterm.c if (s->slice.x == 0) x 2239 src/pgtkterm.c x += s->img->hmargin; x 2248 src/pgtkterm.c s->slice.x, s->slice.y, s->slice.width, s->slice.height, x 2249 src/pgtkterm.c x, y, true); x 2261 src/pgtkterm.c pgtk_draw_rectangle (s->f, s->xgcv.foreground, x - relief, x 2270 src/pgtkterm.c pgtk_draw_rectangle (s->f, s->xgcv.foreground, x, y, x 2312 src/pgtkterm.c int x = s->x; x 2317 src/pgtkterm.c && s->slice.x == 0) x 2319 src/pgtkterm.c x += box_line_hwidth; x 2326 src/pgtkterm.c pgtk_draw_glyph_string_bg_rect (s, x, y, width, height); x 2353 src/pgtkterm.c int x = s->x; x 2359 src/pgtkterm.c if (x < left_x) x 2361 src/pgtkterm.c background_width -= left_x - x; x 2362 src/pgtkterm.c x = left_x; x 2371 src/pgtkterm.c if (x + background_width > right_x) x 2372 src/pgtkterm.c background_width -= x - right_x; x 2373 src/pgtkterm.c x += background_width; x 2377 src/pgtkterm.c x -= width; x 2380 src/pgtkterm.c pgtk_draw_glyph_string_bg_rect (s, x, s->y, width, s->height); x 2391 src/pgtkterm.c x += width; x 2393 src/pgtkterm.c x = s->x; x 2408 src/pgtkterm.c fill_background (s, x, y, w, h); x 2410 src/pgtkterm.c pgtk_fill_rectangle (s->f, color, x, y, w, h, x 2419 src/pgtkterm.c int x = s->x, text_left_x = window_box_left (s->w, TEXT_AREA); x 2424 src/pgtkterm.c && x < text_left_x && !s->row->mode_line_p) x 2426 src/pgtkterm.c background_width -= text_left_x - x; x 2427 src/pgtkterm.c x = text_left_x; x 2431 src/pgtkterm.c pgtk_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height); x 2621 src/pgtkterm.c s->x, y, s->width, thickness, x 2626 src/pgtkterm.c s->x, y, s->width, thickness, x 2637 src/pgtkterm.c pgtk_fill_rectangle (s->f, s->xgcv.foreground, s->x, s->y + dy, x 2640 src/pgtkterm.c pgtk_fill_rectangle (s->f, s->face->overline_color, s->x, x 2660 src/pgtkterm.c pgtk_fill_rectangle (s->f, s->xgcv.foreground, s->x, glyph_y + dy, x 2663 src/pgtkterm.c pgtk_fill_rectangle (s->f, s->face->strike_through_color, s->x, x 2673 src/pgtkterm.c && prev->x + prev->width + prev->right_overhang > s->x) x 2699 src/pgtkterm.c && next->x - next->left_overhang < s->x + s->width) x 2774 src/pgtkterm.c pgtk_clear_frame_area (struct frame *f, int x, int y, int width, int height) x 2776 src/pgtkterm.c pgtk_clear_area (f, x, y, width, height); x 2785 src/pgtkterm.c int x, y, wd, h; x 2795 src/pgtkterm.c get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h); x 2809 src/pgtkterm.c x += cursor_glyph->pixel_width - wd; x 2816 src/pgtkterm.c x, y, wd, h - 1, false); x 2875 src/pgtkterm.c int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x); x 2886 src/pgtkterm.c x += cursor_glyph->pixel_width - width; x 2888 src/pgtkterm.c pgtk_fill_rectangle (f, color, x, x 2895 src/pgtkterm.c int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x); x 2907 src/pgtkterm.c x += cursor_glyph->pixel_width - w->phys_cursor_width + 1; x 2908 src/pgtkterm.c pgtk_fill_rectangle (f, color, x, x 2921 src/pgtkterm.c pgtk_draw_window_cursor (struct window *w, struct glyph_row *glyph_row, int x, x 2971 src/pgtkterm.c int frame_x = (WINDOW_TO_FRAME_PIXEL_X (w, x) x 2997 src/pgtkterm.c cairo_set_source_surface (cr, FRAME_CR_SURFACE (f), -src_rect->x, x 3005 src/pgtkterm.c cairo_set_source_surface (cr, surface, dst_rect->x, dst_rect->y); x 3007 src/pgtkterm.c cairo_rectangle (cr, dst_rect->x, dst_rect->y, dst_rect->width, x 3022 src/pgtkterm.c int x, y, width, height, from_y, to_y, bottom_y; x 3027 src/pgtkterm.c window_box (w, ANY_AREA, &x, &y, &width, &height); x 3072 src/pgtkterm.c r1.x = w->pixel_left; x 3126 src/pgtkterm.c tem, view->x + view->clip_left, x 3143 src/pgtkterm.c cairo_rectangle_t src_rect = { x, from_y, width, height }; x 3144 src/pgtkterm.c cairo_rectangle_t dst_rect = { x, to_y, width, height }; x 3257 src/pgtkterm.c pgtk_draw_vertical_window_border (struct window *w, int x, int y0, int y1) x 3269 src/pgtkterm.c cairo_rectangle (cr, x, y0, 1, y1 - y0); x 3376 src/pgtkterm.c enum scroll_bar_part *part, Lisp_Object *x, x 3448 src/pgtkterm.c XSETINT (*x, win_x); x 3526 src/pgtkterm.c rect.x = window_x; x 3532 src/pgtkterm.c cairo_rectangle (cr, rect.x, rect.y, rect.width, rect.height); x 3587 src/pgtkterm.c p->wd, p->h, p->x, p->y, p->overlay_p); x 3605 src/pgtkterm.c struct pgtk_output *x = FRAME_X_OUTPUT (f); x 3606 src/pgtkterm.c if (x->hourglass_widget != NULL) x 3607 src/pgtkterm.c gtk_widget_destroy (x->hourglass_widget); x 3610 src/pgtkterm.c x->hourglass_widget = gtk_event_box_new (); x 3611 src/pgtkterm.c gtk_widget_set_has_window (x->hourglass_widget, true); x 3612 src/pgtkterm.c gtk_fixed_put (GTK_FIXED (FRAME_GTK_WIDGET (f)), x->hourglass_widget, 0, 0); x 3613 src/pgtkterm.c gtk_widget_show (x->hourglass_widget); x 3614 src/pgtkterm.c gtk_widget_set_size_request (x->hourglass_widget, 30000, 30000); x 3615 src/pgtkterm.c gdk_window_raise (gtk_widget_get_window (x->hourglass_widget)); x 3616 src/pgtkterm.c gdk_window_set_cursor (gtk_widget_get_window (x->hourglass_widget), x 3617 src/pgtkterm.c x->hourglass_cursor); x 3634 src/pgtkterm.c struct pgtk_output *x = FRAME_X_OUTPUT (f); x 3643 src/pgtkterm.c if (x->hourglass_widget != NULL) x 3645 src/pgtkterm.c gtk_widget_destroy (x->hourglass_widget); x 3646 src/pgtkterm.c x->hourglass_widget = NULL; x 3889 src/pgtkterm.c inev.ie.x = make_fixnum (portion); x 4894 src/pgtkterm.c gint x, y; x 4904 src/pgtkterm.c lrint (event->touchpad_pinch.x), x 4906 src/pgtkterm.c &x, &y); x 4912 src/pgtkterm.c XSETINT (inev.ie.x, x); x 4931 src/pgtkterm.c pgtk_fill_rectangle (struct frame *f, unsigned long color, int x, int y, x 4937 src/pgtkterm.c cairo_rectangle (cr, x, y, width, height); x 4967 src/pgtkterm.c #define x_fill_rectangle(f, gc, x, y, w, h) \ x 4968 src/pgtkterm.c fill_background_by_face (f, face, x, y, w, h) x 4977 src/pgtkterm.c #define x_clear_area(f, x, y, w, h) pgtk_clear_area (f, x, y, w, h) x 5458 src/pgtkterm.c f->left_pos = event->configure.x; x 5808 src/pgtkterm.c dpyinfo->last_mouse_motion_x = event->x; x 5827 src/pgtkterm.c || event->x < r->x || event->x >= r->x + r->width x 5832 src/pgtkterm.c note_mouse_highlight (frame, event->x, event->y); x 5834 src/pgtkterm.c remember_mouse_glyph (frame, event->x, event->y, r); x 5894 src/pgtkterm.c (f, event->motion.x, event->motion.y, 0, false, false); x 5970 src/pgtkterm.c XSETINT (result->x, event->x); x 6044 src/pgtkterm.c int x = event->button.x; x 6047 src/pgtkterm.c window = window_from_coordinates (f, x, y, 0, true, true); x 6052 src/pgtkterm.c (f, x, y, event->type == GDK_BUTTON_PRESS, x 6125 src/pgtkterm.c XSETINT (inev.ie.x, event->scroll.x); x 6345 src/pgtkterm.c XSETINT (inev.ie.x, 0); x 6354 src/pgtkterm.c gint x, gint y, guint time) x 6393 src/pgtkterm.c XSETINT (inev.ie.x, x); x 6404 src/pgtkterm.c int x, int y, guint time, gpointer user_data) x 6442 src/pgtkterm.c XSETINT (inev.ie.x, x); x 7085 src/pgtkterm.c pgtk_clear_area (struct frame *f, int x, int y, int width, int height) x 7094 src/pgtkterm.c cairo_rectangle (cr, x, y, width, height); x 933 src/print.c debug_output_compilation_hack (bool x) x 935 src/print.c print_output_debug_flag = x; x 214 src/process.h CHECK_PROCESS (Lisp_Object x) x 216 src/process.h CHECK_TYPE (PROCESSP (x), Qprocessp, x); x 2485 src/term.c term_mouse_moveto (int x, int y) x 2524 src/term.c enum scroll_bar_part *part, Lisp_Object *x, x 2533 src/term.c XSETINT (*x, last_mouse_x); x 2594 src/term.c XSETINT (result->x, event->x); x 2614 src/term.c Gpm_DrawPointer (event->x, event->y, fileno (tty->output)); x 2618 src/term.c if (event->x != last_mouse_x || event->y != last_mouse_y) x 2624 src/term.c last_mouse_x = event->x; x 2628 src/term.c count += update_mouse_position (f, event->x, event->y); x 2635 src/term.c ie.arg = tty_handle_tab_bar_click (f, event->x, event->y, x 2829 src/term.c mouse_get_xy (int *x, int *y) x 2842 src/term.c *x = XFIXNUM (lmx); x 2851 src/term.c tty_menu_display (tty_menu *menu, int x, int y, int pn, int *faces, x 2876 src/term.c mousehere = (y + i == my && x <= mx && mx < x + max_width); x 2892 src/term.c col = x; x 2894 src/term.c display_tty_menu_item (menu->text[j], max_width, face, x, y + i, x 2956 src/term.c tty_menu_locate (tty_menu *menu, int x, int y, x 2960 src/term.c *ulx = x + 1; x 2970 src/term.c int x, y; x 3067 src/term.c read_menu_input (struct frame *sf, int *x, int *y, int min_y, int max_y, x 3101 src/term.c mouse_get_xy (x, y); x 3145 src/term.c int statecount, x, y, i; x 3234 src/term.c state[0].x = x0 - 1; x 3238 src/term.c x = state[0].x; x 3249 src/term.c input_status = read_menu_input (sf, &x, &y, min_y, max_y, &first_time); x 3303 src/term.c if (state[i].x <= x && x < state[i].x + state[i].menu->width + 2) x 3331 src/term.c state[i].x, x 3334 src/term.c faces, x, y, first_item, 1); x 3339 src/term.c state[statecount].x x 3340 src/term.c = state[i].x + state[i].menu->width + 2; x 3347 src/term.c state[statecount - 1].x, x 3350 src/term.c faces, x, y, first_item, 1); x 3493 src/term.c tty_menu_new_item_coords (struct frame *f, int which, int *x, int *y) x 3515 src/term.c if (ix <= *x x 3518 src/term.c && *x <= ix + menu_item_width (SDATA (str))) x 3525 src/term.c *x = XFIXNUM (AREF (items, i + 4 + 3)); x 3527 src/term.c *x = 0; /* Wrap around to the first item. */ x 3532 src/term.c *x = XFIXNUM (AREF (items, last_i + 3)); x 3535 src/term.c *x = prev_x; x 3545 src/term.c tty_menu_show (struct frame *f, int x, int y, int menuflags, x 3583 src/term.c item_x = x += f->left_pos; x 3685 src/term.c x = min (x, dispwidth); x 3687 src/term.c x = max (x, 1); x 3689 src/term.c tty_menu_locate (menu, x, y, &ulx, &uly, &width, &height); x 3692 src/term.c x -= (ulx + width) - dispwidth; x 3717 src/term.c if (ulx < 0) x -= ulx; x 3730 src/term.c x += width / 2; x 3745 src/term.c status = tty_menu_activate (menu, &pane, &selidx, x, y, &datap, x 368 src/termhooks.h Lisp_Object x, y; x 520 src/termhooks.h struct x_display_info *x; /* xterm.h */ x 622 src/termhooks.h Lisp_Object *x, x 693 src/termhooks.h Lisp_Object (*menu_show_hook) (struct frame *f, int x, int y, int menuflags, x 920 src/termhooks.h (t->type == output_x_window ? t->display_info.x->name_list_element : Qnil) x 100 src/textprop.c CHECK_STRING_OR_BUFFER (Lisp_Object x) x 102 src/textprop.c CHECK_TYPE (STRINGP (x) || BUFFERP (x), Qbuffer_or_string_p, x); x 206 src/thread.h CHECK_THREAD (Lisp_Object x) x 208 src/thread.h CHECK_TYPE (THREADP (x), Qthreadp, x); x 253 src/thread.h CHECK_MUTEX (Lisp_Object x) x 255 src/thread.h CHECK_TYPE (MUTEXP (x), Qmutexp, x); x 287 src/thread.h CHECK_CONDVAR (Lisp_Object x) x 289 src/thread.h CHECK_TYPE (CONDVARP (x), Qcondition_variable_p, x); x 1231 src/timefns.c Lisp_Object x = a, y = b; x 1233 src/timefns.c x = XCAR (a), y = XCAR (b); x 1234 src/timefns.c if (FIXNUMP (x) && FIXNUMP (y)) x 1235 src/timefns.c return XFIXNUM (x) - XFIXNUM (y); x 125 src/treesit.h TS_PARSERP (Lisp_Object x) x 127 src/treesit.h return PSEUDOVECTORP (x, PVEC_TS_PARSER); x 138 src/treesit.h TS_NODEP (Lisp_Object x) x 140 src/treesit.h return PSEUDOVECTORP (x, PVEC_TS_NODE); x 151 src/treesit.h TS_COMPILED_QUERY_P (Lisp_Object x) x 153 src/treesit.h return PSEUDOVECTORP (x, PVEC_TS_COMPILED_QUERY); x 103 src/unexaix.c #define ERROR1(msg,x) report_error_1 (new, msg, x) x 104 src/unexaix.c #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y) x 123 src/unexcoff.c #define ADDR_CORRECT(x) ((char *) (x) - (char *) 0) x 137 src/unexcoff.c #define ERROR1(msg,x) report_error_1 (new, msg, x, 0); return -1 x 138 src/unexcoff.c #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y); return -1 x 74 src/unexhp9k800.c #define roundup(x,n) (((x) + ((n) - 1)) & ~((n) - 1)) /* n is power of 2 */ x 194 src/unexmacosx.c #define ROUNDUP_TO_PAGE_BOUNDARY(x) (((x) + pagesize - 1) & ~(pagesize - 1)) x 110 src/w16select.c regs.x.ax = 0x1700; x 112 src/w16select.c return regs.x.ax; x 133 src/w16select.c regs.x.ax = 0x1701; x 135 src/w16select.c return regs.x.ax; x 147 src/w16select.c regs.x.ax = 0x1702; x 149 src/w16select.c return regs.x.ax; x 175 src/w16select.c regs.x.bx = clipboard_xfer_buf_info.size; x 177 src/w16select.c if (regs.x.flags & 1) x 183 src/w16select.c clipboard_xfer_buf_info.rm_segment = regs.x.ax; x 202 src/w16select.c regs.x.es = clipboard_xfer_buf_info.rm_segment; x 289 src/w16select.c regs.x.ax = 0x1703; x 290 src/w16select.c regs.x.dx = Format; x 291 src/w16select.c regs.x.si = truelen >> 16; x 292 src/w16select.c regs.x.cx = truelen & 0xffff; x 293 src/w16select.c regs.x.es = xbuf_addr >> 4; x 294 src/w16select.c regs.x.bx = xbuf_addr & 15; x 300 src/w16select.c if (regs.x.ax == 0) x 304 src/w16select.c return regs.x.ax > 0 ? 0 : 3; x 319 src/w16select.c regs.x.ax = 0x1704; x 320 src/w16select.c regs.x.dx = Format; x 322 src/w16select.c return ( (((unsigned)regs.x.dx) << 16) | regs.x.ax); x 350 src/w16select.c regs.x.ax = 0x1705; x 351 src/w16select.c regs.x.dx = Format; x 352 src/w16select.c regs.x.es = xbuf_addr >> 4; x 353 src/w16select.c regs.x.bx = xbuf_addr & 15; x 355 src/w16select.c if (regs.x.ax != 0) x 415 src/w16select.c regs.x.ax = 0x1708; x 417 src/w16select.c return regs.x.ax; x 430 src/w16select.c regs.x.ax = 0x1709; x 431 src/w16select.c regs.x.si = Size >> 16; x 432 src/w16select.c regs.x.cx = Size & 0xffff; x 434 src/w16select.c return ((unsigned)regs.x.dx << 16) | regs.x.ax; x 375 src/w32console.c w32con_write_glyphs_with_face (struct frame *f, register int x, register int y, x 402 src/w32console.c start_coords.X = x; x 1167 src/w32fns.c struct w32_output *x = f->output_data.w32; x 1176 src/w32fns.c if (x->cursor_pixel == old_fg) x 1178 src/w32fns.c x->cursor_pixel = fg; x 1179 src/w32fns.c x->cursor_gc->background = fg; x 4636 src/w32fns.c form.ptCurrentPos.x = w32_system_caret_x; x 4863 src/w32fns.c int x = GET_X_LPARAM (lParam); x 4867 src/w32fns.c && (x != last_x || y != last_y)) x 4870 src/w32fns.c last_x = x; x 5305 src/w32fns.c ((LPMINMAXINFO) lParam)->ptMaxTrackSize.x = 32767; x 5403 src/w32fns.c pos->x, pos->y, pos->cx, pos->cy, pos->flags); x 5475 src/w32fns.c if (TrackPopupMenu ((HMENU)wParam, flags, pos->x, pos->y, x 7231 src/w32fns.c *root_x = pt.x; x 9067 src/w32fns.c pt.x = 0; x 9075 src/w32fns.c left = pt.x; x 9242 src/w32fns.c return Fcons (make_fixnum (pt.x), make_fixnum (pt.y)); x 9250 src/w32fns.c (Lisp_Object x, Lisp_Object y) x 9255 src/w32fns.c int xval = check_integer_range (x, INT_MIN, INT_MAX); x 634 src/w32font.c int x, int y, bool with_background) x 696 src/w32font.c rect.left = x; x 698 src/w32font.c rect.right = x + s->width; x 711 src/w32font.c ExtTextOutW (s->hdc, x + i, y, options, NULL, &c, 1, NULL); x 724 src/w32font.c ExtTextOutW (s->hdc, x, y, options, NULL, chars, len, NULL); x 2606 src/w32font.c metrics->lbearing = gm.gmptGlyphOrigin.x; x 2607 src/w32font.c metrics->rbearing = gm.gmptGlyphOrigin.x + gm.gmBlackBoxX; x 80 src/w32font.h int x, int y, bool with_background); x 93 src/w32gui.h ((xr).x = (nr).left, \ x 99 src/w32gui.h ((nr).left = (xr).x, \ x 101 src/w32gui.h (nr).right = ((xr).x + (xr).width), \ x 104 src/w32gui.h #define STORE_NATIVE_RECT(nr,x,y,width,height) \ x 105 src/w32gui.h ((nr).left = (x), \ x 412 src/w32inevt.c Lisp_Object *x, x 425 src/w32inevt.c XSETINT (*x, movement_pos.X); x 434 src/w32inevt.c mouse_moved_to (int x, int y) x 437 src/w32inevt.c if (x != movement_pos.X || y != movement_pos.Y) x 441 src/w32inevt.c movement_pos.X = x; x 555 src/w32inevt.c XSETINT (emacs_ev->x, mx); x 589 src/w32inevt.c int x = event->dwMousePosition.X; x 591 src/w32inevt.c emacs_ev->arg = tty_handle_tab_bar_click (f, x, y, x 599 src/w32inevt.c XSETFASTINT (emacs_ev->x, x); x 29 src/w32inevt.h Lisp_Object *x, Lisp_Object *y, x 551 src/w32menu.c w32_menu_show (struct frame *f, int x, int y, int menuflags, x 752 src/w32menu.c pos.x = x; x 423 src/w32term.c x0 = s->x; x 430 src/w32term.c wave_clip.x = x0; x 476 src/w32term.c w32_draw_rectangle (HDC hdc, Emacs_GC *gc, int x, int y, x 493 src/w32term.c Rectangle (hdc, x, y, x + width + 1, y + height + 1); x 647 src/w32term.c w32_draw_vertical_window_border (struct window *w, int x, int y0, int y1) x 654 src/w32term.c r.left = x; x 655 src/w32term.c r.right = x + 1; x 910 src/w32term.c BitBlt (hdc, p->x, p->y, p->wd, p->h, x 913 src/w32term.c BitBlt (hdc, p->x, p->y, p->wd, p->h, x 916 src/w32term.c BitBlt (hdc, p->x, p->y, p->wd, p->h, x 930 src/w32term.c BitBlt (hdc, p->x, p->y, p->wd, p->h, x 1181 src/w32term.c r.left = src->x; x 1228 src/w32term.c int x, int y, int w, int h) x 1230 src/w32term.c int real_x = x; x 1271 src/w32term.c XFillRectangle (s->display, FRAME_W32_WINDOW (s->f), s->gc, s->x, x 1290 src/w32term.c w32_clear_glyph_string_rect (s, s->x, s->y + box_line_width, x 1304 src/w32term.c int i, x; x 1310 src/w32term.c x = s->x + max (s->face->box_vertical_line_width, 0); x 1312 src/w32term.c x = s->x; x 1326 src/w32term.c w32_draw_rectangle (s->hdc, s->gc, x, s->y, g->pixel_width - 1, x 1328 src/w32term.c x += g->pixel_width; x 1346 src/w32term.c font->driver->draw (s, 0, s->nchars, x, y, false); x 1348 src/w32term.c font->driver->draw (s, 0, s->nchars, x, y, true); x 1350 src/w32term.c font->driver->draw (s, 0, s->nchars, x + 1, y, false); x 1361 src/w32term.c int i, j, x; x 1368 src/w32term.c x = s->x + max (s->face->box_vertical_line_width, 0); x 1370 src/w32term.c x = s->x; x 1386 src/w32term.c w32_draw_rectangle (s->hdc, s->gc, x, s->y, s->width - 1, x 1401 src/w32term.c int xx = x + s->cmp->offsets[j * 2]; x 1431 src/w32term.c font->driver->draw (s, j, i, x, y, false); x 1432 src/w32term.c x += width; x 1437 src/w32term.c font->driver->draw (s, i, i + 1, x + xoff, y + yoff, false); x 1438 src/w32term.c x += wadjust; x 1444 src/w32term.c font->driver->draw (s, j, i, x, y, false); x 1458 src/w32term.c int x, i, j; x 1465 src/w32term.c x = s->x + max (s->face->box_vertical_line_width, 0); x 1467 src/w32term.c x = s->x; x 1509 src/w32term.c x, s->ybase - glyph->ascent, x 1523 src/w32term.c x + glyph->slice.glyphless.upper_xoff, x 1527 src/w32term.c x + glyph->slice.glyphless.lower_xoff, x 1532 src/w32term.c x += glyph->pixel_width; x 1855 src/w32term.c left_x = s->x; x 1858 src/w32term.c : min (last_x, s->x + s->background_width) - 1)); x 1891 src/w32term.c transform (int x0, int y0, int x, int y, XFORM *xform) x 1896 src/w32term.c pt.x = x 1897 src/w32term.c x0 + (x - x0) * xform->eM11 + (y - y0) * xform->eM21 + xform->eDx + 0.5f; x 1899 src/w32term.c y0 + (x - x0) * xform->eM12 + (y - y0) * xform->eM22 + xform->eDy + 0.5f; x 1910 src/w32term.c int x = s->x; x 1917 src/w32term.c && s->slice.x == 0) x 1918 src/w32term.c x += max (s->face->box_vertical_line_width, 0); x 1922 src/w32term.c if (s->slice.x == 0) x 1923 src/w32term.c x += s->img->hmargin; x 1958 src/w32term.c int orig_slice_x = s->slice.x, orig_slice_y = s->slice.y; x 1966 src/w32term.c corner[0] = transform (x, y, x, y, &s->img->xform); x 1967 src/w32term.c corner[1] = transform (x, y, x + orig_width, y, &s->img->xform); x 1968 src/w32term.c corner[2] = transform (x, y, x, y + orig_height, &s->img->xform); x 1979 src/w32term.c orig_slice_x = s->slice.x * w_factor + 0.5; x 1993 src/w32term.c s->slice.x, s->slice.y, x 1995 src/w32term.c s->img->mask, s->slice.x, s->slice.y)) x 2000 src/w32term.c BitBlt (s->hdc, x, y, s->slice.width, s->slice.height, x 2001 src/w32term.c compat_hdc, s->slice.x, s->slice.y, SRCINVERT); x 2002 src/w32term.c BitBlt (s->hdc, x, y, s->slice.width, s->slice.height, x 2003 src/w32term.c mask_dc, s->slice.x, s->slice.y, SRCAND); x 2004 src/w32term.c BitBlt (s->hdc, x, y, s->slice.width, s->slice.height, x 2005 src/w32term.c compat_hdc, s->slice.x, s->slice.y, SRCINVERT); x 2016 src/w32term.c StretchBlt (s->hdc, x, y, s->slice.width, s->slice.height, x 2019 src/w32term.c StretchBlt (s->hdc, x, y, s->slice.width, s->slice.height, x 2022 src/w32term.c StretchBlt (s->hdc, x, y, s->slice.width, s->slice.height, x 2038 src/w32term.c s->slice.x, s->slice.y, x 2043 src/w32term.c BitBlt (s->hdc, x, y, s->slice.width, s->slice.height, x 2044 src/w32term.c compat_hdc, s->slice.x, s->slice.y, SRCCOPY); x 2052 src/w32term.c StretchBlt (s->hdc, x, y, s->slice.width, s->slice.height, x 2069 src/w32term.c w32_draw_rectangle (s->hdc, s->gc, x - r, y - r , x 2082 src/w32term.c w32_draw_rectangle (s->hdc, s->gc, x, y, x 2108 src/w32term.c int x = s->x; x 2115 src/w32term.c && s->slice.x == 0) x 2116 src/w32term.c x += max (s->face->box_vertical_line_width, 0); x 2120 src/w32term.c if (s->slice.x == 0) x 2121 src/w32term.c x += s->img->hmargin; x 2144 src/w32term.c x1 = x + s->slice.width - 1; x 2176 src/w32term.c if (s->slice.x == 0) x 2177 src/w32term.c x -= thick + extra_x, left_p = 1; x 2180 src/w32term.c if (s->slice.x + s->slice.width == s->img->width) x 2187 src/w32term.c w32_draw_relief_rect (s->f, x, y, x1, y1, thick, thick, raised_p, x 2199 src/w32term.c int x = 0; x 2206 src/w32term.c && s->slice.x == 0) x 2207 src/w32term.c x += max (s->face->box_vertical_line_width, 0); x 2211 src/w32term.c if (s->slice.x == 0) x 2212 src/w32term.c x += s->img->hmargin; x 2234 src/w32term.c BitBlt (hdc, x, y, s->slice.width, s->slice.height, x 2235 src/w32term.c compat_hdc, s->slice.x, s->slice.y, SRCINVERT); x 2236 src/w32term.c BitBlt (hdc, x, y, s->slice.width, s->slice.height, x 2237 src/w32term.c mask_dc, s->slice.x, s->slice.y, SRCAND); x 2238 src/w32term.c BitBlt (hdc, x, y, s->slice.width, s->slice.height, x 2239 src/w32term.c compat_hdc, s->slice.x, s->slice.y, SRCINVERT); x 2249 src/w32term.c BitBlt (hdc, x, y, s->slice.width, s->slice.height, x 2250 src/w32term.c compat_hdc, s->slice.x, s->slice.y, SRCCOPY); x 2262 src/w32term.c w32_draw_rectangle (hdc, s->gc, x - r, y - r, x 2274 src/w32term.c w32_draw_rectangle (hdc, s->gc, x, y, x 2286 src/w32term.c w32_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h) x 2293 src/w32term.c XFillRectangle (s->display, FRAME_W32_WINDOW (s->f), s->gc, x, y, w, h); x 2298 src/w32term.c w32_clear_glyph_string_rect (s, x, y, w, h); x 2319 src/w32term.c int x, y; x 2343 src/w32term.c x = s->x; x 2345 src/w32term.c && s->slice.x == 0) x 2347 src/w32term.c x += box_line_hwidth; x 2395 src/w32term.c w32_draw_glyph_string_bg_rect (s, x, y, width, height); x 2413 src/w32term.c BitBlt (s->hdc, s->x, s->y, s->background_width, s->height, x 2448 src/w32term.c int x = s->x; x 2454 src/w32term.c if (x < left_x) x 2456 src/w32term.c background_width -= left_x - x; x 2457 src/w32term.c x = left_x; x 2466 src/w32term.c if (x + background_width > right_x) x 2467 src/w32term.c background_width -= x - right_x; x 2468 src/w32term.c x += background_width; x 2472 src/w32term.c x -= width; x 2475 src/w32term.c w32_draw_glyph_string_bg_rect (s, x, s->y, width, s->height); x 2487 src/w32term.c x += width; x 2489 src/w32term.c x = s->x; x 2507 src/w32term.c XFillRectangle (s->display, FRAME_W32_WINDOW (s->f), gc, x, y, w, h); x 2513 src/w32term.c w32_fill_area (s->f, s->hdc, gc->background, x, y, w, h); x 2520 src/w32term.c int x = s->x, text_left_x = window_box_left (s->w, TEXT_AREA); x 2525 src/w32term.c && x < text_left_x && !s->row->mode_line_p) x 2527 src/w32term.c background_width -= text_left_x - x; x 2528 src/w32term.c x = text_left_x; x 2531 src/w32term.c w32_draw_glyph_string_bg_rect (s, x, s->y, background_width, s->height); x 2740 src/w32term.c w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, x 2745 src/w32term.c w32_fill_area (s->f, s->hdc, s->face->underline_color, s->x, x 2757 src/w32term.c w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, x 2762 src/w32term.c w32_fill_area (s->f, s->hdc, s->face->overline_color, s->x, x 2785 src/w32term.c w32_fill_area (s->f, s->hdc, s->gc->foreground, s->x, x 2790 src/w32term.c w32_fill_area (s->f, s->hdc, s->face->strike_through_color, s->x, x 2801 src/w32term.c && prev->x + prev->width + prev->right_overhang > s->x) x 2826 src/w32term.c && next->x - next->left_overhang < s->x + s->width) x 2856 src/w32term.c w32_shift_glyphs_for_insert (struct frame *f, int x, int y, x 2862 src/w32term.c BitBlt (hdc, x + shift_by, y, width, height, x 2863 src/w32term.c hdc, x, y, SRCCOPY); x 2954 src/w32term.c int x, y, width, height, from_y, to_y, bottom_y; x 2962 src/w32term.c window_box (w, ANY_AREA, &x, &y, &width, &height); x 2978 src/w32term.c expect_dirty = CreateRectRgn (x, y + height, x + width, bottom_y); x 2990 src/w32term.c expect_dirty = CreateRectRgn (x, y, x + width, to_y); x 3000 src/w32term.c BitBlt (hdc, x, to_y, width, height, hdc, x, from_y, SRCCOPY); x 3010 src/w32term.c from.left = to.left = x; x 3011 src/w32term.c from.right = to.right = x + width; x 3107 src/w32term.c frame->output_data.x->focus_state |= state; x 3113 src/w32term.c frame->output_data.x->focus_state &= ~state; x 3329 src/w32term.c XSETINT (result->x, LOWORD (msg->msg.lParam)); x 3362 src/w32term.c p.x = (short) LOWORD (msg->msg.lParam); x 3378 src/w32term.c Lisp_Object window = window_from_coordinates (f, p.x, p.y, NULL, x 3427 src/w32term.c XSETINT (result->x, p.x); x 3461 src/w32term.c p.x = LOWORD (msg->msg.lParam); x 3466 src/w32term.c XSETINT (result->x, p.x); x 3740 src/w32term.c enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y, x 3752 src/w32term.c w32_horizontal_scroll_bar_report_motion (fp, bar_window, part, x, y, time); x 3754 src/w32term.c w32_scroll_bar_report_motion (fp, bar_window, part, x, y, time); x 3834 src/w32term.c remember_mouse_glyph (f1, pt.x, pt.y, &dpyinfo->last_mouse_glyph); x 3840 src/w32term.c XSETINT (*x, pt.x); x 3861 src/w32term.c int x = XFIXNAT (button_event->x); x 3865 src/w32term.c return handle_tab_bar_click (f, x, y, 1, 0); x 3867 src/w32term.c return handle_tab_bar_click (f, x, y, 0, x 3884 src/w32term.c int x = XFIXNAT (button_event->x); x 3888 src/w32term.c handle_tool_bar_click (f, x, y, 1, 0); x 3890 src/w32term.c handle_tool_bar_click (f, x, y, 0, x 4072 src/w32term.c int x, int y, int cx, int cy, UINT flags) x 4077 src/w32term.c pos.x = x; x 4085 src/w32term.c SetWindowPos (hwnd, hwndAfter, x, y, cx, cy, flags); x 4672 src/w32term.c XSETINT (emacs_event->x, y); x 4703 src/w32term.c int x, y; x 4716 src/w32term.c x = si.nTrackPos; x 4718 src/w32term.c x = si.nPos; x 4741 src/w32term.c x = 0; x 4745 src/w32term.c x = left_range; x 4758 src/w32term.c si.nPos = min (x, XWINDOW (bar->window)->hscroll_whole - 1); x 4761 src/w32term.c last_scroll_bar_drag_pos = x; x 4787 src/w32term.c XSETINT (emacs_event->x, x); x 4799 src/w32term.c Lisp_Object *x, Lisp_Object *y, x 4833 src/w32term.c XSETINT (*x, pos); x 4849 src/w32term.c Lisp_Object *x, Lisp_Object *y, x 4885 src/w32term.c XSETINT (*x, left_range); x 5306 src/w32term.c int x = LOWORD (msg.msg.lParam); x 5308 src/w32term.c if (x == last_mousemove_x && y == last_mousemove_y) x 5310 src/w32term.c last_mousemove_x = x; x 5407 src/w32term.c int x = XFIXNAT (inev.x); x 5410 src/w32term.c window = window_from_coordinates (f, x, y, 0, 1, 1); x 5435 src/w32term.c int x = XFIXNAT (inev.x); x 5438 src/w32term.c window = window_from_coordinates (f, x, y, 0, 1, 1); x 5701 src/w32term.c int x, y; x 5708 src/w32term.c w32_real_positions (f, &x, &y); x 5709 src/w32term.c f->left_pos = x; x 5724 src/w32term.c int x, y; x 5726 src/w32term.c w32_real_positions (f, &x, &y); x 5727 src/w32term.c if (x < 0 || y < 0) x 6196 src/w32term.c int x; x 6207 src/w32term.c x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x); x 6223 src/w32term.c x += cursor_glyph->pixel_width - width; x 6225 src/w32term.c w32_fill_area (f, hdc, cursor_color, x, x 6242 src/w32term.c x += cursor_glyph->pixel_width - w->phys_cursor_width; x 6243 src/w32term.c w32_fill_area (f, hdc, cursor_color, x, x 6267 src/w32term.c w32_clear_frame_area (struct frame *f, int x, int y, int width, int height) x 6272 src/w32term.c w32_clear_area (f, hdc, x, y, width, height); x 6280 src/w32term.c int x, int y, enum text_cursor_kinds cursor_type, x 6314 src/w32term.c = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x); x 6892 src/w32term.c pt.x = rect.left + pix_x; x 6902 src/w32term.c SetCursorPos (pt.x, pt.y); x 617 src/w32term.h #define w32_fill_area(f,hdc,pix,x,y,nx,ny) \ x 620 src/w32term.h rect.left = x; \ x 622 src/w32term.h rect.right = x + nx; \ x 883 src/w32term.h #define GUISTR(x) (L ## x) x 885 src/w32term.h #define GUI_ENCODE_SYSTEM(x) ntgui_encode_system (x) x 889 src/w32term.h #define GUISTR(x) x x 896 src/w32term.h #define GUI_SDATA(x) ((guichar_t*) SDATA (x)) x 338 src/widget.c struct x_output *x = f->output_data.x; x 340 src/widget.c ew->core.height = FRAME_PIXEL_HEIGHT (f) - x->menubar_height; x 345 src/widget.c ew->emacs_frame.cursor_color = x->cursor_pixel; x 346 src/widget.c ew->core.border_pixel = x->border_pixel; x 494 src/widget.c expose_frame (f, event->xexpose.x, event->xexpose.y, x 121 src/window.c CHECK_WINDOW_CONFIGURATION (Lisp_Object x) x 123 src/window.c CHECK_TYPE (WINDOW_CONFIGURATIONP (x), Qwindow_configuration_p, x); x 1344 src/window.c coordinates_in_window (register struct window *w, int x, int y) x 1359 src/window.c if (y < top_y || y >= bottom_y || x < left_x || x >= right_x) x 1371 src/window.c && x >= right_x - WINDOW_RIGHT_DIVIDER_WIDTH (w) x 1372 src/window.c && x <= right_x) x 1410 src/window.c && eabs (x - left_x) < grabbable_width) x 1413 src/window.c && eabs (x - right_x) < grabbable_width))) x 1433 src/window.c if (x < left_x || x > right_x) x 1448 src/window.c && (eabs (x - right_x) < grabbable_width)) x 1458 src/window.c && x > right_x - ux) x 1461 src/window.c if (x < text_left) x 1465 src/window.c ? (x >= left_x + WINDOW_LEFT_FRINGE_WIDTH (w)) x 1466 src/window.c : (x < left_x + lmargin_width))) x 1472 src/window.c if (x >= text_right) x 1476 src/window.c ? (x < right_x - WINDOW_RIGHT_FRINGE_WIDTH (w)) x 1477 src/window.c : (x >= right_x - rmargin_width))) x 1490 src/window.c window_relative_x_coord (struct window *w, enum window_part part, int x) x 1497 src/window.c return x - window_box_left (w, TEXT_AREA); x 1503 src/window.c return x - left_x; x 1506 src/window.c return x - left_x - WINDOW_LEFT_FRINGE_WIDTH (w); x 1509 src/window.c return (x - left_x x 1514 src/window.c return (x + 1 x 1561 src/window.c int x, y; x 1571 src/window.c x = FRAME_PIXEL_X_FROM_CANON_X (f, lx) + FRAME_INTERNAL_BORDER_WIDTH (f); x 1574 src/window.c switch (coordinates_in_window (w, x, y)) x 1582 src/window.c x -= window_box_left (w, TEXT_AREA); x 1584 src/window.c return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f, x), x 1642 src/window.c int x, y; x 1650 src/window.c enum window_part found = coordinates_in_window (w, cw->x, cw->y); x 1682 src/window.c window_from_coordinates (struct frame *f, int x, int y, x 1693 src/window.c cw.window = &window, cw.x = x, cw.y = y; cw.part = part; x 1703 src/window.c && (coordinates_in_window (XWINDOW (f->tab_bar_window), x, y) x 1718 src/window.c && (coordinates_in_window (XWINDOW (f->tool_bar_window), x, y) x 1737 src/window.c (Lisp_Object x, Lisp_Object y, Lisp_Object frame) x 1741 src/window.c CHECK_NUMBER (x); x 1745 src/window.c (FRAME_PIXEL_X_FROM_CANON_X (f, x) x 1981 src/window.c int x, y; x 2002 src/window.c && pos_visible_p (w, posint, &x, &y, &rtop, &rbot, &rowh, &vpos)) x 2014 src/window.c in_window = Fcons (make_fixnum (x), x 2735 src/window.c || (FRAME_X_P (f) && f->output_data.x->asked_for_visible x 2736 src/window.c && !f->output_data.x->has_been_visible) x 5723 src/window.c int x, y, rtop, rbot, rowh, vpos; x 5742 src/window.c if (!pos_visible_p (w, PT, &x, &y, &rtop, &rbot, &rowh, &vpos)) x 8309 src/window.c (Lisp_Object x, Lisp_Object y) x 8311 src/window.c if (compare_window_configurations (x, y)) x 94 src/window.h int x, y; x 464 src/window.h CHECK_WINDOW (Lisp_Object x) x 466 src/window.h CHECK_TYPE (WINDOWP (x), Qwindowp, x); x 1206 src/window.h output_cursor_to (struct window *w, int vpos, int hpos, int y, int x) x 1211 src/window.h w->output_cursor.x = x; x 1376 src/xdisp.c int x; x 1381 src/xdisp.c x = WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w); x 1384 src/xdisp.c x += (WINDOW_LEFT_FRINGE_WIDTH (w) x 1387 src/xdisp.c x += (WINDOW_LEFT_FRINGE_WIDTH (w) x 1395 src/xdisp.c x += WINDOW_LEFT_FRINGE_WIDTH (w); x 1398 src/xdisp.c return min (x, w->pixel_width); x 1422 src/xdisp.c int x; x 1427 src/xdisp.c x = (WINDOW_LEFT_EDGE_X (w) x 1430 src/xdisp.c return x; x 1682 src/xdisp.c pos_visible_p (struct window *w, ptrdiff_t charpos, int *x, int *y, x 1848 src/xdisp.c top_x = it.glyph_row->x; x 1882 src/xdisp.c top_x = it.glyph_row->x; x 2043 src/xdisp.c *x = top_x; x 2081 src/xdisp.c *x = it2.current_x; x 2112 src/xdisp.c *x -= x 2121 src/xdisp.c *x = window_box_width (w, TEXT_AREA) - *x - 1; x 2128 src/xdisp.c charpos, w->vscroll, *x, *y, *rtop, *rbot, *rowh, *vpos); x 2315 src/xdisp.c pixel_to_glyph_coords (struct frame *f, int pix_x, int pix_y, int *x, int *y, x 2355 src/xdisp.c *x = pix_x; x 2369 src/xdisp.c x_y_to_hpos_vpos (struct window *w, int x, int y, int *hpos, int *vpos, x 2401 src/xdisp.c if (x < window_box_left_offset (w, TEXT_AREA)) x 2406 src/xdisp.c else if (x < window_box_right_offset (w, TEXT_AREA)) x 2409 src/xdisp.c x0 = window_box_left_offset (w, TEXT_AREA) + min (row->x, 0); x 2421 src/xdisp.c x -= x0; x 2422 src/xdisp.c while (glyph < end && x >= glyph->pixel_width) x 2424 src/xdisp.c x -= glyph->pixel_width; x 2433 src/xdisp.c *dx = x; x 2445 src/xdisp.c frame_to_window_pixel_xy (struct window *w, int *x, int *y) x 2452 src/xdisp.c *x -= FRAME_INTERNAL_BORDER_WIDTH (f); x 2457 src/xdisp.c *x -= WINDOW_LEFT_EDGE_X (w); x 2479 src/xdisp.c r.x = WINDOW_LEFT_EDGE_X (s->w); x 2495 src/xdisp.c r.x = window_box_left (s->w, s->area); x 2501 src/xdisp.c if (r.x < s->clip_head->x) x 2503 src/xdisp.c if (r.width >= s->clip_head->x - r.x) x 2504 src/xdisp.c r.width -= s->clip_head->x - r.x; x 2507 src/xdisp.c r.x = s->clip_head->x; x 2510 src/xdisp.c if (r.x + r.width > s->clip_tail->x + s->clip_tail->background_width) x 2512 src/xdisp.c if (s->clip_tail->x + s->clip_tail->background_width >= r.x) x 2513 src/xdisp.c r.width = s->clip_tail->x + s->clip_tail->background_width - r.x; x 2535 src/xdisp.c rc.x = WINDOW_TEXT_TO_FRAME_PIXEL_X (s->w, s->w->phys_cursor.x); x 2564 src/xdisp.c if (s->x > r.x) x 2566 src/xdisp.c if (r.width >= s->x - r.x) x 2567 src/xdisp.c r.width -= s->x - r.x; x 2570 src/xdisp.c r.x = s->x; x 2685 src/xdisp.c int x, y, wd, h, h0, y0, ascent; x 2693 src/xdisp.c x = w->phys_cursor.x; x 2694 src/xdisp.c if (x < 0) x 2696 src/xdisp.c wd += x; x 2697 src/xdisp.c x = 0; x 2743 src/xdisp.c *xp = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, x); x 2760 src/xdisp.c int x, y, width, height; x 2789 src/xdisp.c x = window_relative_x_coord (w, part, gx); x 2843 src/xdisp.c for (gx = gr->x; g < end; gx += g->pixel_width, ++g) x 2844 src/xdisp.c if (gx + g->pixel_width > x) x 2861 src/xdisp.c x -= gx; x 2862 src/xdisp.c gx += (x / width) * width; x 2878 src/xdisp.c gx = (x / width) * width; x 2991 src/xdisp.c f->output_data.x->normal_gc, x 5599 src/xdisp.c it->slice.x = it->slice.y = it->slice.width = it->slice.height = Qnil; x 5938 src/xdisp.c it->slice.x = XCAR (tem); x 9791 src/xdisp.c int x, i, ascent = 0, descent = 0; x 9795 src/xdisp.c ((IT)->current_x = x, (IT)->max_ascent = ascent, \ x 9907 src/xdisp.c x = it->current_x; x 9952 src/xdisp.c int x_before_this_char = x; x 9955 src/xdisp.c for (i = 0; i < it->nglyphs; ++i, x = new_x) x 9957 src/xdisp.c new_x = x + single_glyph_width; x 9976 src/xdisp.c it->current_x = x; x 11261 src/xdisp.c int c, max_x = 0, max_y = 0, x = 0, y = 0, vertical_offset = 0, doff = 0; x 11463 src/xdisp.c x = move_it_to (&it, end, to_x, max_y, -1, move_op); x 11473 src/xdisp.c x = move_it_to (&it, end, to_x, max_y, -1, move_op); x 11479 src/xdisp.c x += it.pixel_width; x 11498 src/xdisp.c if (x > max_x) x 11499 src/xdisp.c x = max_x; x 11562 src/xdisp.c ? Fcons (make_fixnum (x - start_x), make_fixnum (y)) x 11563 src/xdisp.c : list3i (x - start_x, y, start)); x 14239 src/xdisp.c int x, n_glyphs_before, i, nglyphs; x 14259 src/xdisp.c x = it_before.current_x; x 14264 src/xdisp.c if (x + glyph->pixel_width > max_x) x 14279 src/xdisp.c x += glyph->pixel_width; x 14636 src/xdisp.c get_tab_bar_item (struct frame *f, int x, int y, struct glyph **glyph, x 14643 src/xdisp.c *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, 0, 0, &area); x 14663 src/xdisp.c handle_tab_bar_click (struct frame *f, int x, int y, bool down_p, x 14674 src/xdisp.c frame_to_window_pixel_xy (w, &x, &y); x 14675 src/xdisp.c ts = get_tab_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx, &close_p); x 14719 src/xdisp.c note_tab_bar_highlight (struct frame *f, int x, int y) x 14736 src/xdisp.c if (x <= 0 || y <= 0) x 14742 src/xdisp.c rc = get_tab_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx, &close_p); x 14777 src/xdisp.c for (i = x = 0; i < hpos; ++i) x 14778 src/xdisp.c x += row->glyphs[TEXT_AREA][i].pixel_width; x 14783 src/xdisp.c hlinfo->mouse_face_beg_x = x; x 14788 src/xdisp.c hlinfo->mouse_face_end_x = x + glyph->pixel_width; x 14811 src/xdisp.c tty_get_tab_bar_item (struct frame *f, int x, int *prop_idx, bool *close_p) x 14822 src/xdisp.c if (x < clen) x 14826 src/xdisp.c - (clen - x)), x 14841 src/xdisp.c tty_handle_tab_bar_click (struct frame *f, int x, int y, bool down_p, x 14852 src/xdisp.c Lisp_Object caption = tty_get_tab_bar_item (f, x, &prop_idx, &close_p); x 15175 src/xdisp.c int x, n_glyphs_before, i, nglyphs; x 15195 src/xdisp.c x = it_before.current_x; x 15200 src/xdisp.c if (x + glyph->pixel_width > max_x) x 15215 src/xdisp.c x += glyph->pixel_width; x 15558 src/xdisp.c get_tool_bar_item (struct frame *f, int x, int y, struct glyph **glyph, x 15566 src/xdisp.c *glyph = x_y_to_hpos_vpos (w, x, y, hpos, vpos, 0, 0, &area); x 15597 src/xdisp.c handle_tool_bar_click_with_device (struct frame *f, int x, int y, bool down_p, x 15614 src/xdisp.c frame_to_window_pixel_xy (w, &x, &y); x 15615 src/xdisp.c ts = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx); x 15662 src/xdisp.c handle_tool_bar_click (struct frame *f, int x, int y, bool down_p, x 15665 src/xdisp.c handle_tool_bar_click_with_device (f, x, y, down_p, modifiers, Qt); x 15673 src/xdisp.c note_tool_bar_highlight (struct frame *f, int x, int y) x 15691 src/xdisp.c if (x <= 0 || y <= 0) x 15697 src/xdisp.c rc = get_tool_bar_item (f, x, y, &glyph, &hpos, &vpos, &prop_idx); x 15726 src/xdisp.c for (i = x = 0; i < hpos; ++i) x 15727 src/xdisp.c x += row->glyphs[TEXT_AREA][i].pixel_width; x 15732 src/xdisp.c hlinfo->mouse_face_beg_x = x; x 15737 src/xdisp.c hlinfo->mouse_face_end_x = x + glyph->pixel_width; x 15918 src/xdisp.c && ((w->hscroll && w->cursor.x <= h_margin + x_offset) x 15921 src/xdisp.c && (w->cursor.x >= text_area_width - h_margin)))) x 15934 src/xdisp.c && w->cursor.x <= h_margin) x 15936 src/xdisp.c && (w->cursor.x >= (text_area_width - h_margin x 16014 src/xdisp.c && w->cursor.x >= text_area_width - h_margin) x 16015 src/xdisp.c || (row_r2l_p && w->cursor.x <= h_margin)) x 17722 src/xdisp.c int x = row->x; x 17765 src/xdisp.c x += glyph->pixel_width; x 17794 src/xdisp.c for (x = 0, g = end + 1; g < glyph; g++) x 17795 src/xdisp.c x += g->pixel_width; x 17817 src/xdisp.c x = -1; /* will be computed below, at label compute_x */ x 17912 src/xdisp.c x += glyph->pixel_width; x 17980 src/xdisp.c x--; /* can't use any pixel_width */ x 17983 src/xdisp.c x -= glyph->pixel_width; x 18017 src/xdisp.c glyph--, x -= glyph->pixel_width; x 18021 src/xdisp.c x += glyph->pixel_width; x 18029 src/xdisp.c glyph++, x += glyph->pixel_width; x 18030 src/xdisp.c x -= glyph->pixel_width; x 18037 src/xdisp.c x = -1; x 18051 src/xdisp.c x = -1; x 18188 src/xdisp.c x = -1; x 18198 src/xdisp.c x = -1; x 18220 src/xdisp.c if (x < 0) x 18225 src/xdisp.c for (g = row->glyphs[TEXT_AREA], x = row->x; g < glyph; g++) x 18229 src/xdisp.c x += g->pixel_width; x 18302 src/xdisp.c w->cursor.x = x; x 18310 src/xdisp.c && row->x == 0) x 18327 src/xdisp.c this_line_start_x = row->x; x 21254 src/xdisp.c w->cursor.x += glyph->pixel_width; x 22576 src/xdisp.c row->x, x 22668 src/xdisp.c w->cursor.x, w->cursor.y, w->cursor.hpos, w->cursor.vpos); x 22944 src/xdisp.c it->glyph_row->x = 0; x 23105 src/xdisp.c row->pixel_width = row->x; x 23640 src/xdisp.c it->glyph_row->x = stretch_width; x 24892 src/xdisp.c int x, nglyphs; x 24948 src/xdisp.c x = it->current_x; x 24971 src/xdisp.c wrap_x = x; x 25028 src/xdisp.c x_before = x; x 25053 src/xdisp.c row->x = x - it->first_visible_x; x 25064 src/xdisp.c for (i = 0; i < nglyphs; ++i, x = new_x) x 25073 src/xdisp.c new_x = x + glyph->pixel_width; x 25241 src/xdisp.c glyph->pixel_width = it->last_visible_x - x; x 25259 src/xdisp.c it->continuation_lines_width += x; x 25296 src/xdisp.c if (x < it->first_visible_x && !row->reversed_p x 25304 src/xdisp.c row->x = x - it->first_visible_x; x 25318 src/xdisp.c row->x = it->last_visible_x - new_x; x 26640 src/xdisp.c int x, int y, bool submenu) x 26672 src/xdisp.c eassert (x < f->desired_matrix->matrix_w); x 26673 src/xdisp.c it.current_x = it.hpos = x; x 26677 src/xdisp.c row->used[TEXT_AREA] = x; x 28669 src/xdisp.c int x_before, x, n_glyphs_before, i, nglyphs; x 28682 src/xdisp.c x = x_before; x 28688 src/xdisp.c && x + glyph->pixel_width > max_x) x 28706 src/xdisp.c it->current_x = x; x 28710 src/xdisp.c else if (x + glyph->pixel_width >= it->first_visible_x) x 28714 src/xdisp.c if (x < it->first_visible_x) x 28715 src/xdisp.c row->x = x - it->first_visible_x; x 28731 src/xdisp.c x += glyph->pixel_width; x 29205 src/xdisp.c s->x, s->y, s->width, s->height); x 29942 src/xdisp.c int x = 0, i; x 29946 src/xdisp.c for (i = first - 1; i >= 0 && x > -s->left_overhang; --i) x 29947 src/xdisp.c x -= glyphs[i].pixel_width; x 29965 src/xdisp.c int i, k, x; x 29970 src/xdisp.c x = 0; x 29975 src/xdisp.c if (x + right > 0) x 29977 src/xdisp.c x -= glyphs[i].pixel_width; x 29995 src/xdisp.c int x = 0, i; x 30001 src/xdisp.c for (i = first; i < end && s->right_overhang > x; ++i) x 30002 src/xdisp.c x += glyphs[i].pixel_width; x 30018 src/xdisp.c int i, k, x; x 30025 src/xdisp.c x = 0; x 30030 src/xdisp.c if (x - left < 0) x 30032 src/xdisp.c x += glyphs[i].pixel_width; x 30066 src/xdisp.c s->background_width = last_x - s->x + 1; x 30113 src/xdisp.c compute_overhangs_and_x (struct glyph_string *s, int x, bool backward_p) x 30122 src/xdisp.c x -= s->width; x 30123 src/xdisp.c s->x = x; x 30133 src/xdisp.c s->x = x; x 30135 src/xdisp.c x += s->width; x 30176 src/xdisp.c s->x = (X); \ x 30197 src/xdisp.c s->x = (X); \ x 30213 src/xdisp.c s->x = (X); \ x 30239 src/xdisp.c s->x = (X); \ x 30275 src/xdisp.c s->x = (X); \ x 30302 src/xdisp.c s->x = (X); \ x 30321 src/xdisp.c s->x = (X); \ x 30425 src/xdisp.c draw_glyphs (struct window *w, int x, struct glyph_row *row, x 30456 src/xdisp.c x += area_left; x 30464 src/xdisp.c BUILD_GLYPH_STRINGS (i, end, head, tail, hl, x, last_x); x 30468 src/xdisp.c x_reached = s->x + s->background_width; x 30471 src/xdisp.c x_reached = x; x 30538 src/xdisp.c compute_overhangs_and_x (t, head->x, true); x 30568 src/xdisp.c compute_overhangs_and_x (t, head->x, true); x 30590 src/xdisp.c overlap_hl, x, last_x); x 30593 src/xdisp.c compute_overhangs_and_x (h, tail->x + tail->width, false); x 30618 src/xdisp.c overlap_hl, x, last_x); x 30621 src/xdisp.c compute_overhangs_and_x (h, tail->x + tail->width, false); x 30648 src/xdisp.c int x0 = clip_head ? clip_head->x : (head ? head->x : x); x 30649 src/xdisp.c int x1 = (clip_tail ? clip_tail->x + clip_tail->background_width x 30650 src/xdisp.c : (tail ? tail->x + tail->background_width : x)); x 30929 src/xdisp.c slice.x = slice.y = 0; x 30933 src/xdisp.c if (FIXNUMP (it->slice.x)) x 30934 src/xdisp.c slice.x = XFIXNUM (it->slice.x); x 30935 src/xdisp.c else if (FLOATP (it->slice.x)) x 30936 src/xdisp.c slice.x = XFLOAT_DATA (it->slice.x) * img->width; x 30953 src/xdisp.c if (slice.x >= img->width) x 30954 src/xdisp.c slice.x = img->width; x 30957 src/xdisp.c if (slice.x + slice.width >= img->width) x 30958 src/xdisp.c slice.width = img->width - slice.x; x 30975 src/xdisp.c if (slice.x == 0) x 30977 src/xdisp.c if (slice.x + slice.width == img->width) x 31001 src/xdisp.c if (it->start_of_box_run_p && slice.x == 0) x 31003 src/xdisp.c if (it->end_of_box_run_p && slice.x + slice.width == img->width) x 31385 src/xdisp.c int x = it->current_x + it->continuation_lines_width; x 31386 src/xdisp.c int x0 = x; x 31390 src/xdisp.c x -= it->lnum_pixel_width; x 31392 src/xdisp.c if (x + it->stretch_adjust >= it->first_visible_x) x 31393 src/xdisp.c x += it->stretch_adjust; x 31402 src/xdisp.c width = max (0, (int)tem + align_to - x); x 31404 src/xdisp.c int next_x = x + width; x 31409 src/xdisp.c if (x < it->first_visible_x) x 31411 src/xdisp.c next_x -= it->first_visible_x - x; x 31412 src/xdisp.c it->stretch_adjust = it->first_visible_x - x; x 32203 src/xdisp.c int x = it->current_x + it->continuation_lines_width; x 32204 src/xdisp.c int x0 = x; x 32208 src/xdisp.c x -= it->lnum_pixel_width; x 32210 src/xdisp.c if (x + it->stretch_adjust >= it->first_visible_x) x 32211 src/xdisp.c x += it->stretch_adjust; x 32214 src/xdisp.c int next_tab_x = ((1 + x + tab_width - 1) / tab_width) * tab_width; x 32219 src/xdisp.c if (next_tab_x - x < font->space_width) x 32226 src/xdisp.c if (x < it->first_visible_x) x 32228 src/xdisp.c next_tab_x -= it->first_visible_x - x; x 32229 src/xdisp.c it->stretch_adjust = it->first_visible_x - x; x 32684 src/xdisp.c int x, hpos, chpos = w->phys_cursor.hpos; x 32700 src/xdisp.c x = draw_glyphs (w, w->output_cursor.x, x 32717 src/xdisp.c w->output_cursor.x = x; x 32750 src/xdisp.c - w->output_cursor.x x 32754 src/xdisp.c frame_x = window_box_left (w, updated_area) + w->output_cursor.x; x 32762 src/xdisp.c draw_glyphs (w, w->output_cursor.x, row, updated_area, x 32768 src/xdisp.c w->output_cursor.x += shift_by_width; x 32815 src/xdisp.c w->output_cursor.x, -1, x 32819 src/xdisp.c from_x = w->output_cursor.x; x 33135 src/xdisp.c cx0 = w->phys_cursor.x; x 33181 src/xdisp.c int i, x; x 33185 src/xdisp.c x = 0; x 33190 src/xdisp.c int start = i, start_x = x; x 33194 src/xdisp.c x += row->glyphs[area][i].pixel_width; x 33206 src/xdisp.c x += row->glyphs[area][i].pixel_width; x 33242 src/xdisp.c x1 = draw_glyphs (w, w->phys_cursor.x, row, TEXT_AREA, hpos, hpos + 1, x 33247 src/xdisp.c w->phys_cursor_width = x1 - w->phys_cursor.x; x 33253 src/xdisp.c w->phys_cursor_width = x1 - w->phys_cursor.x; x 33364 src/xdisp.c int x, y; x 33374 src/xdisp.c x = w->phys_cursor.x; x 33375 src/xdisp.c if (x < 0) x 33377 src/xdisp.c width += x; x 33378 src/xdisp.c x = 0; x 33380 src/xdisp.c width = min (width, window_box_width (w, TEXT_AREA) - x); x 33382 src/xdisp.c x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, x); x 33385 src/xdisp.c FRAME_RIF (f)->clear_frame_area (f, x, y, width, cursor_row->visible_height); x 33407 src/xdisp.c int hpos, int vpos, int x, int y) x 33450 src/xdisp.c w->phys_cursor.x = x; x 33473 src/xdisp.c || w->phys_cursor.x != x x 33496 src/xdisp.c w->phys_cursor.x = x; x 33502 src/xdisp.c FRAME_RIF (f)->draw_window_cursor (w, glyph_row, x, y, x 33538 src/xdisp.c w->phys_cursor.x, w->phys_cursor.y); x 33726 src/xdisp.c int old_phys_cursor_x = w->phys_cursor.x; x 33738 src/xdisp.c w->phys_cursor.x + mouse_off, x 33742 src/xdisp.c w->phys_cursor.x = old_phys_cursor_x; x 34040 src/xdisp.c int x; x 34120 src/xdisp.c x = r1->x; x 34128 src/xdisp.c x += glyph->pixel_width; x 34159 src/xdisp.c x += glyph->pixel_width; x 34161 src/xdisp.c hlinfo->mouse_face_beg_x = x; x 34212 src/xdisp.c for (g = r1->glyphs[TEXT_AREA], x = r1->x; g < glyph; g++) x 34213 src/xdisp.c x += g->pixel_width; x 34214 src/xdisp.c hlinfo->mouse_face_beg_x = x; x 34227 src/xdisp.c x = r2->x; x 34275 src/xdisp.c x += glyph->pixel_width; x 34277 src/xdisp.c hlinfo->mouse_face_end_x = x; x 34285 src/xdisp.c x = r2->x; x 34290 src/xdisp.c x += end->pixel_width; x 34321 src/xdisp.c x += end->pixel_width; x 34333 src/xdisp.c x += end->pixel_width; x 34336 src/xdisp.c hlinfo->mouse_face_end_x = x; x 34371 src/xdisp.c int *hpos, int *vpos, int *x, int *y, bool right_p) x 34387 src/xdisp.c for (gx = r->x; g < e; gx += g->pixel_width, ++g) x 34415 src/xdisp.c *x = best_x; x 34420 src/xdisp.c *x += best_glyph->pixel_width; x 34459 src/xdisp.c for (gx = r->x; g < e; gx += g->pixel_width, ++g) x 34484 src/xdisp.c for (gx = r->x, g1 = r->glyphs[TEXT_AREA]; g1 < g; ++g1) x 34534 src/xdisp.c for (gx = r->x; g < e; ++g) x 34542 src/xdisp.c for (gx = r->x ; e < g; ++e) x 34559 src/xdisp.c on_hot_spot_p (Lisp_Object hot_spot, int x, int y) x 34575 src/xdisp.c if (!(tem = XCAR (XCAR (rect)), FIXNUMP (tem) && x >= XFIXNUM (tem))) x 34579 src/xdisp.c if (!(tem = XCAR (XCDR (rect)), FIXNUMP (tem) && x <= XFIXNUM (tem))) x 34597 src/xdisp.c double dx = XFIXNUM (lx0) - x; x 34636 src/xdisp.c if (x0 >= x) x 34638 src/xdisp.c if (x1 >= x) x 34641 src/xdisp.c else if (x1 < x) x 34645 src/xdisp.c if (y < y0 + ((y1 - y0) * (x - x0)) / (x1 - x0)) x 34655 src/xdisp.c find_hot_spot (Lisp_Object map, int x, int y) x 34660 src/xdisp.c && on_hot_spot_p (XCAR (XCAR (map)), x, y)) x 34680 src/xdisp.c (Lisp_Object map, Lisp_Object x, Lisp_Object y) x 34685 src/xdisp.c CHECK_FIXNUM (x); x 34689 src/xdisp.c clip_to_bounds (INT_MIN, XFIXNUM (x), INT_MAX), x 34744 src/xdisp.c note_mode_line_or_margin_highlight (Lisp_Object window, int x, int y, x 34757 src/xdisp.c int original_x_pixel = x; x 34768 src/xdisp.c string = mode_line_string (w, area, &x, &y, &charpos, x 34794 src/xdisp.c x -= WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH (w); x 34797 src/xdisp.c string = marginal_area_string (w, area, &x, &y, &charpos, x 35003 src/xdisp.c hpos = x - gpos; x 35082 src/xdisp.c note_mouse_highlight (struct frame *f, int x, int y) x 35107 src/xdisp.c hlinfo->mouse_face_mouse_x = x; x 35115 src/xdisp.c window = window_from_coordinates (f, x, y, &part, true, true); x 35138 src/xdisp.c Lisp_Object caption = tty_get_tab_bar_item (f, x, &prop_idx, &ignore); x 35158 src/xdisp.c enum internal_border_part part = frame_internal_border_part (f, x, y); x 35212 src/xdisp.c frame_to_window_pixel_xy (w, &x, &y); x 35219 src/xdisp.c note_tab_bar_highlight (f, x, y); x 35243 src/xdisp.c note_tool_bar_highlight (f, x, y); x 35252 src/xdisp.c note_mode_line_or_margin_highlight (window, x, y, part); x 35315 src/xdisp.c glyph = x_y_to_hpos_vpos (w, x, y, &hpos, &vpos, &dx, &dy, &area); x 35328 src/xdisp.c glyph->slice.img.x + dx, x 35764 src/xdisp.c int first_x, start_x, x; x 35768 src/xdisp.c draw_glyphs (w, row->x, row, area, x 35777 src/xdisp.c x = start_x; x 35779 src/xdisp.c x += row->x; x 35783 src/xdisp.c && x + first->pixel_width < r->x) x 35785 src/xdisp.c x += first->pixel_width; x 35791 src/xdisp.c first_x = x; x 35795 src/xdisp.c int r_end = r->x + r->width; x 35796 src/xdisp.c while (last < end && x < r_end) x 35798 src/xdisp.c x += last->pixel_width; x 35890 src/xdisp.c cr.x = window_box_right_offset (w, x 35905 src/xdisp.c cr.x = window_box_left_offset (w, TEXT_AREA) + w->phys_cursor.x; x 36060 src/xdisp.c wr.x = WINDOW_LEFT_EDGE_X (w); x 36072 src/xdisp.c r.x, r.y, r.width, r.height); x 36075 src/xdisp.c r.x -= WINDOW_LEFT_EDGE_X (w); x 36225 src/xdisp.c expose_frame (struct frame *f, int x, int y, int w, int h) x 36248 src/xdisp.c r.x = r.y = 0; x 36254 src/xdisp.c r.x = x; x 36261 src/xdisp.c r.x, r.y, r.width, r.height); x 36325 src/xdisp.c if (r1->x < r2->x) x 36332 src/xdisp.c if (right->x <= left->x + left->width) x 36334 src/xdisp.c result->x = right->x; x 36338 src/xdisp.c result->width = (min (left->x + left->width, right->x + right->width) x 36339 src/xdisp.c - result->x); x 37633 src/xdisp.c g->slice.img.x == 0; x 37635 src/xdisp.c g->slice.img.x + g->slice.img.width == img->width; x 37642 src/xdisp.c g->slice.img.x + g->slice.img.width == img->width; x 37644 src/xdisp.c g->slice.img.x == 0; x 385 src/xfaces.c static int color_distance (Emacs_Color *x, Emacs_Color *y); x 901 src/xfaces.c double x = strtod (s, &end); x 902 src/xfaces.c return (end == e && x >= 0 && x <= 1) ? x : -1; x 4018 src/xfaces.c if (changed_p && f->output_data.x->menubar_widget) x 4582 src/xfaces.c color_distance (Emacs_Color *x, Emacs_Color *y) x 4594 src/xfaces.c long long r = x->red - y->red; x 4595 src/xfaces.c long long g = x->green - y->green; x 4596 src/xfaces.c long long b = x->blue - y->blue; x 4597 src/xfaces.c long long r_mean = (x->red + y->red) >> 1; x 192 src/xfns.c dpyinfo = t->display_info.x; x 232 src/xfns.c : f->output_data.x->parent_desc); x 371 src/xfns.c && dpyinfo->root_window == f->output_data.x->parent_desc) x 385 src/xfns.c real_x = geom->x; x 485 src/xfns.c if (!parent_frame && dpyinfo->root_window == f->output_data.x->parent_desc) x 603 src/xfns.c x_relative_mouse_position (struct frame *f, int *x, int *y) x 622 src/xfns.c x, y, x 638 src/xfns.c *x, *y, x, y, x 727 src/xfns.c f->output_data.x->wait_for_wm = !NILP (new_value); x 1038 src/xfns.c XtSetValues (f->output_data.x->widget, al, 1); x 1042 src/xfns.c f->output_data.x->wm_hints.input = NILP (new_value) ? True : False; x 1043 src/xfns.c XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints); x 1148 src/xfns.c struct x_output *x = f->output_data.x; x 1160 src/xfns.c XSetForeground (dpy, x->normal_gc, fg); x 1161 src/xfns.c XSetBackground (dpy, x->reverse_gc, fg); x 1163 src/xfns.c if (x->cursor_pixel == old_fg) x 1165 src/xfns.c unload_color (f, x->cursor_pixel); x 1166 src/xfns.c x->cursor_pixel = x_copy_color (f, fg); x 1167 src/xfns.c XSetBackground (dpy, x->cursor_gc, x->cursor_pixel); x 1184 src/xfns.c struct x_output *x = f->output_data.x; x 1196 src/xfns.c XSetBackground (dpy, x->normal_gc, bg); x 1197 src/xfns.c XSetForeground (dpy, x->reverse_gc, bg); x 1199 src/xfns.c XSetForeground (dpy, x->cursor_gc, bg); x 1314 src/xfns.c struct x_output *x = f->output_data.x; x 1328 src/xfns.c unload_color (f, x->mouse_pixel); x 1329 src/xfns.c x->mouse_pixel = pixel; x 1395 src/xfns.c colors[0].pixel = x->mouse_pixel; x 1405 src/xfns.c f->output_data.x->current_cursor = cursor_data.cursor[mouse_cursor_text]; x 1407 src/xfns.c f->output_data.x->current_cursor); x 1411 src/xfns.c eassert (x->FIELD != cursor_data.cursor[mouse_cursor_ ## SHORT_INDEX]); \ x 1412 src/xfns.c if (x->FIELD != 0) \ x 1413 src/xfns.c XFreeCursor (dpy, x->FIELD); \ x 1414 src/xfns.c x->FIELD = cursor_data.cursor[mouse_cursor_ ## SHORT_INDEX]; x 1445 src/xfns.c struct x_output *x = f->output_data.x; x 1468 src/xfns.c pixel = x->mouse_pixel; x 1480 src/xfns.c unload_color (f, x->cursor_foreground_pixel); x 1483 src/xfns.c x->cursor_foreground_pixel = fore_pixel; x 1485 src/xfns.c unload_color (f, x->cursor_pixel); x 1488 src/xfns.c x->cursor_pixel = pixel; x 1493 src/xfns.c XSetBackground (FRAME_X_DISPLAY (f), x->cursor_gc, x->cursor_pixel); x 1494 src/xfns.c XSetForeground (FRAME_X_DISPLAY (f), x->cursor_gc, fore_pixel); x 1514 src/xfns.c unload_color (f, f->output_data.x->border_pixel); x 1515 src/xfns.c f->output_data.x->border_pixel = pix; x 1518 src/xfns.c if (f->output_data.x->widget && f->border_width > 0) x 1521 src/xfns.c XtVaSetValues (f->output_data.x->widget, XtNborderColor, x 1619 src/xfns.c if (f->output_data.x->icon_bitmap != 0) x 1671 src/xfns.c if (FRAME_X_P (f) && f->output_data.x->menubar_widget == 0) x 1681 src/xfns.c f->output_data.x->menubar_widget = 0; x 1852 src/xfns.c if (FRAME_X_P (f) && f->output_data.x->toolbar_widget == 0) x 1984 src/xfns.c if (f->output_data.x->scroll_bar_foreground_pixel != -1) x 1985 src/xfns.c unload_color (f, f->output_data.x->scroll_bar_foreground_pixel); x 1987 src/xfns.c f->output_data.x->scroll_bar_foreground_pixel = pixel; x 2043 src/xfns.c if (f->output_data.x->scroll_bar_background_pixel != -1) x 2044 src/xfns.c unload_color (f, f->output_data.x->scroll_bar_background_pixel); x 2048 src/xfns.c if (f->output_data.x->scroll_bar_top_shadow_pixel != -1) x 2050 src/xfns.c unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel); x 2051 src/xfns.c f->output_data.x->scroll_bar_top_shadow_pixel = -1; x 2053 src/xfns.c if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1) x 2055 src/xfns.c unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel); x 2056 src/xfns.c f->output_data.x->scroll_bar_bottom_shadow_pixel = -1; x 2060 src/xfns.c f->output_data.x->scroll_bar_background_pixel = pixel; x 3034 src/xfns.c spot.x = 0; spot.y = 1; x 3053 src/xfns.c s_area.x = 0; s_area.y = 0; s_area.width = 1; s_area.height = 1; x 3071 src/xfns.c spot.x = 0; x 3153 src/xfns.c xic_set_preeditarea (struct window *w, int x, int y) x 3161 src/xfns.c spot.x = (WINDOW_TO_FRAME_PIXEL_X (w, x) x 3186 src/xfns.c rect.x = (WINDOW_TO_FRAME_PIXEL_X (w, x) x 3213 src/xfns.c area.x = area.y = area.width = area.height = 0; x 3231 src/xfns.c area.x = FRAME_PIXEL_WIDTH (f) - area.width - FRAME_INTERNAL_BORDER_WIDTH (f); x 3331 src/xfns.c XSETINT (ie.x, 0); x 3354 src/xfns.c XSETINT (ie.x, 0); x 3623 src/xfns.c XSETINT (ie.x, 0); x 3894 src/xfns.c f->output_data.x->widget = shell_widget; x 3907 src/xfns.c f->output_data.x->column_widget = pane_widget; x 3925 src/xfns.c f->output_data.x->edit_widget = frame_widget; x 3935 src/xfns.c = (f->output_data.x->menubar_widget x 3936 src/xfns.c ? (f->output_data.x->menubar_widget->core.height x 3937 src/xfns.c + f->output_data.x->menubar_widget->core.border_width) x 3956 src/xfns.c XtVaGetValues (f->output_data.x->edit_widget, XtNinternalBorderWidth, x 4021 src/xfns.c f->output_data.x->wm_hints.input = True; x 4022 src/xfns.c f->output_data.x->wm_hints.flags |= InputHint; x 4024 src/xfns.c &f->output_data.x->wm_hints); x 4095 src/xfns.c f->output_data.x->current_cursor x 4096 src/xfns.c = f->output_data.x->text_cursor); x 4167 src/xfns.c attributes.border_pixel = f->output_data.x->border_pixel; x 4228 src/xfns.c f->output_data.x->wm_hints.input = True; x 4229 src/xfns.c f->output_data.x->wm_hints.flags |= InputHint; x 4231 src/xfns.c &f->output_data.x->wm_hints); x 4232 src/xfns.c f->output_data.x->wm_hints.icon_pixmap = None; x 4279 src/xfns.c f->output_data.x->current_cursor x 4280 src/xfns.c = f->output_data.x->text_cursor); x 4377 src/xfns.c f->output_data.x->normal_gc x 4386 src/xfns.c f->output_data.x->reverse_gc x 4394 src/xfns.c gc_values.background = f->output_data.x->cursor_pixel; x 4395 src/xfns.c f->output_data.x->cursor_gc x 4403 src/xfns.c f->output_data.x->border_tile x 4424 src/xfns.c if (f->output_data.x->normal_gc) x 4426 src/xfns.c XFreeGC (dpy, f->output_data.x->normal_gc); x 4427 src/xfns.c f->output_data.x->normal_gc = 0; x 4430 src/xfns.c if (f->output_data.x->reverse_gc) x 4432 src/xfns.c XFreeGC (dpy, f->output_data.x->reverse_gc); x 4433 src/xfns.c f->output_data.x->reverse_gc = 0; x 4436 src/xfns.c if (f->output_data.x->cursor_gc) x 4438 src/xfns.c XFreeGC (dpy, f->output_data.x->cursor_gc); x 4439 src/xfns.c f->output_data.x->cursor_gc = 0; x 4442 src/xfns.c if (f->output_data.x->border_tile) x 4444 src/xfns.c XFreePixmap (dpy, f->output_data.x->border_tile); x 4445 src/xfns.c f->output_data.x->border_tile = 0; x 4728 src/xfns.c f->output_data.x = xzalloc (sizeof *f->output_data.x); x 4729 src/xfns.c f->output_data.x->icon_bitmap = -1; x 4731 src/xfns.c f->output_data.x->scroll_bar_foreground_pixel = -1; x 4732 src/xfns.c f->output_data.x->scroll_bar_background_pixel = -1; x 4734 src/xfns.c f->output_data.x->scroll_bar_top_shadow_pixel = -1; x 4735 src/xfns.c f->output_data.x->scroll_bar_bottom_shadow_pixel = -1; x 4737 src/xfns.c f->output_data.x->white_relief.pixel = -1; x 4738 src/xfns.c f->output_data.x->black_relief.pixel = -1; x 4764 src/xfns.c f->output_data.x->cursor_pixel = -1; x 4765 src/xfns.c f->output_data.x->cursor_foreground_pixel = -1; x 4766 src/xfns.c f->output_data.x->border_pixel = -1; x 4767 src/xfns.c f->output_data.x->mouse_pixel = -1; x 4774 src/xfns.c f->output_data.x->cursor_pixel x 4776 src/xfns.c f->output_data.x->cursor_foreground_pixel x 4778 src/xfns.c f->output_data.x->border_pixel x 4780 src/xfns.c f->output_data.x->mouse_pixel x 4787 src/xfns.c f->output_data.x->parent_desc = (Window) XFIXNAT (parent); x 4788 src/xfns.c f->output_data.x->explicit_parent = true; x 4792 src/xfns.c f->output_data.x->parent_desc = FRAME_DISPLAY_INFO (f)->root_window; x 4793 src/xfns.c f->output_data.x->explicit_parent = false; x 5086 src/xfns.c lw_set_main_areas (f->output_data.x->column_widget, x 5087 src/xfns.c f->output_data.x->menubar_widget, x 5088 src/xfns.c f->output_data.x->edit_widget); x 5126 src/xfns.c if (!f->output_data.x->explicit_parent) x 5184 src/xfns.c && !f->output_data.x->explicit_parent) x 5709 src/xfns.c rect->x = values[0]; x 5775 src/xfns.c rect->x = values[current_workspace]; x 5805 src/xfns.c frect.x = f->left_pos; x 5831 src/xfns.c if (frect.x + frect.width < mi->geom.x) x 5832 src/xfns.c dx = mi->geom.x - frect.x + frect.width; x 5833 src/xfns.c else if (frect.x > mi->geom.x + mi->geom.width) x 5834 src/xfns.c dx = frect.x - mi->geom.x + mi->geom.width; x 5892 src/xfns.c monitor.geom.x = monitor.geom.y = 0; x 5935 src/xfns.c mi->geom.x = info[i].x_org; x 6010 src/xfns.c monitors[i].geom.x = rr_monitors[i].x; x 6139 src/xfns.c mi->geom.x = crtc->x; x 6220 src/xfns.c int *x, int *y, int *width, int *height) x 6240 src/xfns.c *x = sx; x 6249 src/xfns.c *x = 0; x 6257 src/xfns.c int src_y, int *x, int *y, int *width, int *height) x 6266 src/xfns.c x, y, width, height); x 6384 src/xfns.c work.x = workarea_r.x; x 6402 src/xfns.c rec.x *= scale; x 6406 src/xfns.c work.x *= scale; x 6411 src/xfns.c mi->geom.x = rec.x; x 6415 src/xfns.c mi->work.x = work.x; x 6771 src/xfns.c && (cf->output_data.x->parent_desc == children[i] x 6880 src/xfns.c int x, y, dummy; x 6888 src/xfns.c &root, &dummy_window, &x, &y, &dummy, &dummy, x 6892 src/xfns.c return Fcons (make_fixnum (x), make_fixnum (y)); x 6900 src/xfns.c (Lisp_Object x, Lisp_Object y) x 6907 src/xfns.c int xval = check_integer_range (x, INT_MIN, INT_MAX); x 8125 src/xfns.c f->output_data.x = xzalloc (sizeof *f->output_data.x); x 8126 src/xfns.c f->output_data.x->icon_bitmap = -1; x 8128 src/xfns.c f->output_data.x->scroll_bar_foreground_pixel = -1; x 8129 src/xfns.c f->output_data.x->scroll_bar_background_pixel = -1; x 8131 src/xfns.c f->output_data.x->scroll_bar_top_shadow_pixel = -1; x 8132 src/xfns.c f->output_data.x->scroll_bar_bottom_shadow_pixel = -1; x 8134 src/xfns.c f->output_data.x->white_relief.pixel = -1; x 8135 src/xfns.c f->output_data.x->black_relief.pixel = -1; x 8140 src/xfns.c f->output_data.x->parent_desc = FRAME_DISPLAY_INFO (f)->root_window; x 8141 src/xfns.c f->output_data.x->explicit_parent = false; x 8153 src/xfns.c f->output_data.x->cursor_pixel = -1; x 8154 src/xfns.c f->output_data.x->cursor_foreground_pixel = -1; x 8155 src/xfns.c f->output_data.x->border_pixel = -1; x 8156 src/xfns.c f->output_data.x->mouse_pixel = -1; x 8163 src/xfns.c f->output_data.x->cursor_pixel x 8165 src/xfns.c f->output_data.x->cursor_foreground_pixel x 8167 src/xfns.c f->output_data.x->border_pixel x 8169 src/xfns.c f->output_data.x->mouse_pixel x 8278 src/xfns.c f->output_data.x->current_cursor x 8279 src/xfns.c = f->output_data.x->text_cursor; x 8280 src/xfns.c attrs.border_pixel = f->output_data.x->border_pixel; x 8307 src/xfns.c f->output_data.x->current_cursor = f->output_data.x->text_cursor; x 8311 src/xfns.c value_list[1] = f->output_data.x->border_pixel; x 8315 src/xfns.c value_list[5] = (xcb_cursor_t) f->output_data.x->text_cursor; x 8360 src/xfns.c f->output_data.x->parent_desc = FRAME_DISPLAY_INFO (f)->root_window; x 9159 src/xfns.c dialog = XmCreateFileSelectionDialog (f->output_data.x->widget, x 9272 src/xfns.c copy.xkey.x = lrint (xev->event_x); x 990 src/xfont.c xfont_draw (struct glyph_string *s, int from, int to, int x, int y, x 1023 src/xfont.c &xc, x, y - ascent, s->width, height); x 1044 src/xfont.c gc, x + i, y, str + i, 1); x 1047 src/xfont.c gc, x, y, str, len); x 1054 src/xfont.c gc, x + i, y, str + i, 1); x 1057 src/xfont.c gc, x, y, str, len); x 1074 src/xfont.c gc, x + i, y, &char2b, 1); x 1086 src/xfont.c gc, x, y, char2b, len); x 1099 src/xfont.c gc, x + i, y, &char2b, 1); x 1111 src/xfont.c gc, x, y, char2b, len); x 474 src/xftfont.c metrics->lbearing = - extents.x; x 475 src/xftfont.c metrics->rbearing = - extents.x + extents.width; x 501 src/xftfont.c xftfont_draw (struct glyph_string *s, int from, int to, int x, int y, x 569 src/xftfont.c &xc, x, y - ascent, s->width, height); x 576 src/xftfont.c XftDrawRect (xft_draw, &bg, x, y - ascent, s->width, height); x 580 src/xftfont.c XftDrawRect (xft_draw, &bg, x, y - ascent, s->width, height); x 589 src/xftfont.c x + i, y, code + i, 1); x 592 src/xftfont.c x, y, code, len); x 137 src/xmenu.c if (f->output_data.x->id == id) x 263 src/xmenu.c copy.xbutton.x = lrint (xev->event_x); x 407 src/xmenu.c copy.xbutton.x = lrint (xev->event_x); x 442 src/xmenu.c copy.xkey.x = lrint (xev->event_x); x 531 src/xmenu.c ev.xbutton.x = ev.xbutton.y = FRAME_MENUBAR_HEIGHT (f) / 2; x 551 src/xmenu.c ev.xbutton.x, ev.xbutton.y, x 651 src/xmenu.c if (!f->output_data.x->saved_menu_event->type) x 656 src/xmenu.c f->output_data.x->saved_menu_event->xany.window)) x 664 src/xmenu.c XPutBackEvent (f->output_data.x->display_info->display, x 665 src/xmenu.c f->output_data.x->saved_menu_event); x 688 src/xmenu.c = XtDispatchEvent (f->output_data.x->saved_menu_event); x 693 src/xmenu.c f->output_data.x->saved_menu_event->type = 0; x 858 src/xmenu.c struct x_output *x; x 862 src/xmenu.c x = f->output_data.x; x 864 src/xmenu.c if (!x->menubar_widget || XtIsManaged (x->menubar_widget)) x 871 src/xmenu.c lw_refigure_widget (x->column_widget, False); x 876 src/xmenu.c XtUnmanageChild (x->edit_widget); x 880 src/xmenu.c XtManageChild (x->menubar_widget); x 881 src/xmenu.c XtMapWidget (x->menubar_widget); x 882 src/xmenu.c XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, NULL); x 885 src/xmenu.c XtManageChild (x->edit_widget); x 886 src/xmenu.c lw_refigure_widget (x->column_widget, True); x 943 src/xmenu.c menubar_widget = old_widget = f->output_data.x->menubar_widget; x 948 src/xmenu.c if (f->output_data.x->id == 0) x 949 src/xmenu.c f->output_data.x->id = next_menubar_widget_id++; x 950 src/xmenu.c id = f->output_data.x->id; x 956 src/xmenu.c else if (!f->output_data.x->saved_menu_event && !deep_p) x 959 src/xmenu.c f->output_data.x->saved_menu_event = xmalloc (sizeof (XEvent)); x 960 src/xmenu.c f->output_data.x->saved_menu_event->type = 0; x 1175 src/xmenu.c f->output_data.x->menubar_widget = menubar_widget; x 1183 src/xmenu.c lw_allow_resizing (f->output_data.x->widget, False); x 1190 src/xmenu.c lw_allow_resizing (f->output_data.x->widget, True); x 1198 src/xmenu.c apply_systemfont_to_menu (f, f->output_data.x->column_widget); x 1202 src/xmenu.c f->output_data.x->column_widget, x 1208 src/xmenu.c f->output_data.x->menubar_widget = menubar_widget; x 1216 src/xmenu.c if (f->output_data.x->menubar_widget) x 1217 src/xmenu.c XtRealizeWidget (f->output_data.x->menubar_widget); x 1220 src/xmenu.c = (f->output_data.x->menubar_widget x 1221 src/xmenu.c ? (f->output_data.x->menubar_widget->core.height x 1228 src/xmenu.c + f->output_data.x->menubar_widget->core.border_width x 1242 src/xmenu.c XtVaGetValues (f->output_data.x->column_widget, x 1296 src/xmenu.c menubar_widget = f->output_data.x->menubar_widget; x 1317 src/xmenu.c if (f->output_data.x->widget) x 1318 src/xmenu.c XtVaGetValues (f->output_data.x->widget, XtNx, &x0, XtNy, &y0, NULL); x 1321 src/xmenu.c lw_destroy_all_widgets ((LWLIB_ID) f->output_data.x->id); x 1322 src/xmenu.c f->output_data.x->menubar_widget = NULL; x 1330 src/xmenu.c if (f->output_data.x->widget) x 1333 src/xmenu.c XtVaGetValues (f->output_data.x->widget, XtNx, &x1, XtNy, &y1, NULL); x 1335 src/xmenu.c XtVaSetValues (f->output_data.x->widget, XtNx, x0, XtNy, y0, NULL); x 1400 src/xmenu.c int x; x 1415 src/xmenu.c menu_position_func (GtkMenu *menu, gint *x, gint *y, gboolean *push_in, gpointer user_data) x 1436 src/xmenu.c make_fixnum (data->x), x 1464 src/xmenu.c *x = data->x; x 1472 src/xmenu.c if (data->x + req.width > max_x) x 1473 src/xmenu.c *x -= data->x + req.width - max_x; x 1501 src/xmenu.c int x, int y, bool for_click) x 1532 src/xmenu.c x_translate_coordinates_to_root (f, x, y, &x, &y); x 1536 src/xmenu.c x /= xg_get_scale (f); x 1540 src/xmenu.c popup_x_y.x = x; x 1729 src/xmenu.c int x, int y, bool for_click) x 1746 src/xmenu.c apply_systemfont_to_menu (f, f->output_data.x->widget); x 1751 src/xmenu.c f->output_data.x->widget, true, 0, x 1763 src/xmenu.c event->x = x; x 1768 src/xmenu.c x += FRAME_LEFT_SCROLL_BAR_AREA_WIDTH (f); x 1769 src/xmenu.c x_translate_coordinates_to_root (f, x, y, &x, &y); x 1772 src/xmenu.c event->x_root = x; x 1877 src/xmenu.c x_menu_show (struct frame *f, int x, int y, int menuflags, x 2082 src/xmenu.c create_and_show_popup_menu (f, first_wv, x, y, x 2229 src/xmenu.c apply_systemfont_to_dialog (f->output_data.x->widget); x 2232 src/xmenu.c f->output_data.x->widget, true, 0, x 2552 src/xmenu.c x_menu_show (struct frame *f, int x, int y, int menuflags, x 2603 src/xmenu.c x_translate_coordinates_to_root (f, x, y, &x, &y); x 2606 src/xmenu.c x += f->left_pos; x 2710 src/xmenu.c x = min (x, dispwidth); x 2712 src/xmenu.c x = max (x, 1); x 2714 src/xmenu.c XMenuLocate (FRAME_X_DISPLAY (f), menu, 0, 0, x, y, x 2718 src/xmenu.c x -= (ulx + width) - dispwidth; x 2743 src/xmenu.c if (ulx < 0) x -= ulx; x 2751 src/xmenu.c x += width / 2; x 2803 src/xmenu.c x, y, ButtonReleaseMask, &datap, x 2793 src/xselect.c int x, y; x 2829 src/xselect.c x_relative_mouse_position (f, &x, &y); x 2831 src/xselect.c x_translate_coordinates (f, root_x, root_y, &x, &y); x 2836 src/xselect.c bufp->x = make_fixnum (x); x 1418 src/xterm.c int x, y; x 1536 src/xterm.c /* CARD16 */ uint16_t x, y; x 1590 src/xterm.c /* CARD16 */ uint16_t x, y; x 2507 src/xterm.c *((uint16_t *) &msg.xclient.data.b[8]) = dmsg->x; x 2559 src/xterm.c *((uint16_t *) &msg.xclient.data.b[8]) = dmsg->x; x 2604 src/xterm.c mmsg.x = X_SHRT_MAX; x 2683 src/xterm.c dmsg->x = *(uint16_t *) (data + 6); x 2692 src/xterm.c SWAPCARD16 (dmsg->x); x 2777 src/xterm.c dmsg->x = *(uint16_t *) (data + 6); x 2784 src/xterm.c SWAPCARD16 (dmsg->x); x 3246 src/xterm.c tem->x = dest_x; x 3252 src/xterm.c tem->x = (coordinates_reply->dst_x x 3337 src/xterm.c tem->bounding_rects[tem->n_bounding_rects].x x 3338 src/xterm.c = bounding_rect_iterator.data->x; x 3375 src/xterm.c tem->input_rects[tem->n_input_rects].x x 3376 src/xterm.c = input_rect_iterator.data->x; x 3444 src/xterm.c && tem->bounding_rects[0].x == -geometry_reply->border_width x 3449 src/xterm.c && tem->bounding_rects[0].x == -attrs.border_width x 3623 src/xterm.c int x, int y) x 3632 src/xterm.c if (x >= tem->x && y >= tem->y x 3633 src/xterm.c && x < tem->x + tem->width x 3663 src/xterm.c if (root_x > tem->x - tem->frame_extents_left x 3664 src/xterm.c && root_x < tem->x x 3670 src/xterm.c if (root_x > tem->x + tem->width x 3671 src/xterm.c && root_x < (tem->x + tem->width - 1 x 3680 src/xterm.c && root_x > tem->x - tem->frame_extents_left x 3681 src/xterm.c && root_x < (tem->x + tem->width - 1 x 3688 src/xterm.c && root_x >= tem->x - tem->frame_extents_left x 3689 src/xterm.c && root_x < (tem->x + tem->width - 1 x 3694 src/xterm.c if (root_x >= tem->x && root_y >= tem->y x 3695 src/xterm.c && root_x < tem->x + tem->width x 3709 src/xterm.c tem->border_width + root_x - tem->x, x 3715 src/xterm.c tem->border_width + root_x - tem->x, x 3967 src/xterm.c event.xbutton.x = dest_x; x 4553 src/xterm.c if (root_x >= x_dnd_mouse_rect.x x 4554 src/xterm.c && root_x < (x_dnd_mouse_rect.x x 4753 src/xterm.c dmsg.x = 0; x 4812 src/xterm.c dmsg.x = 0; x 4968 src/xterm.c XSETINT (ie.x, win_x); x 5083 src/xterm.c x_toolkit_position (struct frame *f, int x, int y, x 5092 src/xterm.c x += FRAME_TOOLBAR_LEFT_WIDTH (f); x 5095 src/xterm.c *menu_bar_p = (x >= 0 && x < FRAME_PIXEL_WIDTH (f) x 5101 src/xterm.c test_rect.x = x / scale; x 5110 src/xterm.c *menu_bar_p = (x > 0 && x < FRAME_PIXEL_WIDTH (f) x 5114 src/xterm.c && (x > 0 && x < FRAME_PIXEL_WIDTH (f) x 5217 src/xterm.c #define FRAME_CR_CONTEXT(f) ((f)->output_data.x->cr_context) x 5219 src/xterm.c ((f)->output_data.x->cr_surface_desired_width) x 5221 src/xterm.c ((f)->output_data.x->cr_surface_desired_height) x 5669 src/xterm.c int detail, double x, double y) x 5675 src/xterm.c touchpoint->x = x; x 5788 src/xterm.c cairo_rectangle (cr, gc_ext->clip_rects[i].x, x 5994 src/xterm.c cairo_surface_mark_dirty_rectangle (surface, gc_ext->clip_rects[i].x, x 6356 src/xterm.c x_fill_rectangle (struct frame *f, GC gc, int x, int y, int width, int height, x 6374 src/xterm.c cairo_rectangle (cr, x, y, width, height); x 6382 src/xterm.c cairo_rectangle (cr, x, y, width, height); x 6435 src/xterm.c &alpha, x, y, width, height); x 6440 src/xterm.c FRAME_X_PICTURE (f), 0, 0, x, y, x, y, width, height); x 6451 src/xterm.c &xc, x, y, width, height); x 6461 src/xterm.c gc, x, y, width, height); x 6467 src/xterm.c x_clear_rectangle (struct frame *f, GC gc, int x, int y, int width, int height, x 6475 src/xterm.c cairo_rectangle (cr, x, y, width, height); x 6495 src/xterm.c &xc, x, y, width, height); x 6509 src/xterm.c gc, x, y, width, height); x 6515 src/xterm.c x_draw_rectangle (struct frame *f, GC gc, int x, int y, int width, int height) x 6522 src/xterm.c cairo_rectangle (cr, x + 0.5, y + 0.5, width, height); x 6528 src/xterm.c gc, x, y, width, height); x 6539 src/xterm.c x_set_cr_source_with_gc_background (f, f->output_data.x->normal_gc, true); x 6561 src/xterm.c x_fill_trapezoid_for_relief (struct frame *f, GC gc, int x, int y, x 6568 src/xterm.c cairo_move_to (cr, top_p ? x : x + height, y); x 6569 src/xterm.c cairo_line_to (cr, x, y + height); x 6570 src/xterm.c cairo_line_to (cr, top_p ? x + width - height : x + width, y + height); x 6571 src/xterm.c cairo_line_to (cr, x + width, y); x 6586 src/xterm.c x_erase_corners_for_relief (struct frame *f, GC gc, int x, int y, x 6601 src/xterm.c xm = x - margin, xc = xm + radius; x 6603 src/xterm.c xm = x + width + margin, xc = xm - radius; x 6613 src/xterm.c cairo_rectangle (cr, x, y, width, height); x 6619 src/xterm.c x_draw_horizontal_wave (struct frame *f, GC gc, int x, int y, x 6628 src/xterm.c cairo_rectangle (cr, x, y, width, height); x 6631 src/xterm.c if (x >= 0) x 6633 src/xterm.c xoffset = x % (wave_length * 2); x 6638 src/xterm.c xoffset = x % (wave_length * 2) + wave_length * 2; x 6648 src/xterm.c cairo_move_to (cr, x - xoffset + 0.5, y + 0.5); x 6678 src/xterm.c struct x_output *x = f->output_data.x; x 6679 src/xterm.c Window win = None, wi = x->parent_desc; x 7203 src/xterm.c x_draw_vertical_window_border (struct window *w, int x, int y0, int y1) x 7210 src/xterm.c XSetForeground (FRAME_X_DISPLAY (f), f->output_data.x->normal_gc, x 7214 src/xterm.c x_fill_rectangle (f, f->output_data.x->normal_gc, x, y0, 1, y1 - y0, false); x 7217 src/xterm.c f->output_data.x->normal_gc, x, y0, x, y1); x 7245 src/xterm.c XSetForeground (display, f->output_data.x->normal_gc, color_first); x 7246 src/xterm.c x_fill_rectangle (f, f->output_data.x->normal_gc, x 7248 src/xterm.c XSetForeground (display, f->output_data.x->normal_gc, color); x 7249 src/xterm.c x_fill_rectangle (f, f->output_data.x->normal_gc, x 7251 src/xterm.c XSetForeground (display, f->output_data.x->normal_gc, color_last); x 7252 src/xterm.c x_fill_rectangle (f, f->output_data.x->normal_gc, x 7259 src/xterm.c XSetForeground (display, f->output_data.x->normal_gc, color_first); x 7260 src/xterm.c x_fill_rectangle (f, f->output_data.x->normal_gc, x 7262 src/xterm.c XSetForeground (display, f->output_data.x->normal_gc, color); x 7263 src/xterm.c x_fill_rectangle (f, f->output_data.x->normal_gc, x 7265 src/xterm.c XSetForeground (display, f->output_data.x->normal_gc, color_last); x 7266 src/xterm.c x_fill_rectangle (f, f->output_data.x->normal_gc, x 7273 src/xterm.c XSetForeground (display, f->output_data.x->normal_gc, color); x 7274 src/xterm.c x_fill_rectangle (f, f->output_data.x->normal_gc, x 7475 src/xterm.c GC gc = f->output_data.x->normal_gc; x 7542 src/xterm.c GC gc = f->output_data.x->normal_gc; x 7566 src/xterm.c GC gc = f->output_data.x->normal_gc; x 7606 src/xterm.c : f->output_data.x->cursor_pixel) x 7620 src/xterm.c p->wd, p->h, p->x, p->y, p->overlay_p); x 7668 src/xterm.c : f->output_data.x->cursor_pixel) x 7691 src/xterm.c attrs.clip_x_origin = p->x; x 7702 src/xterm.c gcv.clip_x_origin = p->x; x 7714 src/xterm.c 0, 0, 0, 0, p->x, p->y, p->wd, p->h); x 7722 src/xterm.c p->wd, p->h, p->x, p->y); x 7998 src/xterm.c s->gc = s->f->output_data.x->cursor_gc; x 8006 src/xterm.c xgcv.background = s->f->output_data.x->cursor_pixel; x 8013 src/xterm.c xgcv.foreground = s->f->output_data.x->cursor_foreground_pixel; x 8160 src/xterm.c r.x = src->x; x 8208 src/xterm.c x_clear_glyph_string_rect (struct glyph_string *s, int x, int y, int w, int h) x 8210 src/xterm.c x_clear_rectangle (s->f, s->gc, x, y, w, h, s->hl != DRAW_CURSOR); x 8216 src/xterm.c x_clear_point (struct frame *f, GC gc, int x, int y, x 8227 src/xterm.c x_clear_rectangle (f, gc, x, y, 1, 1, true); x 8233 src/xterm.c XDrawPoint (dpy, FRAME_X_DRAWABLE (f), gc, x, y); x 8260 src/xterm.c x_fill_rectangle (s->f, s->gc, s->x, x 8278 src/xterm.c x_clear_glyph_string_rect (s, s->x, s->y + box_line_width, x 8292 src/xterm.c int i, x; x 8298 src/xterm.c x = s->x + max (s->face->box_vertical_line_width, 0); x 8300 src/xterm.c x = s->x; x 8310 src/xterm.c s->gc, x, s->y, g->pixel_width - 1, x 8312 src/xterm.c x += g->pixel_width; x 8332 src/xterm.c font->driver->draw (s, 0, s->nchars, x, y, false); x 8334 src/xterm.c font->driver->draw (s, 0, s->nchars, x, y, true); x 8336 src/xterm.c font->driver->draw (s, 0, s->nchars, x + 1, y, false); x 8356 src/xterm.c x_fill_rectangle (s->f, s->gc, s->x, x 8364 src/xterm.c x_clear_glyph_string_rect (s, s->x, s->y + box_line_width, x 8372 src/xterm.c s->gc, x, s->y, g->pixel_width - 1, x 8374 src/xterm.c x += g->pixel_width; x 8386 src/xterm.c int i, j, x; x 8393 src/xterm.c x = s->x + max (s->face->box_vertical_line_width, 0); x 8395 src/xterm.c x = s->x; x 8407 src/xterm.c x_draw_rectangle (s->f, s->gc, x, s->y, x 8425 src/xterm.c int xx = x + s->cmp->offsets[j * 2]; x 8451 src/xterm.c font->driver->draw (s, j, i, x, y, false); x 8453 src/xterm.c font->driver->draw (s, j, i, x + 1, y, false); x 8454 src/xterm.c x += width; x 8459 src/xterm.c font->driver->draw (s, i, i + 1, x + xoff, y + yoff, false); x 8461 src/xterm.c font->driver->draw (s, i, i + 1, x + xoff + 1, y + yoff, x 8463 src/xterm.c x += wadjust; x 8470 src/xterm.c font->driver->draw (s, j, i, x, y, false); x 8472 src/xterm.c font->driver->draw (s, j, i, x + 1, y, false); x 8484 src/xterm.c x_draw_rectangle (s->f, s->gc, x, s->y, x 8498 src/xterm.c int x, i, j; x 8504 src/xterm.c x = s->x + max (s->face->box_vertical_line_width, 0); x 8506 src/xterm.c x = s->x; x 8555 src/xterm.c x + glyph->slice.glyphless.upper_xoff, x 8559 src/xterm.c x + glyph->slice.glyphless.lower_xoff, x 8565 src/xterm.c x, s->ybase - glyph->ascent, x 8568 src/xterm.c x += glyph->pixel_width; x 8606 src/xterm.c && f->output_data.x->widget == widget) x 9081 src/xterm.c int x; x 9100 src/xterm.c for (x = 1; x < no_cells; x++) x 9102 src/xterm.c trial_delta = ((((color->red >> 8) - (cells[x].red >> 8)) x 9103 src/xterm.c * ((color->red >> 8) - (cells[x].red >> 8))) x 9104 src/xterm.c + (((color->green >> 8) - (cells[x].green >> 8)) x 9105 src/xterm.c * ((color->green >> 8) - (cells[x].green >> 8))) x 9106 src/xterm.c + (((color->blue >> 8) - (cells[x].blue >> 8)) x 9107 src/xterm.c * ((color->blue >> 8) - (cells[x].blue >> 8)))); x 9117 src/xterm.c temp.red = cells[x].red; x 9118 src/xterm.c temp.green = cells[x].green; x 9119 src/xterm.c temp.blue = cells[x].blue; x 9125 src/xterm.c nearest = x; x 9356 src/xterm.c struct x_output *di = f->output_data.x; x 9399 src/xterm.c struct x_output *di = s->f->output_data.x; x 9444 src/xterm.c x_make_point (int x, int y) x 9448 src/xterm.c pt.x = x; x 9455 src/xterm.c x_inside_rect_p (XRectangle *rects, int nrects, int x, int y) x 9461 src/xterm.c if (x >= rects[i].x && y >= rects[i].y x 9462 src/xterm.c && x < rects[i].x + rects[i].width x 9492 src/xterm.c top_left_gc = f->output_data.x->white_relief.gc; x 9493 src/xterm.c bottom_right_gc = f->output_data.x->black_relief.gc; x 9497 src/xterm.c top_left_gc = f->output_data.x->black_relief.gc; x 9498 src/xterm.c bottom_right_gc = f->output_data.x->white_relief.gc; x 9568 src/xterm.c white_gc = f->output_data.x->white_relief.gc; x 9569 src/xterm.c black_gc = f->output_data.x->black_relief.gc; x 9570 src/xterm.c normal_gc = f->output_data.x->normal_gc; x 9759 src/xterm.c left_x = s->x; x 9762 src/xterm.c : min (last_x, s->x + s->background_width) - 1); x 9852 src/xterm.c int x = s->x; x 9859 src/xterm.c && s->slice.x == 0) x 9860 src/xterm.c x += max (s->face->box_vertical_line_width, 0); x 9864 src/xterm.c if (s->slice.x == 0) x 9865 src/xterm.c x += s->img->hmargin; x 9874 src/xterm.c s->slice.x, s->slice.y, s->slice.width, s->slice.height, x 9875 src/xterm.c x, y, true); x 9887 src/xterm.c x_draw_rectangle (s->f, s->gc, x - relief, y - relief, x 9910 src/xterm.c xgcv.clip_x_origin = x; x 9916 src/xterm.c image_rect.x = x; x 9925 src/xterm.c s->slice.x + r.x - x, s->slice.y + r.y - y, x 9926 src/xterm.c r.x, r.y, r.width, r.height); x 9933 src/xterm.c image_rect.x = x; x 9942 src/xterm.c s->slice.x + r.x - x, x 9944 src/xterm.c r.x, r.y, r.width, r.height); x 9956 src/xterm.c x - relief, y - relief, x 9965 src/xterm.c x_draw_rectangle (s->f, s->gc, x, y, x 9979 src/xterm.c int x = s->x; x 9986 src/xterm.c && s->slice.x == 0) x 9987 src/xterm.c x += max (s->face->box_vertical_line_width, 0); x 9991 src/xterm.c if (s->slice.x == 0) x 9992 src/xterm.c x += s->img->hmargin; x 10015 src/xterm.c x1 = x + s->slice.width - 1; x 10047 src/xterm.c if (s->slice.x == 0) x 10048 src/xterm.c x -= thick + extra_x, left_p = true; x 10051 src/xterm.c if (s->slice.x + s->slice.width == s->img->width) x 10058 src/xterm.c x_draw_relief_rect (s->f, x, y, x1, y1, thick, thick, raised_p, x 10069 src/xterm.c int x = 0; x 10076 src/xterm.c && s->slice.x == 0) x 10077 src/xterm.c x += max (s->face->box_vertical_line_width, 0); x 10081 src/xterm.c if (s->slice.x == 0) x 10082 src/xterm.c x += s->img->hmargin; x 10103 src/xterm.c xgcv.clip_x_origin = x - s->slice.x; x 10112 src/xterm.c s->slice.x, s->slice.y, x, y, x 10119 src/xterm.c s->slice.x, s->slice.y, x 10120 src/xterm.c s->slice.width, s->slice.height, x, y); x 10131 src/xterm.c x_draw_rectangle (s->f, s->gc, x - r, y - r, x 10139 src/xterm.c x_draw_rectangle (s->f, s->gc, x, y, x 10149 src/xterm.c x_draw_glyph_string_bg_rect (struct glyph_string *s, int x, int y, int w, int h) x 10157 src/xterm.c x_fill_rectangle (s->f, s->gc, x, y, w, h, true); x 10161 src/xterm.c x_clear_glyph_string_rect (s, x, y, w, h); x 10232 src/xterm.c XSetTSOrigin (display, s->gc, - s->x, - s->y); x 10275 src/xterm.c int x = s->x; x 10280 src/xterm.c && s->slice.x == 0) x 10282 src/xterm.c x += box_line_hwidth; x 10289 src/xterm.c x_draw_glyph_string_bg_rect (s, x, y, width, height); x 10302 src/xterm.c 0, 0, s->background_width, s->height, s->x, s->y); x 10330 src/xterm.c int x = s->x; x 10336 src/xterm.c if (x < left_x) x 10338 src/xterm.c background_width -= left_x - x; x 10339 src/xterm.c x = left_x; x 10348 src/xterm.c if (x + background_width > right_x) x 10349 src/xterm.c background_width -= x - right_x; x 10350 src/xterm.c x += background_width; x 10354 src/xterm.c x -= width; x 10357 src/xterm.c x_draw_glyph_string_bg_rect (s, x, s->y, width, s->height); x 10369 src/xterm.c x += width; x 10371 src/xterm.c x = s->x; x 10388 src/xterm.c x_fill_rectangle (s->f, gc, x, y, w, h, true); x 10398 src/xterm.c x_fill_rectangle (s->f, gc, x, y, w, h, true); x 10408 src/xterm.c int x = s->x, text_left_x = window_box_left (s->w, TEXT_AREA); x 10413 src/xterm.c && x < text_left_x && !s->row->mode_line_p) x 10415 src/xterm.c background_width -= text_left_x - x; x 10416 src/xterm.c x = text_left_x; x 10423 src/xterm.c x_draw_glyph_string_bg_rect (s, x, s->y, x 10470 src/xterm.c x_draw_horizontal_wave (s->f, s->gc, s->x, s->ybase - wave_height + 3, x 10479 src/xterm.c x0 = s->x; x 10486 src/xterm.c wave_clip.x = x0; x 10643 src/xterm.c && area_max_x < (s->x + decoration_width - 1)) x 10644 src/xterm.c decoration_width -= (s->x + decoration_width - 1) - area_max_x; x 10753 src/xterm.c s->x, y, decoration_width, thickness, x 10762 src/xterm.c s->x, y, decoration_width, thickness, x 10774 src/xterm.c x_fill_rectangle (s->f, s->gc, s->x, s->y + dy, x 10782 src/xterm.c x_fill_rectangle (s->f, s->gc, s->x, s->y + dy, x 10804 src/xterm.c x_fill_rectangle (s->f, s->gc, s->x, glyph_y + dy, x 10812 src/xterm.c x_fill_rectangle (s->f, s->gc, s->x, glyph_y + dy, x 10824 src/xterm.c && prev->x + prev->width + prev->right_overhang > s->x) x 10849 src/xterm.c && next->x - next->left_overhang < s->x + s->width) x 10886 src/xterm.c x_shift_glyphs_for_insert (struct frame *f, int x, int y, int width, int height, int shift_by) x 10892 src/xterm.c f->output_data.x->normal_gc, x 10893 src/xterm.c x, y, width, height, x 10894 src/xterm.c x + shift_by, y); x 10913 src/xterm.c int x, int y, int width, int height, int exposures) x 10916 src/xterm.c XClearArea (dpy, window, x, y, width, height, exposures); x 10921 src/xterm.c x_clear_area (struct frame *f, int x, int y, int width, int height) x 10929 src/xterm.c x_set_cr_source_with_gc_background (f, f->output_data.x->normal_gc, x 10931 src/xterm.c cairo_rectangle (cr, x, y, width, height); x 10952 src/xterm.c GC gc = f->output_data.x->normal_gc; x 10958 src/xterm.c &xc, x, y, width, height); x 10966 src/xterm.c f->output_data.x->reverse_gc, x 10967 src/xterm.c x, y, width, height); x 10972 src/xterm.c x, y, width, height, False); x 11007 src/xterm.c struct x_output *x = FRAME_X_OUTPUT (f); x 11019 src/xterm.c if (x->widget) x 11024 src/xterm.c x->hourglass_p = true; x 11026 src/xterm.c if (!x->hourglass_window) x 11036 src/xterm.c attrs.cursor = x->hourglass_cursor; x 11038 src/xterm.c x->hourglass_window = XCreateWindow x 11042 src/xterm.c uint32_t cursor = (uint32_t) x->hourglass_cursor; x 11048 src/xterm.c x->hourglass_window x 11053 src/xterm.c (xcb_window_t) x->hourglass_window, x 11063 src/xterm.c XMapRaised (dpy, x->hourglass_window); x 11070 src/xterm.c (xcb_window_t) x->hourglass_window, x 11073 src/xterm.c (xcb_window_t) x->hourglass_window); x 11085 src/xterm.c struct x_output *x = FRAME_X_OUTPUT (f); x 11088 src/xterm.c if (x->hourglass_window) x 11091 src/xterm.c XUnmapWindow (FRAME_X_DISPLAY (f), x->hourglass_window); x 11097 src/xterm.c (xcb_window_t) x->hourglass_window); x 11100 src/xterm.c x->hourglass_p = false; x 11262 src/xterm.c int x, y, width, height, from_y, to_y, bottom_y; x 11267 src/xterm.c window_box (w, ANY_AREA, &x, &y, &width, &height); x 11320 src/xterm.c r1.x = w->pixel_left; x 11373 src/xterm.c XMoveResizeWindow (dpy, child, view->x + view->clip_left, x 11394 src/xterm.c f->output_data.x->normal_gc); x 11410 src/xterm.c f->output_data.x->normal_gc, x 11411 src/xterm.c x, from_y, x 11413 src/xterm.c x, to_y); x 11414 src/xterm.c cairo_surface_mark_dirty_rectangle (surface, x, to_y, width, height); x 11423 src/xterm.c (xcb_gcontext_t) XGContextFromGC (f->output_data.x->normal_gc), x 11424 src/xterm.c x, from_y, x, to_y, width, height); x 11425 src/xterm.c cairo_surface_mark_dirty_rectangle (surface, x, to_y, width, height); x 11435 src/xterm.c cairo_set_source_surface (cr, surface, -x, -from_y); x 11441 src/xterm.c cairo_set_source_surface (cr, s, x, to_y); x 11443 src/xterm.c cairo_rectangle (cr, x, to_y, width, height); x 11453 src/xterm.c f->output_data.x->normal_gc, x 11454 src/xterm.c x, from_y, x 11456 src/xterm.c x, to_y); x 11486 src/xterm.c f->output_data.x->border_pixel); x 11509 src/xterm.c f->output_data.x->border_tile); x 11670 src/xterm.c f->output_data.x->current_cursor); x 11710 src/xterm.c frame->output_data.x->focus_state |= state; x 11730 src/xterm.c frame->output_data.x->focus_state &= ~state; x 11741 src/xterm.c if (!frame->output_data.x->focus_state) x 11786 src/xterm.c if (f->output_data.x->hourglass_window == wdesc) x 11789 src/xterm.c if ((f->output_data.x->edit_widget x 11790 src/xterm.c && XtWindow (f->output_data.x->edit_widget) == wdesc) x 11792 src/xterm.c || (!f->output_data.x->edit_widget x 11794 src/xterm.c || f->output_data.x->icon_desc == wdesc) x 11798 src/xterm.c if (f->output_data.x->edit_widget) x 11801 src/xterm.c struct x_output *x = f->output_data.x; x 11802 src/xterm.c if (gwdesc != 0 && gwdesc == x->edit_widget) x 11807 src/xterm.c || f->output_data.x->icon_desc == wdesc) x 11888 src/xterm.c struct x_output *x; x 11908 src/xterm.c x = f->output_data.x; x 11909 src/xterm.c if (x->hourglass_window == wdesc) x 11911 src/xterm.c else if (x->widget) x 11916 src/xterm.c && gtk_widget_get_toplevel (gwdesc) == x->widget) x 11919 src/xterm.c if (wdesc == XtWindow (x->widget) x 11920 src/xterm.c || wdesc == XtWindow (x->column_widget) x 11921 src/xterm.c || wdesc == XtWindow (x->edit_widget)) x 11924 src/xterm.c else if (lw_window_is_in_menubar (wdesc, x->menubar_widget)) x 11955 src/xterm.c struct x_output *x; x 11965 src/xterm.c x = f->output_data.x; x 11967 src/xterm.c if (x->menubar_widget && xg_event_is_for_menubar (f, event)) x 11971 src/xterm.c if (x->menubar_widget x 11972 src/xterm.c && lw_window_is_in_menubar (wdesc, x->menubar_widget)) x 11987 src/xterm.c struct x_output *x; x 11997 src/xterm.c x = f->output_data.x; x 11999 src/xterm.c if (x->widget) x 12004 src/xterm.c if (gwdesc == x->widget) x 12007 src/xterm.c if (wdesc == XtWindow (x->widget)) x 12194 src/xterm.c dmsg.x = 0; x 12255 src/xterm.c Lisp_Object frame_object, x, y, frame, local_value; x 12616 src/xterm.c XSETINT (x, x_dnd_movement_x); x 12635 src/xterm.c Fposn_at_x_y (x, y, frame_object, Qnil)); x 12650 src/xterm.c XSETINT (x, x_dnd_wheel_x); x 12669 src/xterm.c Fposn_at_x_y (x, y, frame_object, Qnil), x 13455 src/xterm.c = focus_frame ? focus_frame->output_data.x->focus_state : 0; x 13906 src/xterm.c x_translate_coordinates_to_root (struct frame *f, int x, int y, x 13917 src/xterm.c *x_out = x + output->root_x; x 13927 src/xterm.c x, y, x_out, y_out, &dummy)) x 13933 src/xterm.c output->root_x = *x_out - x; x 14136 src/xterm.c int x = event->x; x 14155 src/xterm.c &x, &y); x 14157 src/xterm.c XSETINT (result->x, x); x 14195 src/xterm.c dpyinfo->last_mouse_motion_x = event->x; x 14212 src/xterm.c || event->x < r->x || event->x >= r->x + r->width x 14218 src/xterm.c note_mouse_highlight (frame, event->x, event->y); x 14220 src/xterm.c remember_mouse_glyph (frame, event->x, event->y, r); x 14276 src/xterm.c if (rc && parent_x >= attrs.x x 14278 src/xterm.c && parent_x < attrs.x + attrs.width x 14282 src/xterm.c cx = parent_x - attrs.x; x 14306 src/xterm.c enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y, x 14325 src/xterm.c x, y, timestamp); x 14328 src/xterm.c x, y, timestamp); x 14401 src/xterm.c XSETINT (*x, win_x); x 14414 src/xterm.c *x = make_fixnum (dpyinfo->last_mouse_motion_x); x 14454 src/xterm.c enum scroll_bar_part *part, Lisp_Object *x, Lisp_Object *y, x 14474 src/xterm.c x_fast_mouse_position (fp, insist, bar_window, part, x, x 14486 src/xterm.c x_horizontal_scroll_bar_report_motion (fp, bar_window, part, x, y, timestamp); x 14488 src/xterm.c x_scroll_bar_report_motion (fp, bar_window, part, x, y, timestamp); x 14643 src/xterm.c && f1->output_data.x->menubar_widget x 14644 src/xterm.c && win == XtWindow (f1->output_data.x->menubar_widget)) x 14692 src/xterm.c XSETINT (*x, win_x); x 14740 src/xterm.c XSETINT (*x, win_x); x 14845 src/xterm.c Widget menu_bar = XFRAME (frame)->output_data.x->menubar_widget; x 15116 src/xterm.c ievent->x = make_fixnum (event->xclient.data.l[3]); x 15151 src/xterm.c ievent->x = make_fixnum (event->xclient.data.l[3]); x 15551 src/xterm.c pixel = f->output_data.x->scroll_bar_foreground_pixel; x 15558 src/xterm.c pixel = f->output_data.x->scroll_bar_background_pixel; x 15565 src/xterm.c widget = XmCreateScrollBar (f->output_data.x->edit_widget, x 15590 src/xterm.c f->output_data.x->nontext_cursor); x 15610 src/xterm.c pixel = f->output_data.x->scroll_bar_foreground_pixel; x 15617 src/xterm.c pixel = f->output_data.x->scroll_bar_background_pixel; x 15627 src/xterm.c if (f->output_data.x->scroll_bar_top_shadow_pixel == -1) x 15629 src/xterm.c pixel = f->output_data.x->scroll_bar_background_pixel; x 15636 src/xterm.c f->output_data.x->scroll_bar_top_shadow_pixel = pixel; x 15639 src/xterm.c if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1) x 15641 src/xterm.c pixel = f->output_data.x->scroll_bar_background_pixel; x 15648 src/xterm.c f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel; x 15654 src/xterm.c if (f->output_data.x->scroll_bar_top_shadow_pixel == -1 x 15655 src/xterm.c || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1) x 15676 src/xterm.c pixel = f->output_data.x->scroll_bar_top_shadow_pixel; x 15682 src/xterm.c pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel; x 15692 src/xterm.c f->output_data.x->edit_widget, av, ac); x 15759 src/xterm.c pixel = f->output_data.x->scroll_bar_foreground_pixel; x 15766 src/xterm.c pixel = f->output_data.x->scroll_bar_background_pixel; x 15773 src/xterm.c widget = XmCreateScrollBar (f->output_data.x->edit_widget, x 15798 src/xterm.c f->output_data.x->nontext_cursor); x 15818 src/xterm.c pixel = f->output_data.x->scroll_bar_foreground_pixel; x 15825 src/xterm.c pixel = f->output_data.x->scroll_bar_background_pixel; x 15835 src/xterm.c if (f->output_data.x->scroll_bar_top_shadow_pixel == -1) x 15837 src/xterm.c pixel = f->output_data.x->scroll_bar_background_pixel; x 15844 src/xterm.c f->output_data.x->scroll_bar_top_shadow_pixel = pixel; x 15847 src/xterm.c if (f->output_data.x->scroll_bar_bottom_shadow_pixel == -1) x 15849 src/xterm.c pixel = f->output_data.x->scroll_bar_background_pixel; x 15856 src/xterm.c f->output_data.x->scroll_bar_bottom_shadow_pixel = pixel; x 15862 src/xterm.c if (f->output_data.x->scroll_bar_top_shadow_pixel == -1 x 15863 src/xterm.c || f->output_data.x->scroll_bar_bottom_shadow_pixel == -1) x 15884 src/xterm.c pixel = f->output_data.x->scroll_bar_top_shadow_pixel; x 15890 src/xterm.c pixel = f->output_data.x->scroll_bar_bottom_shadow_pixel; x 15900 src/xterm.c f->output_data.x->edit_widget, av, ac); x 16318 src/xterm.c gc = f->output_data.x->normal_gc; x 16359 src/xterm.c if (f->output_data.x->scroll_bar_background_pixel != -1) x 16361 src/xterm.c f->output_data.x->scroll_bar_background_pixel); x 16376 src/xterm.c if (f->output_data.x->scroll_bar_foreground_pixel != -1) x 16378 src/xterm.c f->output_data.x->scroll_bar_foreground_pixel); x 16392 src/xterm.c if (f->output_data.x->scroll_bar_background_pixel != -1) x 16394 src/xterm.c f->output_data.x->scroll_bar_background_pixel); x 16409 src/xterm.c if (f->output_data.x->scroll_bar_foreground_pixel != -1) x 16528 src/xterm.c wc.x = left; x 16663 src/xterm.c wc.x = left; x 16862 src/xterm.c int x, y, width, height; x 16869 src/xterm.c x = event->xgraphicsexpose.x; x 16876 src/xterm.c x = event->xexpose.x; x 16882 src/xterm.c rect.x = x; x 16900 src/xterm.c scroll_bar_rect.x = b->left; x 16920 src/xterm.c GC gc = f->output_data.x->normal_gc; x 16922 src/xterm.c if (f->output_data.x->scroll_bar_background_pixel != -1) x 16924 src/xterm.c f->output_data.x->scroll_bar_background_pixel); x 16938 src/xterm.c if (f->output_data.x->scroll_bar_foreground_pixel != -1) x 16940 src/xterm.c f->output_data.x->scroll_bar_foreground_pixel); x 16947 src/xterm.c if (f->output_data.x->scroll_bar_foreground_pixel != -1) x 16966 src/xterm.c int left_range, x, top_range, y; x 16996 src/xterm.c x = event->xbutton.x - HORIZONTAL_SCROLL_BAR_LEFT_BORDER; x 16998 src/xterm.c if (x < 0) x = 0; x 16999 src/xterm.c if (x > left_range) x = left_range; x 17001 src/xterm.c if (x < bar->start) x 17003 src/xterm.c else if (x < bar->end + HORIZONTAL_SCROLL_BAR_MIN_HANDLE) x 17020 src/xterm.c XSETINT (emacs_event->x, left_range); x 17021 src/xterm.c XSETINT (emacs_event->y, x); x 17051 src/xterm.c XSETINT (emacs_event->x, y); x 17097 src/xterm.c enum scroll_bar_part *part, Lisp_Object *x, x 17149 src/xterm.c XSETINT (*x, win_y); x 17166 src/xterm.c enum scroll_bar_part *part, Lisp_Object *x, x 17219 src/xterm.c XSETINT (*x, left_range); x 17239 src/xterm.c GC gc = f->output_data.x->normal_gc; x 17241 src/xterm.c if (f->output_data.x->scroll_bar_background_pixel != -1) x 17243 src/xterm.c f->output_data.x->scroll_bar_background_pixel); x 17527 src/xterm.c configure.xconfigure.x = event->configure.x; x 17887 src/xterm.c dmsg.x = root_x; x 17919 src/xterm.c dsmsg.x = 0; x 18173 src/xterm.c *x_out = dmsg.x; x 18187 src/xterm.c *x_out = smsg.x; x 18256 src/xterm.c f->output_data.x->has_been_visible = true; x 18444 src/xterm.c x_dnd_mouse_rect.x = (r1 & 0xffff0000) >> 16; x 18488 src/xterm.c && (root_x >= x_dnd_mouse_rect.x x 18489 src/xterm.c && root_x < (x_dnd_mouse_rect.x x 18825 src/xterm.c _XEditResCheckMessages (f->output_data.x->widget, x 19099 src/xterm.c f->output_data.x->has_been_visible = true; x 19287 src/xterm.c f->output_data.x->parent_desc = event->xreparent.parent; x 19359 src/xterm.c f->output_data.x->has_been_visible = true; x 19373 src/xterm.c event->xexpose.x, event->xexpose.y, x 19383 src/xterm.c if (f->output_data.x->edit_widget) x 19392 src/xterm.c event->xexpose.x, event->xexpose.y, x 19395 src/xterm.c expose_frame (f, event->xexpose.x, event->xexpose.y, x 19438 src/xterm.c expose_frame (f, event->xgraphicsexpose.x, x 19604 src/xterm.c if (!f->output_data.x->has_been_visible) x 19642 src/xterm.c f->output_data.x->has_been_visible = true; x 19738 src/xterm.c event->xkey.x, event->xkey.y); x 20116 src/xterm.c xic_set_preeditarea (w, w->cursor.x, w->cursor.y); x 20192 src/xterm.c event->xcrossing.x, x 20208 src/xterm.c if (f && !f->output_data.x->hourglass_p) x 20257 src/xterm.c f->output_data.x->has_been_visible = true; x 20368 src/xterm.c event->xcrossing.x, x 20419 src/xterm.c event->xmotion.x, x 20458 src/xterm.c || event->xmotion.x < r->x x 20459 src/xterm.c || event->xmotion.x >= r->x + r->width x 20467 src/xterm.c remember_mouse_glyph (f, event->xmotion.x, x 20559 src/xterm.c dmsg.x = event->xmotion.x_root; x 20640 src/xterm.c dmsg.x = event->xmotion.x_root; x 20689 src/xterm.c &xmotion.x, &xmotion.y); x 20694 src/xterm.c (f, xmotion.x, xmotion.y, 0, false, false); x 20845 src/xterm.c tem->x = dest_x; x 21073 src/xterm.c xic_set_preeditarea (w, w->cursor.x, w->cursor.y); x 21121 src/xterm.c event->xbutton.x, event->xbutton.y, x 21159 src/xterm.c event->xbutton.x, x 21281 src/xterm.c dmsg.x = event->xbutton.x_root; x 21341 src/xterm.c event->xbutton.x, x 21409 src/xterm.c int x = event->xbutton.x; x 21412 src/xterm.c window = window_from_coordinates (f, x, y, 0, true, true); x 21418 src/xterm.c (f, x, y, event->xbutton.type == ButtonPress, x 21430 src/xterm.c int x = event->xbutton.x; x 21433 src/xterm.c window = window_from_coordinates (f, x, y, 0, true, true); x 21441 src/xterm.c (f, x, y, event->xbutton.type == ButtonPress, x 21531 src/xterm.c && event->xbutton.x >= 0 x 21532 src/xterm.c && event->xbutton.x < FRAME_PIXEL_WIDTH (f) x 21547 src/xterm.c if (!f->output_data.x->saved_menu_event) x 21548 src/xterm.c f->output_data.x->saved_menu_event = xmalloc (sizeof *event); x 21549 src/xterm.c *f->output_data.x->saved_menu_event = *event; x 21695 src/xterm.c f->output_data.x->has_been_visible = true; x 21726 src/xterm.c ev.x = lrint (enter->event_x); x 21746 src/xterm.c copy.xcrossing.x = lrint (enter->event_x); x 21814 src/xterm.c if (f && !f->output_data.x->hourglass_p) x 21836 src/xterm.c ev.x = lrint (leave->event_x); x 21876 src/xterm.c copy.xcrossing.x = lrint (leave->event_x); x 22245 src/xterm.c XSETINT (inev.ie.x, lrint (real_x)); x 22264 src/xterm.c XSETINT (inev.ie.x, lrint (real_x)); x 22283 src/xterm.c ev.x = lrint (xev->event_x); x 22300 src/xterm.c copy.xmotion.x = lrint (xev->event_x); x 22360 src/xterm.c || lrint (xev->event_x) < r->x x 22361 src/xterm.c || lrint (xev->event_x) >= r->x + r->width x 22467 src/xterm.c dmsg.x = lrint (xev->root_x); x 22553 src/xterm.c dmsg.x = lrint (xev->root_x); x 22576 src/xterm.c &ev.x, &ev.y); x 22597 src/xterm.c Lisp_Object window = window_from_coordinates (f, ev.x, ev.y, 0, false, false); x 22847 src/xterm.c dmsg.x = lrint (xev->root_x); x 22923 src/xterm.c copy.xbutton.x = lrint (xev->event_x); x 22938 src/xterm.c copy->button.x = xev->event_x; x 23020 src/xterm.c bv.x = lrint (xev->event_x); x 23115 src/xterm.c XSETINT (inev.ie.x, real_x); x 23153 src/xterm.c XSETINT (inev.ie.x, lrint (xev->event_x)); x 23172 src/xterm.c int x = bv.x; x 23175 src/xterm.c window = window_from_coordinates (f, x, y, 0, true, true); x 23181 src/xterm.c (f, x, y, xev->evtype == XI_ButtonPress, x 23193 src/xterm.c int x = bv.x; x 23196 src/xterm.c window = window_from_coordinates (f, x, y, 0, true, true); x 23211 src/xterm.c (f, x, y, xev->evtype == XI_ButtonPress, x 23358 src/xterm.c copy.xkey.x = lrint (xev->event_x); x 23413 src/xterm.c xkey.x = lrint (xev->event_x); x 23831 src/xterm.c xkey.x = lrint (xev->event_x); x 24035 src/xterm.c test_rect.x = xev->event_x / scale; x 24065 src/xterm.c XSETINT (inev.ie.x, lrint (xev->event_x)); x 24121 src/xterm.c touchpoint->x = xev->event_x; x 24135 src/xterm.c arg = Fcons (list3i (lrint (touchpoint->x), x 24175 src/xterm.c XSETINT (inev.ie.x, lrint (xev->event_x)); x 24226 src/xterm.c XSETINT (inev.ie.x, lrint (pev->event_x)); x 24266 src/xterm.c xic_set_preeditarea (w, w->cursor.x, w->cursor.y); x 24418 src/xterm.c tem->bounding_rects[tem->n_bounding_rects].x x 24419 src/xterm.c = bounding_rect_iterator.data->x; x 24453 src/xterm.c tem->input_rects[tem->n_input_rects].x x 24454 src/xterm.c = input_rect_iterator.data->x; x 24539 src/xterm.c && tem->bounding_rects[0].x == -tem->border_width x 24742 src/xterm.c struct x_display_info *dpyinfo = terminal->display_info.x; x 24903 src/xterm.c clip_rect.x = window_x; x 24921 src/xterm.c int x, y, wd, h; x 24933 src/xterm.c get_phys_cursor_geometry (w, row, cursor_glyph, &x, &y, &h); x 24938 src/xterm.c xgcv.foreground = f->output_data.x->cursor_pixel; x 24953 src/xterm.c x += cursor_glyph->pixel_width - wd; x 24959 src/xterm.c x_draw_rectangle (f, gc, x, y, wd, h - 1); x 25011 src/xterm.c if (face->background == f->output_data.x->cursor_pixel) x 25014 src/xterm.c xgcv.background = xgcv.foreground = f->output_data.x->cursor_pixel; x 25032 src/xterm.c int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x); x 25043 src/xterm.c x += cursor_glyph->pixel_width - width; x 25045 src/xterm.c x_fill_rectangle (f, gc, x, x 25052 src/xterm.c int x = WINDOW_TEXT_TO_FRAME_PIXEL_X (w, w->phys_cursor.x); x 25064 src/xterm.c x += cursor_glyph->pixel_width - w->phys_cursor_width + 1; x 25065 src/xterm.c x_fill_rectangle (f, gc, x, x 25082 src/xterm.c && f->output_data.x->current_cursor != cursor) x 25084 src/xterm.c f->output_data.x->current_cursor = cursor; x 25091 src/xterm.c x_clear_frame_area (struct frame *f, int x, int y, int width, int height) x 25093 src/xterm.c x_clear_area (f, x, y, width, height); x 25100 src/xterm.c x_draw_window_cursor (struct window *w, struct glyph_row *glyph_row, int x, x 25152 src/xterm.c xic_set_preeditarea (w, x, y); x 25171 src/xterm.c if (f->output_data.x->icon_bitmap > 0) x 25172 src/xterm.c image_destroy_bitmap (f, f->output_data.x->icon_bitmap); x 25173 src/xterm.c f->output_data.x->icon_bitmap = 0; x 25243 src/xterm.c f->output_data.x->icon_bitmap = bitmap_id; x 25267 src/xterm.c if (f->output_data.x->icon_bitmap > 0) x 25268 src/xterm.c image_destroy_bitmap (f, f->output_data.x->icon_bitmap); x 25269 src/xterm.c f->output_data.x->icon_bitmap = 0; x 25874 src/xterm.c dmsg.x = 0; x 26261 src/xterm.c XSETINT (ie.x, 0); x 26399 src/xterm.c xic_set_preeditarea (w, w->cursor.x, w->cursor.y); x 26501 src/xterm.c if (f->output_data.x->has_been_visible && !p) x 26539 src/xterm.c XtVaGetValues (f->output_data.x->column_widget, XtNheight, &height, NULL); x 26542 src/xterm.c if (f->output_data.x->has_been_visible && !p) x 27251 src/xterm.c if (f->output_data.x->parent_desc != FRAME_DISPLAY_INFO (f)->root_window) x 28079 src/xterm.c && ! f->output_data.x->asked_for_visible) x 28101 src/xterm.c f->output_data.x->asked_for_visible = true; x 28111 src/xterm.c XtMapWidget (f->output_data.x->widget); x 28140 src/xterm.c bool previously_visible = f->output_data.x->has_been_visible; x 28173 src/xterm.c int x, y; x 28186 src/xterm.c &rootw, &x, &y, &width, &height, &border, &depth); x 28189 src/xterm.c if (original_left != x || original_top != y) x 28351 src/xterm.c XtMapWidget (f->output_data.x->widget); x 28362 src/xterm.c XtWindow (f->output_data.x->widget), x 28466 src/xterm.c if (f->output_data.x->icon_desc) x 28467 src/xterm.c XDestroyWindow (FRAME_X_DISPLAY (f), f->output_data.x->icon_desc); x 28490 src/xterm.c if (f->output_data.x->widget) x 28492 src/xterm.c XtDestroyWidget (f->output_data.x->widget); x 28493 src/xterm.c f->output_data.x->widget = NULL; x 28531 src/xterm.c unload_color (f, f->output_data.x->cursor_pixel); x 28532 src/xterm.c unload_color (f, f->output_data.x->cursor_foreground_pixel); x 28533 src/xterm.c unload_color (f, f->output_data.x->border_pixel); x 28534 src/xterm.c unload_color (f, f->output_data.x->mouse_pixel); x 28536 src/xterm.c if (f->output_data.x->scroll_bar_background_pixel != -1) x 28537 src/xterm.c unload_color (f, f->output_data.x->scroll_bar_background_pixel); x 28538 src/xterm.c if (f->output_data.x->scroll_bar_foreground_pixel != -1) x 28539 src/xterm.c unload_color (f, f->output_data.x->scroll_bar_foreground_pixel); x 28542 src/xterm.c if (f->output_data.x->scroll_bar_top_shadow_pixel != -1) x 28543 src/xterm.c unload_color (f, f->output_data.x->scroll_bar_top_shadow_pixel); x 28544 src/xterm.c if (f->output_data.x->scroll_bar_bottom_shadow_pixel != -1) x 28545 src/xterm.c unload_color (f, f->output_data.x->scroll_bar_bottom_shadow_pixel); x 28547 src/xterm.c if (f->output_data.x->white_relief.pixel != -1) x 28548 src/xterm.c unload_color (f, f->output_data.x->white_relief.pixel); x 28549 src/xterm.c if (f->output_data.x->black_relief.pixel != -1) x 28550 src/xterm.c unload_color (f, f->output_data.x->black_relief.pixel); x 28555 src/xterm.c if (f->output_data.x->white_relief.gc) x 28557 src/xterm.c XFreeGC (dpyinfo->display, f->output_data.x->white_relief.gc); x 28558 src/xterm.c f->output_data.x->white_relief.gc = 0; x 28560 src/xterm.c if (f->output_data.x->black_relief.gc) x 28562 src/xterm.c XFreeGC (dpyinfo->display, f->output_data.x->black_relief.gc); x 28563 src/xterm.c f->output_data.x->black_relief.gc = 0; x 28567 src/xterm.c if (f->output_data.x->text_cursor != 0) x 28568 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->text_cursor); x 28569 src/xterm.c if (f->output_data.x->nontext_cursor != 0) x 28570 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->nontext_cursor); x 28571 src/xterm.c if (f->output_data.x->modeline_cursor != 0) x 28572 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->modeline_cursor); x 28573 src/xterm.c if (f->output_data.x->hand_cursor != 0) x 28574 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->hand_cursor); x 28575 src/xterm.c if (f->output_data.x->hourglass_cursor != 0) x 28576 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->hourglass_cursor); x 28577 src/xterm.c if (f->output_data.x->horizontal_drag_cursor != 0) x 28578 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->horizontal_drag_cursor); x 28579 src/xterm.c if (f->output_data.x->vertical_drag_cursor != 0) x 28580 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->vertical_drag_cursor); x 28581 src/xterm.c if (f->output_data.x->left_edge_cursor != 0) x 28582 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->left_edge_cursor); x 28583 src/xterm.c if (f->output_data.x->top_left_corner_cursor != 0) x 28584 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->top_left_corner_cursor); x 28585 src/xterm.c if (f->output_data.x->top_edge_cursor != 0) x 28586 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->top_edge_cursor); x 28587 src/xterm.c if (f->output_data.x->top_right_corner_cursor != 0) x 28588 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->top_right_corner_cursor); x 28589 src/xterm.c if (f->output_data.x->right_edge_cursor != 0) x 28590 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->right_edge_cursor); x 28591 src/xterm.c if (f->output_data.x->bottom_right_corner_cursor != 0) x 28592 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->bottom_right_corner_cursor); x 28593 src/xterm.c if (f->output_data.x->bottom_edge_cursor != 0) x 28594 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->bottom_edge_cursor); x 28595 src/xterm.c if (f->output_data.x->bottom_left_corner_cursor != 0) x 28596 src/xterm.c XFreeCursor (FRAME_X_DISPLAY (f), f->output_data.x->bottom_left_corner_cursor); x 28660 src/xterm.c xfree (f->output_data.x->saved_menu_event); x 28663 src/xterm.c if (f->output_data.x->preedit_chars) x 28664 src/xterm.c xfree (f->output_data.x->preedit_chars); x 28669 src/xterm.c if (f->output_data.x->xi_masks) x 28670 src/xterm.c XFree (f->output_data.x->xi_masks); x 28674 src/xterm.c if (f->output_data.x->xi_masks) x 28675 src/xterm.c xfree (f->output_data.x->xi_masks); x 28679 src/xterm.c xfree (f->output_data.x); x 28680 src/xterm.c f->output_data.x = NULL; x 28922 src/xterm.c if (f->output_data.x->widget) x 28927 src/xterm.c eassert (XtIsWMShell (f->output_data.x->widget)); x 28928 src/xterm.c shell = (WMShellWidget) f->output_data.x->widget; x 28944 src/xterm.c = widget_update_wm_size_hints (f->output_data.x->widget, x 28945 src/xterm.c f->output_data.x->edit_widget); x 28947 src/xterm.c widget_update_wm_size_hints (f->output_data.x->widget, x 28948 src/xterm.c f->output_data.x->edit_widget); x 28964 src/xterm.c size_hints.x = shell->wm.size_hints.x; x 28974 src/xterm.c size_hints.min_aspect.x = shell->wm.size_hints.min_aspect.x; x 28976 src/xterm.c size_hints.max_aspect.x = shell->wm.size_hints.max_aspect.x; x 28983 src/xterm.c XSetWMNormalHints (XtDisplay (f->output_data.x->widget), x 28984 src/xterm.c XtWindow (f->output_data.x->widget), x 28992 src/xterm.c XSetWMNormalHints (XtDisplay (f->output_data.x->widget), x 28993 src/xterm.c XtWindow (f->output_data.x->widget), x 29004 src/xterm.c size_hints.x = f->left_pos; x 29098 src/xterm.c XtSetValues (f->output_data.x->widget, al, 1); x 29102 src/xterm.c f->output_data.x->wm_hints.flags |= StateHint; x 29103 src/xterm.c f->output_data.x->wm_hints.initial_state = state; x 29105 src/xterm.c XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints); x 29121 src/xterm.c f->output_data.x->wm_hints.icon_pixmap = icon_pixmap; x 29123 src/xterm.c f->output_data.x->wm_hints.icon_mask = icon_mask; x 29144 src/xterm.c XtSetValues (f->output_data.x->widget, al, 1); x 29146 src/xterm.c XtSetValues (f->output_data.x->widget, al, 1); x 29151 src/xterm.c f->output_data.x->wm_hints.flags |= (IconPixmapHint | IconMaskHint); x 29152 src/xterm.c XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints); x 29162 src/xterm.c f->output_data.x->wm_hints.flags |= IconPositionHint; x 29163 src/xterm.c f->output_data.x->wm_hints.icon_x = icon_x; x 29164 src/xterm.c f->output_data.x->wm_hints.icon_y = icon_y; x 29166 src/xterm.c XSetWMHints (FRAME_X_DISPLAY (f), window, &f->output_data.x->wm_hints); x 30574 src/xterm.c if (t->type == output_x_window && t->display_info.x == dpyinfo) x 30758 src/xterm.c dpyinfo = terminal->display_info.x; x 30915 src/xterm.c terminal->display_info.x = dpyinfo; x 247 src/xterm.h double x, y; x 1279 src/xterm.h #define FRAME_X_OUTPUT(f) ((f)->output_data.x) x 1283 src/xterm.h #define FRAME_X_WINDOW(f) ((f)->output_data.x->window_desc) x 1287 src/xterm.h #define FRAME_X_RAW_DRAWABLE(f) ((f)->output_data.x->draw_desc) x 1303 src/xterm.h #define FRAME_X_NEED_BUFFER_FLIP(f) ((f)->output_data.x->need_buffer_flip) x 1307 src/xterm.h #define FRAME_X_COMPLETE_P(f) ((f)->output_data.x->complete) x 1312 src/xterm.h #define FRAME_OUTER_WINDOW(f) ((f)->output_data.x->widget ? \ x 1313 src/xterm.h XtWindow ((f)->output_data.x->widget) : \ x 1333 src/xterm.h #define FRAME_GTK_OUTER_WIDGET(f) ((f)->output_data.x->widget) x 1334 src/xterm.h #define FRAME_GTK_WIDGET(f) ((f)->output_data.x->edit_widget) x 1346 src/xterm.h #define FRAME_MENUBAR_HEIGHT(f) ((f)->output_data.x->menubar_height) x 1351 src/xterm.h #define FRAME_FONT(f) ((f)->output_data.x->font) x 1352 src/xterm.h #define FRAME_FONTSET(f) ((f)->output_data.x->fontset) x 1353 src/xterm.h #define FRAME_TOOLBAR_TOP_HEIGHT(f) ((f)->output_data.x->toolbar_top_height) x 1355 src/xterm.h ((f)->output_data.x->toolbar_bottom_height) x 1358 src/xterm.h #define FRAME_TOOLBAR_LEFT_WIDTH(f) ((f)->output_data.x->toolbar_left_width) x 1359 src/xterm.h #define FRAME_TOOLBAR_RIGHT_WIDTH(f) ((f)->output_data.x->toolbar_right_width) x 1362 src/xterm.h #define FRAME_BASELINE_OFFSET(f) ((f)->output_data.x->baseline_offset) x 1365 src/xterm.h #define FRAME_DISPLAY_INFO(f) ((f)->output_data.x->display_info) x 1384 src/xterm.h #define FRAME_X_PICTURE(f) ((f)->output_data.x->picture) x 1408 src/xterm.h #define FRAME_XIC(f) ((f)->output_data.x->xic) x 1411 src/xterm.h #define FRAME_XIC_STYLE(f) ((f)->output_data.x->xic_style) x 1412 src/xterm.h #define FRAME_XIC_FONTSET(f) ((f)->output_data.x->xic_xfs) x 1914 src/xterm.h ((nr).x = (rx), \ x 121 src/xwidget.c int x; x 149 src/xwidget.c lrint (event->button.x - xv->clip_left), x 155 src/xwidget.c event->button.x = new_x; x 162 src/xwidget.c lrint (event->scroll.x - xv->clip_left), x 168 src/xwidget.c event->scroll.x = new_x; x 175 src/xwidget.c lrint (event->motion.x - xv->clip_left), x 181 src/xwidget.c event->motion.x = new_x; x 189 src/xwidget.c lrint (event->crossing.x - xv->clip_left), x 195 src/xwidget.c event->crossing.x = new_x; x 720 src/xwidget.c pick_embedded_child (GdkWindow *window, double x, double y, x 736 src/xwidget.c child = find_widget_at_pos (widget, lrint (x), lrint (y), x 786 src/xwidget.c from_embedder (GdkWindow *window, double x, double y, x 804 src/xwidget.c *xout = x; x 813 src/xwidget.c *xout = x - xvw->x - xoff; x 817 src/xwidget.c *xout = x; x 823 src/xwidget.c to_embedder (GdkWindow *window, double x, double y, x 841 src/xwidget.c *xout = x; x 850 src/xwidget.c *xout = x + xvw->x + xoff; x 854 src/xwidget.c *xout = x; x 921 src/xwidget.c new_allocation.x = 0; x 938 src/xwidget.c if (new_allocation.x < 0) x 940 src/xwidget.c new_allocation.width += new_allocation.x; x 941 src/xwidget.c new_allocation.x = 0; x 950 src/xwidget.c if (new_allocation.x + new_allocation.width > twidth) x 951 src/xwidget.c new_allocation.width = twidth - new_allocation.x; x 956 src/xwidget.c new_allocation.x += tx; x 965 src/xwidget.c if ((data->x >= new_allocation.x) && (data->y >= new_allocation.y) x 966 src/xwidget.c && (data->x < new_allocation.x + new_allocation.width) x 975 src/xwidget.c new_data.x -= x_offset; x 1000 src/xwidget.c find_widget_at_pos (GtkWidget *w, int x, int y, x 1015 src/xwidget.c gtk_widget_translate_coordinates (w, grab, x, x 1023 src/xwidget.c data.x = x; x 1032 src/xwidget.c gtk_widget_translate_coordinates (w, data.data, x, x 1037 src/xwidget.c *new_x = x; x 1182 src/xwidget.c bool down_p, int x, int y, int button, x 1193 src/xwidget.c x += view->clip_left; x 1196 src/xwidget.c view_x = x; x 1199 src/xwidget.c target = find_widget_at_pos (model->widgetwindow_osr, x, y, &x, &y, x 1211 src/xwidget.c xg_event->button.x = x; x 1212 src/xwidget.c xg_event->button.x_root = x; x 1239 src/xwidget.c view_x, view_y, &x, &y, x 1255 src/xwidget.c view_y, &x, &y); x 1257 src/xwidget.c xg_event->crossing.x = x; x 1279 src/xwidget.c xg_event->crossing.x = view_y; x 1308 src/xwidget.c bool down_p, int x, int y, int button, x 1317 src/xwidget.c xwidget_button_1 (view, down_p, x, y, button, modifier_state, time); x 1326 src/xwidget.c x += view->clip_left; x 1329 src/xwidget.c target = find_widget_at_pos (model->widgetwindow_osr, x, y, &x, &y, x 1350 src/xwidget.c xg_event->scroll.x = x; x 1351 src/xwidget.c xg_event->scroll.x_root = x; x 1369 src/xwidget.c double x, double y, x 1384 src/xwidget.c lrint (x + view->clip_left), x 1391 src/xwidget.c target_x = lrint (x + view->clip_left); x 1396 src/xwidget.c x + view->clip_left, y + view->clip_top, x 1406 src/xwidget.c xg_event->motion.x = target_x; x 1421 src/xwidget.c xwidget_scroll (struct xwidget_view *view, double x, double y, x 1436 src/xwidget.c lrint (x + view->clip_left), x 1443 src/xwidget.c target_x = lrint (x); x 1451 src/xwidget.c xg_event->scroll.x = target_x; x 1453 src/xwidget.c xg_event->scroll.x_root = lrint (x); x 1477 src/xwidget.c double x = xev->event_x; x 1486 src/xwidget.c lrint (x + view->clip_left), x 1493 src/xwidget.c target_x = lrint (x); x 1500 src/xwidget.c xg_event->touchpad_pinch.x = target_x; x 1558 src/xwidget.c int x, int y, int *out_x, int *out_y) x 1566 src/xwidget.c *out_x = x; x 1579 src/xwidget.c gdk_window_coords_from_parent (l->data, x, y, &x_out, &y_out); x 1634 src/xwidget.c int x, int y, Time time, x 1651 src/xwidget.c window_coords_from_toplevel (tem, toplevel, x, y, &cx, &cy); x 1652 src/xwidget.c xg_event->crossing.x = cx; x 1673 src/xwidget.c int x, int y, Time time, x 1698 src/xwidget.c window_coords_from_toplevel (tem, toplevel, x, y, &cx, &cy); x 1699 src/xwidget.c xg_event->crossing.x = cx; x 1750 src/xwidget.c int x, int y, int crossing, x 1779 src/xwidget.c state, x, y, time, x 1793 src/xwidget.c toplevel, x, y, &cx, &cy); x 1795 src/xwidget.c xg_event->crossing.x = cx; x 1810 src/xwidget.c toplevel, state, x, y, time, x 1834 src/xwidget.c state, x, y, time, x 1861 src/xwidget.c state, x, y, time, x 1870 src/xwidget.c x, y, &cx, &cy); x 1871 src/xwidget.c xg_event->crossing.x = cx; x 1890 src/xwidget.c state, x, y, time, x 1899 src/xwidget.c x, y, &cx, &cy); x 1900 src/xwidget.c xg_event->crossing.x = cx; x 1928 src/xwidget.c int x, y, toplevel_x, toplevel_y; x 1947 src/xwidget.c ? event->xmotion.x + view->clip_left x 1948 src/xwidget.c : event->xcrossing.x + view->clip_left); x 1953 src/xwidget.c toplevel_x, toplevel_y, &x, &y, x 1971 src/xwidget.c &x, &y, true, view); x 1994 src/xwidget.c xg_event->motion.x = x; x 2012 src/xwidget.c xg_event->crossing.x = x; x 2073 src/xwidget.c xg_event->crossing.x = x; x 2134 src/xwidget.c xv->x + xv->clip_left, x 2140 src/xwidget.c xv->widget, xv->x + xv->clip_left, x 2702 src/xwidget.c int x, int y) x 2723 src/xwidget.c xv->x = x; x 2752 src/xwidget.c xv->x = x; x 2764 src/xwidget.c nsxwidget_init_view (xv, xww, s, x, y); x 2785 src/xwidget.c int x = s->x; x 2793 src/xwidget.c xv = xwidget_init_view (xww, s, x, y); x 2814 src/xwidget.c xv = xwidget_init_view (xww, s, x, y); x 2823 src/xwidget.c clip_left = max (0, text_area_x - x); x 2825 src/xwidget.c min (xww->width, text_area_x + text_area_width - x)); x 2838 src/xwidget.c bool moved = (xv->x + xv->clip_left != x + clip_left x 2844 src/xwidget.c xv->x = x; x 2865 src/xwidget.c x + clip_left, y + clip_top, x 2919 src/xwidget.c XMoveResizeWindow (xv->dpy, xv->wdesc, x + clip_left, y + clip_top, x 2928 src/xwidget.c xv->widget, x + clip_left, y + clip_top); x 2931 src/xwidget.c nsxwidget_move_view (xv, x + clip_left, y + clip_top); x 2969 src/xwidget.c xv->widget, x + clip_left, y + clip_top); x 3345 src/xwidget.c return CALLN (Fvector, make_fixnum (xv->x), make_fixnum (xv->y), x 147 src/xwidget.h int x; x 159 src/xwidget.h #define XWIDGETP(x) PSEUDOVECTORP (x, PVEC_XWIDGET) x 165 src/xwidget.h #define CHECK_XWIDGET(x) \ x 166 src/xwidget.h CHECK_TYPE (XWIDGETP (x), Qxwidgetp, x) x 168 src/xwidget.h #define CHECK_LIVE_XWIDGET(x) \ x 169 src/xwidget.h CHECK_TYPE ((XWIDGETP (x) \ x 170 src/xwidget.h && XWIDGET_LIVE_P (XXWIDGET (x))), \ x 171 src/xwidget.h Qxwidget_live_p, x) x 174 src/xwidget.h #define XWIDGET_VIEW_P(x) PSEUDOVECTORP (x, PVEC_XWIDGET_VIEW) x 178 src/xwidget.h #define CHECK_XWIDGET_VIEW(x) \ x 179 src/xwidget.h CHECK_TYPE (XWIDGET_VIEW_P (x), Qxwidget_view_p, x) x 1 test/manual/etags/c-src/c.c T f(){if(x){} x 43 test/manual/etags/c-src/c.c int x[2] __attribute__ ((packed)); x 69 test/manual/etags/c-src/c.c int x; x 78 test/manual/etags/c-src/c.c int x __attribute__ ((aligned (16))) = 0; x 79 test/manual/etags/c-src/c.c struct foo { int x[2] __attribute__ ((aligned (8))); }; x 3746 test/manual/etags/c-src/emacs/src/keyboard.c event.x = WINDOWP (window) ? window : frame; x 3763 test/manual/etags/c-src/emacs/src/keyboard.c event.x = Qnil; x 4077 test/manual/etags/c-src/emacs/src/keyboard.c window = event->x; x 4204 test/manual/etags/c-src/emacs/src/keyboard.c Lisp_Object x, y; x 4211 test/manual/etags/c-src/emacs/src/keyboard.c x = Qnil; x 4216 test/manual/etags/c-src/emacs/src/keyboard.c &part, &x, &y, &t); x 4223 test/manual/etags/c-src/emacs/src/keyboard.c if (!NILP (x) && f) x 4239 test/manual/etags/c-src/emacs/src/keyboard.c if (!NILP (x) && NILP (obj)) x 4240 test/manual/etags/c-src/emacs/src/keyboard.c obj = make_lispy_movement (f, bar_window, part, x, y, t); x 5228 test/manual/etags/c-src/emacs/src/keyboard.c make_lispy_position (struct frame *f, Lisp_Object x, Lisp_Object y, x 5238 test/manual/etags/c-src/emacs/src/keyboard.c ? window_from_coordinates (f, XINT (x), XINT (y), &part, 0) x 5253 test/manual/etags/c-src/emacs/src/keyboard.c int wx = XINT (x) - WINDOW_LEFT_EDGE_X (w); x 5261 test/manual/etags/c-src/emacs/src/keyboard.c xret = XINT (x) - window_box_left (w, TEXT_AREA); x 5381 test/manual/etags/c-src/emacs/src/keyboard.c ? (XINT (x) - window_box_left (w, TEXT_AREA)) x 5437 test/manual/etags/c-src/emacs/src/keyboard.c xret = XINT (x); x 5471 test/manual/etags/c-src/emacs/src/keyboard.c return list5 (ev->frame_or_window, type, Fcons (ev->x, ev->y), x 5640 test/manual/etags/c-src/emacs/src/keyboard.c pixel_to_glyph_coords (f, XINT (event->x), XINT (event->y), x 5678 test/manual/etags/c-src/emacs/src/keyboard.c Fcons (event->x, event->y), x 5685 test/manual/etags/c-src/emacs/src/keyboard.c position = make_lispy_position (f, event->x, event->y, x 5726 test/manual/etags/c-src/emacs/src/keyboard.c && (eabs (XINT (event->x) - last_mouse_x) <= fuzz) x 5736 test/manual/etags/c-src/emacs/src/keyboard.c last_mouse_x = XINT (event->x); x 5860 test/manual/etags/c-src/emacs/src/keyboard.c position = make_lispy_position (f, event->x, event->y, x 5904 test/manual/etags/c-src/emacs/src/keyboard.c && (eabs (XINT (event->x) - last_mouse_x) <= fuzz) x 5927 test/manual/etags/c-src/emacs/src/keyboard.c last_mouse_x = XINT (event->x); x 6032 test/manual/etags/c-src/emacs/src/keyboard.c position = make_lispy_position (f, event->x, event->y, x 6105 test/manual/etags/c-src/emacs/src/keyboard.c Lisp_Object x, Lisp_Object y, Time t) x 6116 test/manual/etags/c-src/emacs/src/keyboard.c Fcons (x, y), x 6124 test/manual/etags/c-src/emacs/src/keyboard.c position = make_lispy_position (frame, x, y, t); x 10798 test/manual/etags/c-src/emacs/src/keyboard.c (Lisp_Object x, Lisp_Object y, Lisp_Object frame_or_window, Lisp_Object whole) x 10800 test/manual/etags/c-src/emacs/src/keyboard.c CHECK_NATNUM (x); x 10810 test/manual/etags/c-src/emacs/src/keyboard.c XSETINT (x, (XINT (x) x 10821 test/manual/etags/c-src/emacs/src/keyboard.c return make_lispy_position (XFRAME (frame_or_window), x, y, 0); x 10845 test/manual/etags/c-src/emacs/src/keyboard.c Lisp_Object x = XCAR (tem); x 10849 test/manual/etags/c-src/emacs/src/keyboard.c if (XINT (x) < 0) x 10851 test/manual/etags/c-src/emacs/src/keyboard.c tem = Fposn_at_x_y (x, y, window, Qnil); x 11953 test/manual/etags/c-src/emacs/src/keyboard.c mark_object (event->x); x 333 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_CHECK_LIST_CONS(x, y) CHECK_TYPE (CONSP (x), Qlistp, y) x 334 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_CHECK_NUMBER(x) CHECK_TYPE (INTEGERP (x), Qintegerp, x) x 335 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP (x), Qsymbolp, x) x 336 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_CHECK_TYPE(ok, predicate, x) \ x 337 test/manual/etags/c-src/emacs/src/lisp.h ((ok) ? (void) 0 : (void) wrong_type_argument (predicate, x)) x 338 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_CONSP(x) (XTYPE (x) == Lisp_Cons) x 339 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_EQ(x, y) (XLI (x) == XLI (y)) x 340 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_FLOATP(x) (XTYPE (x) == Lisp_Float) x 341 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_INTEGERP(x) ((XTYPE (x) & (Lisp_Int0 | ~Lisp_Int1)) == Lisp_Int0) x 342 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_MARKERP(x) (MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Marker) x 343 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_MISCP(x) (XTYPE (x) == Lisp_Misc) x 344 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_NILP(x) EQ (x, Qnil) x 350 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_SYMBOLP(x) (XTYPE (x) == Lisp_Symbol) x 351 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_VECTORLIKEP(x) (XTYPE (x) == Lisp_Vectorlike) x 383 test/manual/etags/c-src/emacs/src/lisp.h # define CHECK_LIST_CONS(x, y) lisp_h_CHECK_LIST_CONS (x, y) x 384 test/manual/etags/c-src/emacs/src/lisp.h # define CHECK_NUMBER(x) lisp_h_CHECK_NUMBER (x) x 385 test/manual/etags/c-src/emacs/src/lisp.h # define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x) x 386 test/manual/etags/c-src/emacs/src/lisp.h # define CHECK_TYPE(ok, predicate, x) lisp_h_CHECK_TYPE (ok, predicate, x) x 387 test/manual/etags/c-src/emacs/src/lisp.h # define CONSP(x) lisp_h_CONSP (x) x 388 test/manual/etags/c-src/emacs/src/lisp.h # define EQ(x, y) lisp_h_EQ (x, y) x 389 test/manual/etags/c-src/emacs/src/lisp.h # define FLOATP(x) lisp_h_FLOATP (x) x 390 test/manual/etags/c-src/emacs/src/lisp.h # define INTEGERP(x) lisp_h_INTEGERP (x) x 391 test/manual/etags/c-src/emacs/src/lisp.h # define MARKERP(x) lisp_h_MARKERP (x) x 392 test/manual/etags/c-src/emacs/src/lisp.h # define MISCP(x) lisp_h_MISCP (x) x 393 test/manual/etags/c-src/emacs/src/lisp.h # define NILP(x) lisp_h_NILP (x) x 397 test/manual/etags/c-src/emacs/src/lisp.h # define SYMBOLP(x) lisp_h_SYMBOLP (x) x 398 test/manual/etags/c-src/emacs/src/lisp.h # define VECTORLIKEP(x) lisp_h_VECTORLIKEP (x) x 952 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_Object y), (x, y)) x 1144 test/manual/etags/c-src/emacs/src/lisp.h (int ok, Lisp_Object predicate, Lisp_Object x), x 1145 test/manual/etags/c-src/emacs/src/lisp.h (ok, predicate, x)) x 1956 test/manual/etags/c-src/emacs/src/lisp.h sxhash_combine (EMACS_UINT x, EMACS_UINT y) x 1958 test/manual/etags/c-src/emacs/src/lisp.h return (x << 4) + (x >> (BITS_PER_EMACS_INT - 4)) + y; x 1964 test/manual/etags/c-src/emacs/src/lisp.h SXHASH_REDUCE (EMACS_UINT x) x 1966 test/manual/etags/c-src/emacs/src/lisp.h return (x ^ x >> (BITS_PER_EMACS_INT - FIXNUM_BITS)) & INTMASK; x 2462 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (NILP, bool, (Lisp_Object x), (x)) x 2465 test/manual/etags/c-src/emacs/src/lisp.h NUMBERP (Lisp_Object x) x 2467 test/manual/etags/c-src/emacs/src/lisp.h return INTEGERP (x) || FLOATP (x); x 2470 test/manual/etags/c-src/emacs/src/lisp.h NATNUMP (Lisp_Object x) x 2472 test/manual/etags/c-src/emacs/src/lisp.h return INTEGERP (x) && 0 <= XINT (x); x 2476 test/manual/etags/c-src/emacs/src/lisp.h RANGED_INTEGERP (intmax_t lo, Lisp_Object x, intmax_t hi) x 2478 test/manual/etags/c-src/emacs/src/lisp.h return INTEGERP (x) && lo <= XINT (x) && XINT (x) <= hi; x 2481 test/manual/etags/c-src/emacs/src/lisp.h #define TYPE_RANGED_INTEGERP(type, x) \ x 2482 test/manual/etags/c-src/emacs/src/lisp.h (INTEGERP (x) \ x 2483 test/manual/etags/c-src/emacs/src/lisp.h && (TYPE_SIGNED (type) ? TYPE_MINIMUM (type) <= XINT (x) : 0 <= XINT (x)) \ x 2484 test/manual/etags/c-src/emacs/src/lisp.h && XINT (x) <= TYPE_MAXIMUM (type)) x 2486 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (CONSP, bool, (Lisp_Object x), (x)) x 2487 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (FLOATP, bool, (Lisp_Object x), (x)) x 2488 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (MISCP, bool, (Lisp_Object x), (x)) x 2489 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (SYMBOLP, bool, (Lisp_Object x), (x)) x 2490 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (INTEGERP, bool, (Lisp_Object x), (x)) x 2491 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (VECTORLIKEP, bool, (Lisp_Object x), (x)) x 2492 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (MARKERP, bool, (Lisp_Object x), (x)) x 2495 test/manual/etags/c-src/emacs/src/lisp.h STRINGP (Lisp_Object x) x 2497 test/manual/etags/c-src/emacs/src/lisp.h return XTYPE (x) == Lisp_String; x 2500 test/manual/etags/c-src/emacs/src/lisp.h VECTORP (Lisp_Object x) x 2502 test/manual/etags/c-src/emacs/src/lisp.h return VECTORLIKEP (x) && ! (ASIZE (x) & PSEUDOVECTOR_FLAG); x 2505 test/manual/etags/c-src/emacs/src/lisp.h OVERLAYP (Lisp_Object x) x 2507 test/manual/etags/c-src/emacs/src/lisp.h return MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Overlay; x 2510 test/manual/etags/c-src/emacs/src/lisp.h SAVE_VALUEP (Lisp_Object x) x 2512 test/manual/etags/c-src/emacs/src/lisp.h return MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Save_Value; x 2516 test/manual/etags/c-src/emacs/src/lisp.h FINALIZERP (Lisp_Object x) x 2518 test/manual/etags/c-src/emacs/src/lisp.h return MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Finalizer; x 2522 test/manual/etags/c-src/emacs/src/lisp.h AUTOLOADP (Lisp_Object x) x 2524 test/manual/etags/c-src/emacs/src/lisp.h return CONSP (x) && EQ (Qautoload, XCAR (x)); x 2625 test/manual/etags/c-src/emacs/src/lisp.h IMAGEP (Lisp_Object x) x 2627 test/manual/etags/c-src/emacs/src/lisp.h return CONSP (x) && EQ (XCAR (x), Qimage); x 2632 test/manual/etags/c-src/emacs/src/lisp.h ARRAYP (Lisp_Object x) x 2634 test/manual/etags/c-src/emacs/src/lisp.h return VECTORP (x) || STRINGP (x) || CHAR_TABLE_P (x) || BOOL_VECTOR_P (x); x 2638 test/manual/etags/c-src/emacs/src/lisp.h CHECK_LIST (Lisp_Object x) x 2640 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (CONSP (x) || NILP (x), Qlistp, x); x 2643 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN_VOID (CHECK_LIST_CONS, (Lisp_Object x, Lisp_Object y), (x, y)) x 2644 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN_VOID (CHECK_SYMBOL, (Lisp_Object x), (x)) x 2645 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN_VOID (CHECK_NUMBER, (Lisp_Object x), (x)) x 2648 test/manual/etags/c-src/emacs/src/lisp.h CHECK_STRING (Lisp_Object x) x 2650 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (STRINGP (x), Qstringp, x); x 2653 test/manual/etags/c-src/emacs/src/lisp.h CHECK_STRING_CAR (Lisp_Object x) x 2655 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (STRINGP (XCAR (x)), Qstringp, XCAR (x)); x 2658 test/manual/etags/c-src/emacs/src/lisp.h CHECK_CONS (Lisp_Object x) x 2660 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (CONSP (x), Qconsp, x); x 2663 test/manual/etags/c-src/emacs/src/lisp.h CHECK_VECTOR (Lisp_Object x) x 2665 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (VECTORP (x), Qvectorp, x); x 2668 test/manual/etags/c-src/emacs/src/lisp.h CHECK_BOOL_VECTOR (Lisp_Object x) x 2670 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (BOOL_VECTOR_P (x), Qbool_vector_p, x); x 2674 test/manual/etags/c-src/emacs/src/lisp.h CHECK_VECTOR_OR_STRING (Lisp_Object x) x 2676 test/manual/etags/c-src/emacs/src/lisp.h if (VECTORP (x)) x 2677 test/manual/etags/c-src/emacs/src/lisp.h return ASIZE (x); x 2678 test/manual/etags/c-src/emacs/src/lisp.h if (STRINGP (x)) x 2679 test/manual/etags/c-src/emacs/src/lisp.h return SCHARS (x); x 2680 test/manual/etags/c-src/emacs/src/lisp.h wrong_type_argument (Qarrayp, x); x 2683 test/manual/etags/c-src/emacs/src/lisp.h CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate) x 2685 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (ARRAYP (x), predicate, x); x 2688 test/manual/etags/c-src/emacs/src/lisp.h CHECK_BUFFER (Lisp_Object x) x 2690 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (BUFFERP (x), Qbufferp, x); x 2693 test/manual/etags/c-src/emacs/src/lisp.h CHECK_WINDOW (Lisp_Object x) x 2695 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (WINDOWP (x), Qwindowp, x); x 2699 test/manual/etags/c-src/emacs/src/lisp.h CHECK_PROCESS (Lisp_Object x) x 2701 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (PROCESSP (x), Qprocessp, x); x 2705 test/manual/etags/c-src/emacs/src/lisp.h CHECK_NATNUM (Lisp_Object x) x 2707 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (NATNUMP (x), Qwholenump, x); x 2710 test/manual/etags/c-src/emacs/src/lisp.h #define CHECK_RANGED_INTEGER(x, lo, hi) \ x 2712 test/manual/etags/c-src/emacs/src/lisp.h CHECK_NUMBER (x); \ x 2713 test/manual/etags/c-src/emacs/src/lisp.h if (! ((lo) <= XINT (x) && XINT (x) <= (hi))) \ x 2715 test/manual/etags/c-src/emacs/src/lisp.h (x, \ x 2721 test/manual/etags/c-src/emacs/src/lisp.h #define CHECK_TYPE_RANGED_INTEGER(type, x) \ x 2724 test/manual/etags/c-src/emacs/src/lisp.h CHECK_RANGED_INTEGER (x, TYPE_MINIMUM (type), TYPE_MAXIMUM (type)); \ x 2726 test/manual/etags/c-src/emacs/src/lisp.h CHECK_RANGED_INTEGER (x, 0, TYPE_MAXIMUM (type)); \ x 2729 test/manual/etags/c-src/emacs/src/lisp.h #define CHECK_NUMBER_COERCE_MARKER(x) \ x 2731 test/manual/etags/c-src/emacs/src/lisp.h if (MARKERP ((x))) \ x 2732 test/manual/etags/c-src/emacs/src/lisp.h XSETFASTINT (x, marker_position (x)); \ x 2734 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (INTEGERP (x), Qinteger_or_marker_p, x); \ x 2744 test/manual/etags/c-src/emacs/src/lisp.h CHECK_NUMBER_OR_FLOAT (Lisp_Object x) x 2746 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (FLOATP (x) || INTEGERP (x), Qnumberp, x); x 2749 test/manual/etags/c-src/emacs/src/lisp.h #define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) \ x 2751 test/manual/etags/c-src/emacs/src/lisp.h if (MARKERP (x)) \ x 2752 test/manual/etags/c-src/emacs/src/lisp.h XSETFASTINT (x, marker_position (x)); \ x 2754 test/manual/etags/c-src/emacs/src/lisp.h CHECK_TYPE (INTEGERP (x) || FLOATP (x), Qnumber_or_marker_p, x); \ x 2760 test/manual/etags/c-src/emacs/src/lisp.h CHECK_NUMBER_CAR (Lisp_Object x) x 2762 test/manual/etags/c-src/emacs/src/lisp.h Lisp_Object tmp = XCAR (x); x 2764 test/manual/etags/c-src/emacs/src/lisp.h XSETCAR (x, tmp); x 2768 test/manual/etags/c-src/emacs/src/lisp.h CHECK_NUMBER_CDR (Lisp_Object x) x 2770 test/manual/etags/c-src/emacs/src/lisp.h Lisp_Object tmp = XCDR (x); x 2772 test/manual/etags/c-src/emacs/src/lisp.h XSETCDR (x, tmp); x 3605 test/manual/etags/c-src/emacs/src/lisp.h extern Lisp_Object fmod_float (Lisp_Object x, Lisp_Object y); x 3745 test/manual/etags/c-src/emacs/src/lisp.h list2i (EMACS_INT x, EMACS_INT y) x 3747 test/manual/etags/c-src/emacs/src/lisp.h return list2 (make_number (x), make_number (y)); x 3751 test/manual/etags/c-src/emacs/src/lisp.h list3i (EMACS_INT x, EMACS_INT y, EMACS_INT w) x 3753 test/manual/etags/c-src/emacs/src/lisp.h return list3 (make_number (x), make_number (y), make_number (w)); x 3757 test/manual/etags/c-src/emacs/src/lisp.h list4i (EMACS_INT x, EMACS_INT y, EMACS_INT w, EMACS_INT h) x 3759 test/manual/etags/c-src/emacs/src/lisp.h return list4 (make_number (x), make_number (y), x 3952 test/manual/etags/c-src/emacs/src/lisp.h LOADHIST_ATTACH (Lisp_Object x) x 3955 test/manual/etags/c-src/emacs/src/lisp.h Vcurrent_load_list = Fcons (x, Vcurrent_load_list); x 4545 test/manual/etags/c-src/emacs/src/lisp.h #define eabs(x) ((x) < 0 ? -(x) : (x)) x 136 test/manual/etags/c-src/etags.c # define assert(x) ((void) 0) x 158 test/manual/etags/c-src/etags.c #define CHAR(x) ((unsigned int)(x) & (CHARS - 1)) x 57 test/manual/etags/c-src/sysdep.h #define MOVE(x,y) movl x, y x 49 test/manual/etags/cp-src/c.C int f(A<int> x) {} x 50 test/manual/etags/cp-src/c.C int A<int>::f(A<int>* x) {} x 51 test/manual/etags/cp-src/c.C A<float,B<int> > A<B<float>,int>::f(A<int>* x) {} x 53 test/manual/etags/cp-src/c.C class AU { T x; }; x 80 test/manual/etags/cp-src/c.C int x; x 49 test/manual/etags/cp-src/clheir.hpp double x, y, z; x 52 test/manual/etags/cp-src/clheir.hpp { x = xi; y = yi; z = zi; } x 58 test/manual/etags/cp-src/clheir.hpp int x, y, z; x 63 test/manual/etags/cp-src/clheir.hpp x(xi), y(yi), z(zi) x 66 test/manual/etags/cp-src/clheir.hpp void assign_neighbor(int direction, location *x) x 67 test/manual/etags/cp-src/clheir.hpp { neighbors[direction] = x; } x 12 test/manual/etags/cp-src/conway.cpp #define max(x,y) ((x > y) ? x : y) x 13 test/manual/etags/cp-src/conway.cpp #define min(x,y) ((x > y) ? y : x) x 25 test/manual/etags/cp-src/conway.cpp imin = max(0, x - 1); x 26 test/manual/etags/cp-src/conway.cpp imax = min(num_rows - 1, x + 1); x 50 test/manual/etags/cp-src/conway.cpp void glider(int x, int y) x 52 test/manual/etags/cp-src/conway.cpp field_of_play[x - 1][y + 0]->set(); x 53 test/manual/etags/cp-src/conway.cpp field_of_play[x - 1][y + 1]->set(); x 54 test/manual/etags/cp-src/conway.cpp field_of_play[x + 0][y - 1]->set(); x 55 test/manual/etags/cp-src/conway.cpp field_of_play[x + 0][y + 0]->set(); x 56 test/manual/etags/cp-src/conway.cpp field_of_play[x + 1][y + 1]->set(); x 59 test/manual/etags/cp-src/conway.cpp void traffic_light(int x, int y) x 61 test/manual/etags/cp-src/conway.cpp field_of_play[x - 1][y]->set(); x 62 test/manual/etags/cp-src/conway.cpp field_of_play[x + 0][y]->set(); x 63 test/manual/etags/cp-src/conway.cpp field_of_play[x + 1][y]->set(); x 7 test/manual/etags/cp-src/conway.hpp char x, y, alive, next_alive; x 10 test/manual/etags/cp-src/conway.hpp site(int xi, int yi): x(xi), y(yi), alive(0) { } x 10 test/manual/etags/cp-src/fail.C int x; x 11 test/manual/etags/cp-src/fail.C C(int i) {x = i;} x 12 test/manual/etags/cp-src/fail.C operator int() const {return x;} x 44 test/manual/etags/cp-src/fail.C int x; x 47 test/manual/etags/cp-src/fail.C if (d.x != 1066 || d.A::T2::T::x != 97) return 2; x 18 test/manual/etags/cp-src/screen.cpp void goto_xy(unsigned char x, unsigned char y) x 23 test/manual/etags/cp-src/screen.cpp regs.h.dl = x; x 55 test/manual/etags/cp-src/screen.cpp void write_xyc(int x, int y, char c) x 59 test/manual/etags/cp-src/screen.cpp p = SCREEN_FP(x, y); x 31 test/manual/etags/cp-src/screen.hpp #define SCREEN_FP(x,y) \ x 32 test/manual/etags/cp-src/screen.hpp ((char far *) (0xB8000000L | ((unsigned) (160 * (y) + 2 * (x))))) x 35 test/manual/etags/cp-src/screen.hpp void goto_xy(unsigned char x, unsigned char y); x 39 test/manual/etags/cp-src/screen.hpp void write_xyc(int x, int y, char c); x 127 test/manual/etags/y-src/cccp.c #define YYTRANSLATE(x) ((unsigned)(x) <= 269 ? yytranslate[x] : 39) x 359 test/manual/etags/y-src/cccp.c # define YYSTD(x) std::x x 361 test/manual/etags/y-src/cccp.c # define YYSTD(x) x x 107 test/manual/etags/y-src/parse.c #define YYTRANSLATE(x) ((unsigned)(x) <= 278 ? yytranslate[x] : 47) x 438 test/manual/etags/y-src/parse.c # define YYSTD(x) std::x x 440 test/manual/etags/y-src/parse.c # define YYSTD(x) x x 2032 test/manual/etags/y-src/parse.c #define CK_ABS_R(x) if((x)<MIN_ROW || (x)>MAX_ROW) \ x 2036 test/manual/etags/y-src/parse.c #define CK_REL_R(x) if( ((x)>0 && MAX_ROW-(x)<cur_row) \ x 2037 test/manual/etags/y-src/parse.c || ((x)<0 && MIN_ROW-(x)>cur_row)) \ x 2041 test/manual/etags/y-src/parse.c #define CK_ABS_C(x) if((x)<MIN_COL || (x)>MAX_COL) \ x 2045 test/manual/etags/y-src/parse.c #define CK_REL_C(x) if( ((x)>0 && MAX_COL-(x)<cur_col) \ x 2046 test/manual/etags/y-src/parse.c || ((x)<0 && MIN_COL-(x)>cur_col)) \ x 671 test/manual/etags/y-src/parse.y #define CK_ABS_R(x) if((x)<MIN_ROW || (x)>MAX_ROW) \ x 675 test/manual/etags/y-src/parse.y #define CK_REL_R(x) if( ((x)>0 && MAX_ROW-(x)<cur_row) \ x 676 test/manual/etags/y-src/parse.y || ((x)<0 && MIN_ROW-(x)>cur_row)) \ x 680 test/manual/etags/y-src/parse.y #define CK_ABS_C(x) if((x)<MIN_COL || (x)>MAX_COL) \ x 684 test/manual/etags/y-src/parse.y #define CK_REL_C(x) if( ((x)>0 && MAX_COL-(x)<cur_col) \ x 685 test/manual/etags/y-src/parse.y || ((x)<0 && MIN_COL-(x)>cur_col)) \ x 70 test/manual/noverlay/emacs-compat.h #define max(x,y) ((x) >= (y) ? (x) : (y)) x 73 test/manual/noverlay/emacs-compat.h #define min(x,y) ((x) <= (y) ? (x) : (y))