c 1387 lib-src/ebrowse.c int c; c 1391 lib-src/ebrowse.c while (WHITEP (GET (c))) c 1395 lib-src/ebrowse.c while (IDENTP (c)) c 1397 lib-src/ebrowse.c *p++ = c; c 1398 lib-src/ebrowse.c GET (c); c 1407 lib-src/ebrowse.c while (WHITEP (c)) c 1408 lib-src/ebrowse.c GET (c); c 1409 lib-src/ebrowse.c while (IDENTP (c)) c 1411 lib-src/ebrowse.c *p++ = c; c 1412 lib-src/ebrowse.c GET (c); c 1425 lib-src/ebrowse.c while (c && (c != '\n' || in_comment || in_string)) c 1427 lib-src/ebrowse.c if (c == '\\') c 1428 lib-src/ebrowse.c GET (c); c 1429 lib-src/ebrowse.c else if (c == '/' && !in_comment) c 1431 lib-src/ebrowse.c if (GET (c) == '*') c 1434 lib-src/ebrowse.c else if (c == '*' && in_comment) c 1436 lib-src/ebrowse.c if (GET (c) == '/') c 1439 lib-src/ebrowse.c else if (c == '"') c 1442 lib-src/ebrowse.c if (c == '\n') c 1445 lib-src/ebrowse.c GET (c); c 1448 lib-src/ebrowse.c return c; c 1457 lib-src/ebrowse.c int c; c 1463 lib-src/ebrowse.c while (WHITEP (GET (c))) c 1466 lib-src/ebrowse.c switch (c) c 1480 lib-src/ebrowse.c GET (c); c 1486 lib-src/ebrowse.c end_char = c; c 1488 lib-src/ebrowse.c while (GET (c) && c != end_char) c 1490 lib-src/ebrowse.c switch (c) c 1494 lib-src/ebrowse.c if (!GET (c)) c 1502 lib-src/ebrowse.c else switch (c) c 1521 lib-src/ebrowse.c GET (c); c 1523 lib-src/ebrowse.c if (c >= '0' && c <= '7') c 1525 lib-src/ebrowse.c else if (c >= 'a' && c <= 'f') c 1527 lib-src/ebrowse.c else if (c >= 'A' && c <= 'F') c 1544 lib-src/ebrowse.c GET (c); c 1546 lib-src/ebrowse.c if (c >= '0' && c <= '7') c 1578 lib-src/ebrowse.c if (GET (c) == '"') c 1584 lib-src/ebrowse.c if (c == '\0') \ c 1594 lib-src/ebrowse.c while (GET (c) != '(') c 1597 lib-src/ebrowse.c if (c == '"') c 1606 lib-src/ebrowse.c switch (GET (c)) c 1618 lib-src/ebrowse.c while (prefix != rstring_prefix_end && GET (c) == *prefix) c 1625 lib-src/ebrowse.c if (GET (c) == '"') c 1653 lib-src/ebrowse.c *p++ = hash = c; c 1679 lib-src/ebrowse.c switch (GET (c)) c 1682 lib-src/ebrowse.c while (GET (c)) c 1684 lib-src/ebrowse.c switch (c) c 1687 lib-src/ebrowse.c if (GET (c) == '/') c 1692 lib-src/ebrowse.c GET (c); c 1706 lib-src/ebrowse.c while (GET (c) && c != '\n') c 1710 lib-src/ebrowse.c if (c == 0) c 1723 lib-src/ebrowse.c if (GET (c) == '+') c 1725 lib-src/ebrowse.c else if (c == '=') c 1731 lib-src/ebrowse.c switch (GET (c)) c 1736 lib-src/ebrowse.c if (GET (c) == '*') c 1747 lib-src/ebrowse.c if (GET (c) == '=') c 1753 lib-src/ebrowse.c if (GET (c) == '=') c 1759 lib-src/ebrowse.c if (GET (c) == '|') c 1761 lib-src/ebrowse.c else if (c == '=') c 1767 lib-src/ebrowse.c if (GET (c) == '&') c 1769 lib-src/ebrowse.c else if (c == '=') c 1775 lib-src/ebrowse.c if (GET (c) == '=') c 1781 lib-src/ebrowse.c if (GET (c) == '*') c 1783 lib-src/ebrowse.c else if (c == '.') c 1785 lib-src/ebrowse.c if (GET (c) != '.') c 1790 lib-src/ebrowse.c else if (!DIGITP (c)) c 1798 lib-src/ebrowse.c if (GET (c) == ':') c 1804 lib-src/ebrowse.c if (GET (c) == '=') c 1810 lib-src/ebrowse.c if (GET (c) == '=') c 1816 lib-src/ebrowse.c switch (GET (c)) c 1821 lib-src/ebrowse.c if (GET (c) == '=') c 1830 lib-src/ebrowse.c switch (GET (c)) c 1835 lib-src/ebrowse.c if (GET (c) == '=') c 1844 lib-src/ebrowse.c c = process_pp_line (); c 1845 lib-src/ebrowse.c if (c == 0) c 1851 lib-src/ebrowse.c return c; c 1856 lib-src/ebrowse.c if (GET (c) == 'x' || c == 'X') c 1858 lib-src/ebrowse.c while (GET (c)) c 1860 lib-src/ebrowse.c if (DIGITP (c)) c 1861 lib-src/ebrowse.c yyival = yyival * 16 + c - '0'; c 1862 lib-src/ebrowse.c else if (c >= 'a' && c <= 'f') c 1863 lib-src/ebrowse.c yyival = yyival * 16 + c - 'a' + 10; c 1864 lib-src/ebrowse.c else if (c >= 'A' && c <= 'F') c 1865 lib-src/ebrowse.c yyival = yyival * 16 + c - 'A' + 10; c 1872 lib-src/ebrowse.c else if (c == '.') c 1875 lib-src/ebrowse.c while (c >= '0' && c <= '7') c 1877 lib-src/ebrowse.c yyival = (yyival << 3) + c - '0'; c 1878 lib-src/ebrowse.c GET (c); c 1883 lib-src/ebrowse.c while (isalpha (c)) c 1884 lib-src/ebrowse.c GET (c); c 1891 lib-src/ebrowse.c yyival = c - '0'; c 1893 lib-src/ebrowse.c while (GET (c) && DIGITP (c)) c 1894 lib-src/ebrowse.c yyival = 10 * yyival + c - '0'; c 1896 lib-src/ebrowse.c if (c != '.') c 1901 lib-src/ebrowse.c while (DIGITP (c)) c 1902 lib-src/ebrowse.c GET (c); c 1905 lib-src/ebrowse.c if (c == 'E' || c == 'e') c 1907 lib-src/ebrowse.c if (GET (c) == '-' || c == '+') c 1908 lib-src/ebrowse.c GET (c); c 1910 lib-src/ebrowse.c while (DIGITP (c)) c 1911 lib-src/ebrowse.c GET (c); c 1915 lib-src/ebrowse.c while (isalpha (c)) c 1916 lib-src/ebrowse.c GET (c); c 3708 lib-src/ebrowse.c int i = 0, c; c 3710 lib-src/ebrowse.c while ((c = getc (fp)) != EOF && c != '\n') c 3718 lib-src/ebrowse.c buffer[i++] = c; c 3721 lib-src/ebrowse.c if (c == EOF && i == 0) c 865 lib-src/emacsclient.c char c = *str; c 866 lib-src/emacsclient.c if (c == ' ') c 867 lib-src/emacsclient.c *q++ = '&', c = '_'; c 868 lib-src/emacsclient.c else if (c == '\n') c 869 lib-src/emacsclient.c *q++ = '&', c = 'n'; c 870 lib-src/emacsclient.c else if (c == '&') c 872 lib-src/emacsclient.c *q++ = c; c 890 lib-src/emacsclient.c char c; c 894 lib-src/emacsclient.c c = *p++; c 895 lib-src/emacsclient.c if (c == '&') c 897 lib-src/emacsclient.c c = *p++; c 898 lib-src/emacsclient.c if (c == '_') c 899 lib-src/emacsclient.c c = ' '; c 900 lib-src/emacsclient.c else if (c == 'n') c 901 lib-src/emacsclient.c c = '\n'; c 903 lib-src/emacsclient.c *q++ = c; c 905 lib-src/emacsclient.c while (c); c 2087 lib-src/emacsclient.c unsigned char c; c 2089 lib-src/emacsclient.c c = *++p; c 2090 lib-src/emacsclient.c while (isdigit (c) || c == ':'); c 2092 lib-src/emacsclient.c if (c == 0) c 179 lib-src/etags.c notinname (unsigned char c) c 186 lib-src/etags.c return table[c]; c 191 lib-src/etags.c begtoken (unsigned char c) c 206 lib-src/etags.c return table[c]; c 211 lib-src/etags.c intoken (unsigned char c) c 227 lib-src/etags.c return table[c]; c 232 lib-src/etags.c endtoken (unsigned char c) c 241 lib-src/etags.c return table[c]; c 2997 lib-src/etags.c int c, /* IN: first char after the token */ c 3060 lib-src/etags.c *is_func_or_var = (c == '('); c 3403 lib-src/etags.c char c; /* latest char read; '\0' for end of line */ c 3450 lib-src/etags.c c = *lp++; c 3451 lib-src/etags.c if (c == '\\') c 3462 lib-src/etags.c c = ' '; c 3466 lib-src/etags.c switch (c) c 3471 lib-src/etags.c c = *lp++; c 3485 lib-src/etags.c switch (c) c 3501 lib-src/etags.c switch (c) c 3513 lib-src/etags.c else switch (c) c 3551 lib-src/etags.c c = ' '; c 3557 lib-src/etags.c c = '\0'; c 3616 lib-src/etags.c if (c == ']') c 3618 lib-src/etags.c else if (c == '\0') c 3638 lib-src/etags.c if (endtoken (c)) c 3640 lib-src/etags.c if (c == ':' && *lp == ':' && begtoken (lp[1])) c 3649 lib-src/etags.c c = lp[-1]; c 3657 lib-src/etags.c || consider_token (newlb.buffer + tokoff, toklen, c, c 3670 lib-src/etags.c c = *lp++; c 3811 lib-src/etags.c else if (intoken (c)) c 3818 lib-src/etags.c else if (begtoken (c)) c 3866 lib-src/etags.c switch (c) c 4619 lib-src/etags.c char c; c 4663 lib-src/etags.c c = *cp; c 4666 lib-src/etags.c *cp = c; c 4670 lib-src/etags.c if (c == '"') c 5324 lib-src/etags.c char c, *name; c 5353 lib-src/etags.c c = *dbp++; c 5354 lib-src/etags.c if (c == '\0') /* if end of line */ c 5362 lib-src/etags.c c = *dbp++; /* only if don't need *dbp pointing c 5368 lib-src/etags.c if (c == '}') /* within { } comments */ c 5370 lib-src/etags.c else if (c == '*' && *dbp == ')') /* within (* *) comments */ c 5379 lib-src/etags.c if (c == '\'') c 5384 lib-src/etags.c switch (c) c 5473 lib-src/etags.c switch (c_tolower (c)) c 5770 lib-src/etags.c char c = *cp++; c 5771 lib-src/etags.c if (c == '\0' || c == '%') c 5777 lib-src/etags.c switch (c) c 5780 lib-src/etags.c TEX_esc = c; c 5786 lib-src/etags.c TEX_esc = c; c 5792 lib-src/etags.c if (c == TEX_esc) c 6235 lib-src/etags.c int c; c 6242 lib-src/etags.c while ((c = fgetc (fp)) != EOF) c 6244 lib-src/etags.c switch (c) c 6292 lib-src/etags.c c = fgetc (fp); c 6295 lib-src/etags.c if (c == '-') c 6306 lib-src/etags.c if (c == '-' && ! commented_line) c 7305 lib-src/etags.c register int c = getc (stream); c 7315 lib-src/etags.c if (c == EOF) c 7323 lib-src/etags.c if (c == '\n') c 7337 lib-src/etags.c *p++ = c; c 7791 lib-src/etags.c int c; c 7792 lib-src/etags.c while ((c = fgetc (src_f)) != EOF) c 7800 lib-src/etags.c if (fputc (c, dst_f) == EOF) c 41 lib-src/hexl.c hexchar (int c) c 43 lib-src/hexl.c return c - ('0' <= c && c <= '9' ? '0' : 'a' - 10); c 127 lib-src/hexl.c for (int c; 0 <= (c = getc (fp)); ) c 130 lib-src/hexl.c if (c != ' ') c 135 lib-src/hexl.c c = getc (fp); c 136 lib-src/hexl.c if (c < 0 || c == ' ') c 139 lib-src/hexl.c int hc = hexchar (c); c 140 lib-src/hexl.c c = getc (fp); c 141 lib-src/hexl.c if (c < 0) c 143 lib-src/hexl.c putchar (hc * 0x10 + hexchar (c)); c 147 lib-src/hexl.c c = getc (fp); c 148 lib-src/hexl.c if (c < 0) c 153 lib-src/hexl.c while (0 <= c && c != '\n') c 154 lib-src/hexl.c c = getc (fp); c 155 lib-src/hexl.c if (c < 0) c 163 lib-src/hexl.c int c = 0; c 167 lib-src/hexl.c for (uintmax_t address = 0; 0 <= c; address += 0x10) c 172 lib-src/hexl.c if (0 <= c) c 173 lib-src/hexl.c c = getc (fp); c 174 lib-src/hexl.c if (c < 0) c 188 lib-src/hexl.c = (c < 0x20 || (0x7F <= c && (!iso_flag || c < 0xa0)) c 189 lib-src/hexl.c ? '.' : c); c 191 lib-src/hexl.c printf ("%02x", c + 0u); c 337 lib-src/make-docfile.c int c; c 339 lib-src/make-docfile.c c = getc (state->in_file); c 340 lib-src/make-docfile.c while (c == ' ' || c == '\n'); c 343 lib-src/make-docfile.c if (c != '(') c 345 lib-src/make-docfile.c put_char (c, state); c 350 lib-src/make-docfile.c c = getc (state->in_file); c 351 lib-src/make-docfile.c if (c == EOF) c 354 lib-src/make-docfile.c while (c != ' ' && c != ')'); c 360 lib-src/make-docfile.c ungetc (c, state->in_file); c 396 lib-src/make-docfile.c int c; c 408 lib-src/make-docfile.c c = getc (infile); c 410 lib-src/make-docfile.c while (c_isspace (c)) c 411 lib-src/make-docfile.c c = getc (infile); c 413 lib-src/make-docfile.c while (c != EOF) c 415 lib-src/make-docfile.c while (c != EOF && (comment ? c != '*' : c != '"')) c 417 lib-src/make-docfile.c if (c == '\\') c 419 lib-src/make-docfile.c c = getc (infile); c 420 lib-src/make-docfile.c switch (c) c 423 lib-src/make-docfile.c c = getc (infile); c 425 lib-src/make-docfile.c case 'n': c = '\n'; break; c 426 lib-src/make-docfile.c case 't': c = '\t'; break; c 430 lib-src/make-docfile.c if (c == ' ') c 432 lib-src/make-docfile.c else if (c == '\n') c 438 lib-src/make-docfile.c scan_keyword_or_put_char (c, &state); c 440 lib-src/make-docfile.c c = getc (infile); c 443 lib-src/make-docfile.c if (c != EOF) c 444 lib-src/make-docfile.c c = getc (infile); c 448 lib-src/make-docfile.c if (c == '/') c 450 lib-src/make-docfile.c c = getc (infile); c 458 lib-src/make-docfile.c if (c != '"') c 462 lib-src/make-docfile.c c = getc (infile); c 472 lib-src/make-docfile.c return c; c 495 lib-src/make-docfile.c char c = *p; c 498 lib-src/make-docfile.c if ((c_isalnum (c) || c == '_') c 515 lib-src/make-docfile.c if (c == ',' || c == ')') c 541 lib-src/make-docfile.c c = c_toupper (*ident_start++); c 542 lib-src/make-docfile.c if (c == '_') c 544 lib-src/make-docfile.c c = '-'; c 545 lib-src/make-docfile.c putchar (c); c 826 lib-src/make-docfile.c int c = getc (infile); c 827 lib-src/make-docfile.c if (c == EOF) c 829 lib-src/make-docfile.c if (c != *p) c 839 lib-src/make-docfile.c int c = '\n'; c 850 lib-src/make-docfile.c if (c != '\n' && c != '\r') c 852 lib-src/make-docfile.c c = getc (infile); c 855 lib-src/make-docfile.c c = getc (infile); c 856 lib-src/make-docfile.c if (c == ' ') c 858 lib-src/make-docfile.c while (c == ' ') c 859 lib-src/make-docfile.c c = getc (infile); c 860 lib-src/make-docfile.c if (c != 'D') c 862 lib-src/make-docfile.c c = getc (infile); c 863 lib-src/make-docfile.c if (c != 'E') c 865 lib-src/make-docfile.c c = getc (infile); c 866 lib-src/make-docfile.c if (c != 'F') c 868 lib-src/make-docfile.c c = getc (infile); c 869 lib-src/make-docfile.c if (c == 'S') c 871 lib-src/make-docfile.c c = getc (infile); c 872 lib-src/make-docfile.c if (c != 'Y') c 874 lib-src/make-docfile.c c = getc (infile); c 875 lib-src/make-docfile.c if (c != 'M') c 877 lib-src/make-docfile.c c = getc (infile); c 878 lib-src/make-docfile.c if (c != ' ' && c != '\t' && c != '(') c 882 lib-src/make-docfile.c else if (c == 'V') c 884 lib-src/make-docfile.c c = getc (infile); c 885 lib-src/make-docfile.c if (c != 'A') c 887 lib-src/make-docfile.c c = getc (infile); c 888 lib-src/make-docfile.c if (c != 'R') c 890 lib-src/make-docfile.c c = getc (infile); c 891 lib-src/make-docfile.c if (c != '_') c 896 lib-src/make-docfile.c c = getc (infile); c 897 lib-src/make-docfile.c defvarperbufferflag = (c == 'P'); c 900 lib-src/make-docfile.c if (c == 'I') c 902 lib-src/make-docfile.c else if (c == 'L') c 904 lib-src/make-docfile.c else if (c == 'B') c 908 lib-src/make-docfile.c c = getc (infile); c 911 lib-src/make-docfile.c if (generate_globals && type == BOOLEAN && c != 'O') c 917 lib-src/make-docfile.c else if (c == 'D') c 919 lib-src/make-docfile.c c = getc (infile); c 920 lib-src/make-docfile.c if (c != 'E') c 922 lib-src/make-docfile.c c = getc (infile); c 923 lib-src/make-docfile.c if (c != 'F') c 925 lib-src/make-docfile.c c = getc (infile); c 926 lib-src/make-docfile.c defunflag = c == 'U'; c 935 lib-src/make-docfile.c while (c != '(') c 937 lib-src/make-docfile.c if (c < 0) c 939 lib-src/make-docfile.c c = getc (infile); c 945 lib-src/make-docfile.c c = getc (infile); c 946 lib-src/make-docfile.c if (c != '"') c 948 lib-src/make-docfile.c c = read_c_string_or_comment (infile, -1, false, 0); c 959 lib-src/make-docfile.c c = getc (infile); c 961 lib-src/make-docfile.c while (c == ',' || c_isspace (c)); c 966 lib-src/make-docfile.c if (c < 0) c 968 lib-src/make-docfile.c input_buffer[i++] = c; c 971 lib-src/make-docfile.c c = getc (infile); c 973 lib-src/make-docfile.c while (! (c == ',' || c_isspace (c))); c 981 lib-src/make-docfile.c c = getc (infile); c 982 lib-src/make-docfile.c while (c_isspace (c)); c 984 lib-src/make-docfile.c if (c != '"') c 986 lib-src/make-docfile.c c = read_c_string_or_comment (infile, -1, false, 0); c 1015 lib-src/make-docfile.c if (c == ',') c 1023 lib-src/make-docfile.c c = getc (infile); c 1024 lib-src/make-docfile.c while (c_isspace (c)); c 1026 lib-src/make-docfile.c if (c < 0) c 1028 lib-src/make-docfile.c ungetc (c, infile); c 1032 lib-src/make-docfile.c if (c == 'M' || c == 'U') /* MANY || UNEVALLED */ c 1035 lib-src/make-docfile.c maxargs = (c == 'M') ? -1 : -2; c 1046 lib-src/make-docfile.c if (c == EOF) c 1048 lib-src/make-docfile.c c = getc (infile); c 1069 lib-src/make-docfile.c c = getc (infile); c 1070 lib-src/make-docfile.c if (c == EOF) c 1077 lib-src/make-docfile.c if (c == '*' && d == '/') c 1079 lib-src/make-docfile.c c = d, d = getc (infile); c 1086 lib-src/make-docfile.c c = getc (infile); c 1087 lib-src/make-docfile.c if (c == EOF) c 1090 lib-src/make-docfile.c while (c_isspace (c)); c 1093 lib-src/make-docfile.c if (c == 'a' && stream_match (infile, "ttributes:")) c 1099 lib-src/make-docfile.c c = getc (infile); c 1100 lib-src/make-docfile.c if (c == EOF) c 1102 lib-src/make-docfile.c if (c == ')') c 1106 lib-src/make-docfile.c *p++ = c; c 1122 lib-src/make-docfile.c while (c_isspace (c)) c 1123 lib-src/make-docfile.c c = getc (infile); c 1125 lib-src/make-docfile.c if (c == '"') c 1126 lib-src/make-docfile.c c = read_c_string_or_comment (infile, 0, false, 0); c 1128 lib-src/make-docfile.c while (c != EOF && c != ',' && c != '/') c 1129 lib-src/make-docfile.c c = getc (infile); c 1130 lib-src/make-docfile.c if (c == ',') c 1133 lib-src/make-docfile.c c = getc (infile); c 1134 lib-src/make-docfile.c while (c_isspace (c)); c 1136 lib-src/make-docfile.c while (c_isalpha (c)) c 1137 lib-src/make-docfile.c c = getc (infile); c 1138 lib-src/make-docfile.c if (c == ':') c 1142 lib-src/make-docfile.c c = getc (infile); c 1143 lib-src/make-docfile.c while (c_isspace (c)); c 1147 lib-src/make-docfile.c if (c == '"' c 1148 lib-src/make-docfile.c || (c == '/' c 1149 lib-src/make-docfile.c && (c = getc (infile), c 1150 lib-src/make-docfile.c ungetc (c, infile), c 1151 lib-src/make-docfile.c c == '*'))) c 1153 lib-src/make-docfile.c bool comment = c != '"'; c 1160 lib-src/make-docfile.c c = read_c_string_or_comment (infile, 1, comment, &saw_usage); c 1177 lib-src/make-docfile.c while (c != ')') c 1179 lib-src/make-docfile.c if (c < 0) c 1181 lib-src/make-docfile.c c = getc (infile); c 1185 lib-src/make-docfile.c while (c != '(') c 1187 lib-src/make-docfile.c if (c < 0) c 1189 lib-src/make-docfile.c c = getc (infile); c 1192 lib-src/make-docfile.c *p++ = c; c 1195 lib-src/make-docfile.c c = getc (infile); c 1196 lib-src/make-docfile.c if (c < 0) c 1198 lib-src/make-docfile.c *p++ = c; c 1200 lib-src/make-docfile.c while (c != ')'); c 69 lib-src/make-fingerprint.c int c; c 71 lib-src/make-fingerprint.c while (0 <= (c = getopt (argc, argv, "rh"))) c 73 lib-src/make-fingerprint.c switch (c) c 169 lib-src/movemail.c int c; c 192 lib-src/movemail.c while (0 <= (c = getopt (argc, argv, ARGSTR))) c 194 lib-src/movemail.c switch (c) { c 176 lib-src/update-game-score.c int c; c 190 lib-src/update-game-score.c while ((c = getopt (argc, argv, "hrm:d:")) != -1) c 191 lib-src/update-game-score.c switch (c) c 168 lib/c-ctype.h c_isalnum (int c) c 170 lib/c-ctype.h switch (c) c 182 lib/c-ctype.h c_isalpha (int c) c 184 lib/c-ctype.h switch (c) c 197 lib/c-ctype.h c_isascii (int c) c 199 lib/c-ctype.h switch (c) c 214 lib/c-ctype.h c_isblank (int c) c 216 lib/c-ctype.h return c == ' ' || c == '\t'; c 220 lib/c-ctype.h c_iscntrl (int c) c 222 lib/c-ctype.h switch (c) c 232 lib/c-ctype.h c_isdigit (int c) c 234 lib/c-ctype.h switch (c) c 244 lib/c-ctype.h c_isgraph (int c) c 246 lib/c-ctype.h switch (c) c 259 lib/c-ctype.h c_islower (int c) c 261 lib/c-ctype.h switch (c) c 271 lib/c-ctype.h c_isprint (int c) c 273 lib/c-ctype.h switch (c) c 287 lib/c-ctype.h c_ispunct (int c) c 289 lib/c-ctype.h switch (c) c 299 lib/c-ctype.h c_isspace (int c) c 301 lib/c-ctype.h switch (c) c 311 lib/c-ctype.h c_isupper (int c) c 313 lib/c-ctype.h switch (c) c 323 lib/c-ctype.h c_isxdigit (int c) c 325 lib/c-ctype.h switch (c) c 336 lib/c-ctype.h c_tolower (int c) c 338 lib/c-ctype.h switch (c) c 341 lib/c-ctype.h return c - 'A' + 'a'; c 343 lib/c-ctype.h return c; c 348 lib/c-ctype.h c_toupper (int c) c 350 lib/c-ctype.h switch (c) c 353 lib/c-ctype.h return c - 'a' + 'A'; c 355 lib/c-ctype.h return c; c 199 lib/diffseq.h OFFSET c; /* Cost. */ c 206 lib/diffseq.h for (c = 1;; ++c) c 294 lib/diffseq.h if (200 < c && big_snake && heuristic) c 306 lib/diffseq.h if (v > 12 * (c + (dd < 0 ? -dd : dd))) c 345 lib/diffseq.h if (v > 12 * (c + (dd < 0 ? -dd : dd))) c 377 lib/diffseq.h if (c >= ctxt->too_expensive) c 67 lib/filevercmp.c unsigned char c = s[pos]; c 68 lib/filevercmp.c if (c_isdigit (c)) c 70 lib/filevercmp.c else if (c_isalpha (c)) c 71 lib/filevercmp.c return c; c 72 lib/filevercmp.c else if (c == '~') c 77 lib/filevercmp.c return c + UCHAR_MAX + 1; c 650 lib/getloadavg.c register unsigned int c, i; c 663 lib/getloadavg.c c = 0; c 677 lib/getloadavg.c c += stats.class_numcpus; c 679 lib/getloadavg.c cpus = c; c 611 lib/getopt.c char c = *d->__nextchar++; c 612 lib/getopt.c const char *temp = strchr (optstring, c); c 618 lib/getopt.c if (temp == NULL || c == ':' || c == ';') c 621 lib/getopt.c fprintf (stderr, _("%s: invalid option -- '%c'\n"), argv[0], c); c 622 lib/getopt.c d->optopt = c; c 637 lib/getopt.c argv[0], c); c 639 lib/getopt.c d->optopt = c; c 641 lib/getopt.c c = ':'; c 643 lib/getopt.c c = '?'; c 644 lib/getopt.c return c; c 683 lib/getopt.c argv[0], c); c 685 lib/getopt.c d->optopt = c; c 687 lib/getopt.c c = ':'; c 689 lib/getopt.c c = '?'; c 698 lib/getopt.c return c; c 751 lib/getopt.c int c; c 758 lib/getopt.c c = getopt (argc, argv, "abc:d:0123456789"); c 759 lib/getopt.c if (c == -1) c 762 lib/getopt.c switch (c) c 777 lib/getopt.c printf ("option %c\n", c); c 796 lib/getopt.c printf ("?? getopt returned character code 0%o ??\n", c); c 76 lib/getopt1.c int c; c 94 lib/getopt1.c c = getopt_long (argc, argv, "abc:d:0123456789", c 96 lib/getopt1.c if (c == -1) c 99 lib/getopt1.c switch (c) c 121 lib/getopt1.c printf ("option %c\n", c); c 144 lib/getopt1.c printf ("?? getopt returned character code 0%o ??\n", c); c 220 lib/md5.c #define FF(b, c, d) (d ^ (b & (c ^ d))) c 221 lib/md5.c #define FG(b, c, d) FF (d, b, c) c 222 lib/md5.c #define FH(b, c, d) (b ^ c ^ d) c 223 lib/md5.c #define FI(b, c, d) (c ^ (b | ~d)) c 264 lib/md5.c #define OP(a, b, c, d, s, T) \ c 267 lib/md5.c a += FF (b, c, d) + (*cwp++ = SWAP (*words)) + T; \ c 310 lib/md5.c #define OP(f, a, b, c, d, k, s, T) \ c 313 lib/md5.c a += f (b, c, d) + correct_words[k] + T; \ c 59 lib/memrchr.c unsigned reg_char c; c 61 lib/memrchr.c c = (unsigned char) c_in; c 68 lib/memrchr.c if (*--char_ptr == c) c 80 lib/memrchr.c repeated_c = c | (c << 8); c 153 lib/memrchr.c if (*--char_ptr == c) c 1609 lib/mini-gmp.c unsigned long c = -LONG_MAX - LONG_MIN; c 1613 lib/mini-gmp.c return -(long) c - (long) ((r - c) & LONG_MAX); c 2769 lib/mini-gmp.c int c; c 2772 lib/mini-gmp.c c = mpz_cmp (tu, tv); c 2773 lib/mini-gmp.c if (c == 0) c 2778 lib/mini-gmp.c if (c < 0) c 2893 lib/mini-gmp.c int c; c 2894 lib/mini-gmp.c c = mpz_cmp (tu, tv); c 2895 lib/mini-gmp.c if (c == 0) c 2898 lib/mini-gmp.c if (c < 0) c 3382 lib/mini-gmp.c int c, bit = 0; c 3392 lib/mini-gmp.c gmp_ctz(c, a); c 3397 lib/mini-gmp.c a >>= c; c 3399 lib/mini-gmp.c bit ^= c & (b ^ (b >> 1)); c 3414 lib/mini-gmp.c gmp_ctz(c, a); c 3415 lib/mini-gmp.c ++c; c 4019 lib/mini-gmp.c unsigned c; c 4023 lib/mini-gmp.c for (c = 0; x > 0;) c 4029 lib/mini-gmp.c c += w; c 4035 lib/mini-gmp.c return c; c 4042 lib/mini-gmp.c mp_bitcnt_t c; c 4044 lib/mini-gmp.c for (c = 0, i = 0; i < n; i++) c 4045 lib/mini-gmp.c c += gmp_popcount_limb (p[i]); c 4047 lib/mini-gmp.c return c; c 4069 lib/mini-gmp.c mp_bitcnt_t c; c 4091 lib/mini-gmp.c for (i = 0, c = 0; i < vn; i++) c 4099 lib/mini-gmp.c c += gmp_popcount_limb (ul ^ vl); c 4108 lib/mini-gmp.c c += gmp_popcount_limb (ul ^ comp); c 4111 lib/mini-gmp.c return c; c 184 lib/nstrftime.c #define add1(c) width_add1 (width, c) c 186 lib/nstrftime.c # define width_add1(width, c) width_add (width, 1, fputc (c, p)) c 188 lib/nstrftime.c # define width_add1(width, c) width_add (width, 1, *p = c) c 40 lib/rawmemchr.c unsigned char c = c_in; c 47 lib/rawmemchr.c if (*char_ptr == c) c 56 lib/rawmemchr.c longword repeated_c = repeated_one * c; c 118 lib/rawmemchr.c while (*char_ptr != c) c 294 lib/regcomp.c re_set_fastmap (fastmap, icase, dfa->nodes[node].opr.c); c 303 lib/regcomp.c *p++ = dfa->nodes[node].opr.c; c 307 lib/regcomp.c *p++ = dfa->nodes[node].opr.c; c 362 lib/regcomp.c unsigned char c = 0; c 367 lib/regcomp.c if (__mbrtowc (NULL, (char *) &c, 1, &mbs) == (size_t) -2) c 368 lib/regcomp.c re_set_fastmap (fastmap, false, (int) c); c 370 lib/regcomp.c while (++c != 0); c 1057 lib/regcomp.c if (dfa->nodes[node].opr.c >= ASCII_CHARS) c 1109 lib/regcomp.c && dfa->nodes[node].opr.c >= ASCII_CHARS) c 1745 lib/regcomp.c unsigned char c; c 1753 lib/regcomp.c c = re_string_peek_byte (input, 0); c 1754 lib/regcomp.c token->opr.c = c; c 1765 lib/regcomp.c if (c == '\\') c 1775 lib/regcomp.c token->opr.c = c2; c 1895 lib/regcomp.c token->word_char = IS_WORD_CHAR (token->opr.c); c 1897 lib/regcomp.c switch (c) c 1977 lib/regcomp.c unsigned char c; c 1983 lib/regcomp.c c = re_string_peek_byte (input, 0); c 1984 lib/regcomp.c token->opr.c = c; c 1993 lib/regcomp.c if (c == '\\' && (syntax & RE_BACKSLASH_ESCAPE_IN_LISTS) c 2000 lib/regcomp.c token->opr.c = c2; c 2004 lib/regcomp.c if (c == '[') /* '[' is a special char in a bracket exps. */ c 2012 lib/regcomp.c token->opr.c = c2; c 2033 lib/regcomp.c token->opr.c = c; c 2039 lib/regcomp.c switch (c) c 2497 lib/regcomp.c if (token->type == CHARACTER && token->opr.c == ',') c 2509 lib/regcomp.c : ((token->type == CHARACTER && token->opr.c == ',') c 3327 lib/regcomp.c elem->opr.ch = token->opr.c; c 3339 lib/regcomp.c unsigned char ch, delim = token->opr.c; c 3632 lib/regcomp.c unsigned char c; c 3636 lib/regcomp.c c = token->opr.c; c 3639 lib/regcomp.c if (token->type == OP_CLOSE_DUP_NUM || c == ',') c 3641 lib/regcomp.c num = ((token->type != CHARACTER || c < '0' || '9' < c || num == -2) c 3644 lib/regcomp.c ? c - '0' c 3645 lib/regcomp.c : MIN (RE_DUP_MAX + 1, num * 10 + c - '0')); c 772 lib/regex_internal.c int c = pstr->raw_mbs[pstr->raw_mbs_idx + offset - 1]; c 775 lib/regex_internal.c c = pstr->trans[c]; c 776 lib/regex_internal.c pstr->tip_context = (bitset_contain (pstr->word_char, c) c 778 lib/regex_internal.c : ((IS_NEWLINE (c) && pstr->newline_anchor) c 896 lib/regex_internal.c int c; c 924 lib/regex_internal.c c = re_string_byte_at (input, idx); c 925 lib/regex_internal.c if (bitset_contain (input->word_char, c)) c 927 lib/regex_internal.c return IS_NEWLINE (c) && input->newline_anchor ? CONTEXT_NEWLINE : 0; c 88 lib/regex_internal.h # define isascii(c) (((c) & ~0x7f) == 0) c 338 lib/regex_internal.h unsigned char c; /* for CHARACTER */ c 489 lib/regex_internal.h #define IS_WORD_CONTEXT(c) ((c) & CONTEXT_WORD) c 490 lib/regex_internal.h #define IS_NEWLINE_CONTEXT(c) ((c) & CONTEXT_NEWLINE) c 491 lib/regex_internal.h #define IS_BEGBUF_CONTEXT(c) ((c) & CONTEXT_BEGBUF) c 492 lib/regex_internal.h #define IS_ENDBUF_CONTEXT(c) ((c) & CONTEXT_ENDBUF) c 493 lib/regex_internal.h #define IS_ORDINARY_CONTEXT(c) ((c) == 0) c 3445 lib/regexec.c bitset_set (accepts, node->opr.c); c 3540 lib/regexec.c if (type == CHARACTER && !bitset_contain (dests_ch[j], node->opr.c)) c 3621 lib/regexec.c unsigned char c = re_string_byte_at (input, str_idx), d; c 3622 lib/regexec.c if (__glibc_likely (c < 0xc2)) c 3629 lib/regexec.c if (c < 0xe0) c 3631 lib/regexec.c else if (c < 0xf0) c 3634 lib/regexec.c if (c == 0xe0 && d < 0xa0) c 3637 lib/regexec.c else if (c < 0xf8) c 3640 lib/regexec.c if (c == 0xf0 && d < 0x90) c 3643 lib/regexec.c else if (c < 0xfc) c 3646 lib/regexec.c if (c == 0xf8 && d < 0x88) c 3649 lib/regexec.c else if (c < 0xfe) c 3652 lib/regexec.c if (c == 0xfc && d < 0x84) c 3908 lib/regexec.c if (node->opr.c != ch) c 231 lib/sha1.c uint32_t c = ctx->C; c 265 lib/sha1.c R( a, b, c, d, e, F1, K1, x[ 0] ); c 266 lib/sha1.c R( e, a, b, c, d, F1, K1, x[ 1] ); c 267 lib/sha1.c R( d, e, a, b, c, F1, K1, x[ 2] ); c 268 lib/sha1.c R( c, d, e, a, b, F1, K1, x[ 3] ); c 269 lib/sha1.c R( b, c, d, e, a, F1, K1, x[ 4] ); c 270 lib/sha1.c R( a, b, c, d, e, F1, K1, x[ 5] ); c 271 lib/sha1.c R( e, a, b, c, d, F1, K1, x[ 6] ); c 272 lib/sha1.c R( d, e, a, b, c, F1, K1, x[ 7] ); c 273 lib/sha1.c R( c, d, e, a, b, F1, K1, x[ 8] ); c 274 lib/sha1.c R( b, c, d, e, a, F1, K1, x[ 9] ); c 275 lib/sha1.c R( a, b, c, d, e, F1, K1, x[10] ); c 276 lib/sha1.c R( e, a, b, c, d, F1, K1, x[11] ); c 277 lib/sha1.c R( d, e, a, b, c, F1, K1, x[12] ); c 278 lib/sha1.c R( c, d, e, a, b, F1, K1, x[13] ); c 279 lib/sha1.c R( b, c, d, e, a, F1, K1, x[14] ); c 280 lib/sha1.c R( a, b, c, d, e, F1, K1, x[15] ); c 281 lib/sha1.c R( e, a, b, c, d, F1, K1, M(16) ); c 282 lib/sha1.c R( d, e, a, b, c, F1, K1, M(17) ); c 283 lib/sha1.c R( c, d, e, a, b, F1, K1, M(18) ); c 284 lib/sha1.c R( b, c, d, e, a, F1, K1, M(19) ); c 285 lib/sha1.c R( a, b, c, d, e, F2, K2, M(20) ); c 286 lib/sha1.c R( e, a, b, c, d, F2, K2, M(21) ); c 287 lib/sha1.c R( d, e, a, b, c, F2, K2, M(22) ); c 288 lib/sha1.c R( c, d, e, a, b, F2, K2, M(23) ); c 289 lib/sha1.c R( b, c, d, e, a, F2, K2, M(24) ); c 290 lib/sha1.c R( a, b, c, d, e, F2, K2, M(25) ); c 291 lib/sha1.c R( e, a, b, c, d, F2, K2, M(26) ); c 292 lib/sha1.c R( d, e, a, b, c, F2, K2, M(27) ); c 293 lib/sha1.c R( c, d, e, a, b, F2, K2, M(28) ); c 294 lib/sha1.c R( b, c, d, e, a, F2, K2, M(29) ); c 295 lib/sha1.c R( a, b, c, d, e, F2, K2, M(30) ); c 296 lib/sha1.c R( e, a, b, c, d, F2, K2, M(31) ); c 297 lib/sha1.c R( d, e, a, b, c, F2, K2, M(32) ); c 298 lib/sha1.c R( c, d, e, a, b, F2, K2, M(33) ); c 299 lib/sha1.c R( b, c, d, e, a, F2, K2, M(34) ); c 300 lib/sha1.c R( a, b, c, d, e, F2, K2, M(35) ); c 301 lib/sha1.c R( e, a, b, c, d, F2, K2, M(36) ); c 302 lib/sha1.c R( d, e, a, b, c, F2, K2, M(37) ); c 303 lib/sha1.c R( c, d, e, a, b, F2, K2, M(38) ); c 304 lib/sha1.c R( b, c, d, e, a, F2, K2, M(39) ); c 305 lib/sha1.c R( a, b, c, d, e, F3, K3, M(40) ); c 306 lib/sha1.c R( e, a, b, c, d, F3, K3, M(41) ); c 307 lib/sha1.c R( d, e, a, b, c, F3, K3, M(42) ); c 308 lib/sha1.c R( c, d, e, a, b, F3, K3, M(43) ); c 309 lib/sha1.c R( b, c, d, e, a, F3, K3, M(44) ); c 310 lib/sha1.c R( a, b, c, d, e, F3, K3, M(45) ); c 311 lib/sha1.c R( e, a, b, c, d, F3, K3, M(46) ); c 312 lib/sha1.c R( d, e, a, b, c, F3, K3, M(47) ); c 313 lib/sha1.c R( c, d, e, a, b, F3, K3, M(48) ); c 314 lib/sha1.c R( b, c, d, e, a, F3, K3, M(49) ); c 315 lib/sha1.c R( a, b, c, d, e, F3, K3, M(50) ); c 316 lib/sha1.c R( e, a, b, c, d, F3, K3, M(51) ); c 317 lib/sha1.c R( d, e, a, b, c, F3, K3, M(52) ); c 318 lib/sha1.c R( c, d, e, a, b, F3, K3, M(53) ); c 319 lib/sha1.c R( b, c, d, e, a, F3, K3, M(54) ); c 320 lib/sha1.c R( a, b, c, d, e, F3, K3, M(55) ); c 321 lib/sha1.c R( e, a, b, c, d, F3, K3, M(56) ); c 322 lib/sha1.c R( d, e, a, b, c, F3, K3, M(57) ); c 323 lib/sha1.c R( c, d, e, a, b, F3, K3, M(58) ); c 324 lib/sha1.c R( b, c, d, e, a, F3, K3, M(59) ); c 325 lib/sha1.c R( a, b, c, d, e, F4, K4, M(60) ); c 326 lib/sha1.c R( e, a, b, c, d, F4, K4, M(61) ); c 327 lib/sha1.c R( d, e, a, b, c, F4, K4, M(62) ); c 328 lib/sha1.c R( c, d, e, a, b, F4, K4, M(63) ); c 329 lib/sha1.c R( b, c, d, e, a, F4, K4, M(64) ); c 330 lib/sha1.c R( a, b, c, d, e, F4, K4, M(65) ); c 331 lib/sha1.c R( e, a, b, c, d, F4, K4, M(66) ); c 332 lib/sha1.c R( d, e, a, b, c, F4, K4, M(67) ); c 333 lib/sha1.c R( c, d, e, a, b, F4, K4, M(68) ); c 334 lib/sha1.c R( b, c, d, e, a, F4, K4, M(69) ); c 335 lib/sha1.c R( a, b, c, d, e, F4, K4, M(70) ); c 336 lib/sha1.c R( e, a, b, c, d, F4, K4, M(71) ); c 337 lib/sha1.c R( d, e, a, b, c, F4, K4, M(72) ); c 338 lib/sha1.c R( c, d, e, a, b, F4, K4, M(73) ); c 339 lib/sha1.c R( b, c, d, e, a, F4, K4, M(74) ); c 340 lib/sha1.c R( a, b, c, d, e, F4, K4, M(75) ); c 341 lib/sha1.c R( e, a, b, c, d, F4, K4, M(76) ); c 342 lib/sha1.c R( d, e, a, b, c, F4, K4, M(77) ); c 343 lib/sha1.c R( c, d, e, a, b, F4, K4, M(78) ); c 344 lib/sha1.c R( b, c, d, e, a, F4, K4, M(79) ); c 348 lib/sha1.c c = ctx->C += c; c 305 lib/sha256.c uint32_t c = ctx->state[2]; c 349 lib/sha256.c R( a, b, c, d, e, f, g, h, K( 0), x[ 0] ); c 350 lib/sha256.c R( h, a, b, c, d, e, f, g, K( 1), x[ 1] ); c 351 lib/sha256.c R( g, h, a, b, c, d, e, f, K( 2), x[ 2] ); c 352 lib/sha256.c R( f, g, h, a, b, c, d, e, K( 3), x[ 3] ); c 353 lib/sha256.c R( e, f, g, h, a, b, c, d, K( 4), x[ 4] ); c 354 lib/sha256.c R( d, e, f, g, h, a, b, c, K( 5), x[ 5] ); c 355 lib/sha256.c R( c, d, e, f, g, h, a, b, K( 6), x[ 6] ); c 356 lib/sha256.c R( b, c, d, e, f, g, h, a, K( 7), x[ 7] ); c 357 lib/sha256.c R( a, b, c, d, e, f, g, h, K( 8), x[ 8] ); c 358 lib/sha256.c R( h, a, b, c, d, e, f, g, K( 9), x[ 9] ); c 359 lib/sha256.c R( g, h, a, b, c, d, e, f, K(10), x[10] ); c 360 lib/sha256.c R( f, g, h, a, b, c, d, e, K(11), x[11] ); c 361 lib/sha256.c R( e, f, g, h, a, b, c, d, K(12), x[12] ); c 362 lib/sha256.c R( d, e, f, g, h, a, b, c, K(13), x[13] ); c 363 lib/sha256.c R( c, d, e, f, g, h, a, b, K(14), x[14] ); c 364 lib/sha256.c R( b, c, d, e, f, g, h, a, K(15), x[15] ); c 365 lib/sha256.c R( a, b, c, d, e, f, g, h, K(16), M(16) ); c 366 lib/sha256.c R( h, a, b, c, d, e, f, g, K(17), M(17) ); c 367 lib/sha256.c R( g, h, a, b, c, d, e, f, K(18), M(18) ); c 368 lib/sha256.c R( f, g, h, a, b, c, d, e, K(19), M(19) ); c 369 lib/sha256.c R( e, f, g, h, a, b, c, d, K(20), M(20) ); c 370 lib/sha256.c R( d, e, f, g, h, a, b, c, K(21), M(21) ); c 371 lib/sha256.c R( c, d, e, f, g, h, a, b, K(22), M(22) ); c 372 lib/sha256.c R( b, c, d, e, f, g, h, a, K(23), M(23) ); c 373 lib/sha256.c R( a, b, c, d, e, f, g, h, K(24), M(24) ); c 374 lib/sha256.c R( h, a, b, c, d, e, f, g, K(25), M(25) ); c 375 lib/sha256.c R( g, h, a, b, c, d, e, f, K(26), M(26) ); c 376 lib/sha256.c R( f, g, h, a, b, c, d, e, K(27), M(27) ); c 377 lib/sha256.c R( e, f, g, h, a, b, c, d, K(28), M(28) ); c 378 lib/sha256.c R( d, e, f, g, h, a, b, c, K(29), M(29) ); c 379 lib/sha256.c R( c, d, e, f, g, h, a, b, K(30), M(30) ); c 380 lib/sha256.c R( b, c, d, e, f, g, h, a, K(31), M(31) ); c 381 lib/sha256.c R( a, b, c, d, e, f, g, h, K(32), M(32) ); c 382 lib/sha256.c R( h, a, b, c, d, e, f, g, K(33), M(33) ); c 383 lib/sha256.c R( g, h, a, b, c, d, e, f, K(34), M(34) ); c 384 lib/sha256.c R( f, g, h, a, b, c, d, e, K(35), M(35) ); c 385 lib/sha256.c R( e, f, g, h, a, b, c, d, K(36), M(36) ); c 386 lib/sha256.c R( d, e, f, g, h, a, b, c, K(37), M(37) ); c 387 lib/sha256.c R( c, d, e, f, g, h, a, b, K(38), M(38) ); c 388 lib/sha256.c R( b, c, d, e, f, g, h, a, K(39), M(39) ); c 389 lib/sha256.c R( a, b, c, d, e, f, g, h, K(40), M(40) ); c 390 lib/sha256.c R( h, a, b, c, d, e, f, g, K(41), M(41) ); c 391 lib/sha256.c R( g, h, a, b, c, d, e, f, K(42), M(42) ); c 392 lib/sha256.c R( f, g, h, a, b, c, d, e, K(43), M(43) ); c 393 lib/sha256.c R( e, f, g, h, a, b, c, d, K(44), M(44) ); c 394 lib/sha256.c R( d, e, f, g, h, a, b, c, K(45), M(45) ); c 395 lib/sha256.c R( c, d, e, f, g, h, a, b, K(46), M(46) ); c 396 lib/sha256.c R( b, c, d, e, f, g, h, a, K(47), M(47) ); c 397 lib/sha256.c R( a, b, c, d, e, f, g, h, K(48), M(48) ); c 398 lib/sha256.c R( h, a, b, c, d, e, f, g, K(49), M(49) ); c 399 lib/sha256.c R( g, h, a, b, c, d, e, f, K(50), M(50) ); c 400 lib/sha256.c R( f, g, h, a, b, c, d, e, K(51), M(51) ); c 401 lib/sha256.c R( e, f, g, h, a, b, c, d, K(52), M(52) ); c 402 lib/sha256.c R( d, e, f, g, h, a, b, c, K(53), M(53) ); c 403 lib/sha256.c R( c, d, e, f, g, h, a, b, K(54), M(54) ); c 404 lib/sha256.c R( b, c, d, e, f, g, h, a, K(55), M(55) ); c 405 lib/sha256.c R( a, b, c, d, e, f, g, h, K(56), M(56) ); c 406 lib/sha256.c R( h, a, b, c, d, e, f, g, K(57), M(57) ); c 407 lib/sha256.c R( g, h, a, b, c, d, e, f, K(58), M(58) ); c 408 lib/sha256.c R( f, g, h, a, b, c, d, e, K(59), M(59) ); c 409 lib/sha256.c R( e, f, g, h, a, b, c, d, K(60), M(60) ); c 410 lib/sha256.c R( d, e, f, g, h, a, b, c, K(61), M(61) ); c 411 lib/sha256.c R( c, d, e, f, g, h, a, b, K(62), M(62) ); c 412 lib/sha256.c R( b, c, d, e, f, g, h, a, K(63), M(63) ); c 416 lib/sha256.c c = ctx->state[2] += c; c 329 lib/sha512.c u64 c = ctx->state[2]; c 378 lib/sha512.c R( a, b, c, d, e, f, g, h, K( 0), x[ 0] ); c 379 lib/sha512.c R( h, a, b, c, d, e, f, g, K( 1), x[ 1] ); c 380 lib/sha512.c R( g, h, a, b, c, d, e, f, K( 2), x[ 2] ); c 381 lib/sha512.c R( f, g, h, a, b, c, d, e, K( 3), x[ 3] ); c 382 lib/sha512.c R( e, f, g, h, a, b, c, d, K( 4), x[ 4] ); c 383 lib/sha512.c R( d, e, f, g, h, a, b, c, K( 5), x[ 5] ); c 384 lib/sha512.c R( c, d, e, f, g, h, a, b, K( 6), x[ 6] ); c 385 lib/sha512.c R( b, c, d, e, f, g, h, a, K( 7), x[ 7] ); c 386 lib/sha512.c R( a, b, c, d, e, f, g, h, K( 8), x[ 8] ); c 387 lib/sha512.c R( h, a, b, c, d, e, f, g, K( 9), x[ 9] ); c 388 lib/sha512.c R( g, h, a, b, c, d, e, f, K(10), x[10] ); c 389 lib/sha512.c R( f, g, h, a, b, c, d, e, K(11), x[11] ); c 390 lib/sha512.c R( e, f, g, h, a, b, c, d, K(12), x[12] ); c 391 lib/sha512.c R( d, e, f, g, h, a, b, c, K(13), x[13] ); c 392 lib/sha512.c R( c, d, e, f, g, h, a, b, K(14), x[14] ); c 393 lib/sha512.c R( b, c, d, e, f, g, h, a, K(15), x[15] ); c 394 lib/sha512.c R( a, b, c, d, e, f, g, h, K(16), M(16) ); c 395 lib/sha512.c R( h, a, b, c, d, e, f, g, K(17), M(17) ); c 396 lib/sha512.c R( g, h, a, b, c, d, e, f, K(18), M(18) ); c 397 lib/sha512.c R( f, g, h, a, b, c, d, e, K(19), M(19) ); c 398 lib/sha512.c R( e, f, g, h, a, b, c, d, K(20), M(20) ); c 399 lib/sha512.c R( d, e, f, g, h, a, b, c, K(21), M(21) ); c 400 lib/sha512.c R( c, d, e, f, g, h, a, b, K(22), M(22) ); c 401 lib/sha512.c R( b, c, d, e, f, g, h, a, K(23), M(23) ); c 402 lib/sha512.c R( a, b, c, d, e, f, g, h, K(24), M(24) ); c 403 lib/sha512.c R( h, a, b, c, d, e, f, g, K(25), M(25) ); c 404 lib/sha512.c R( g, h, a, b, c, d, e, f, K(26), M(26) ); c 405 lib/sha512.c R( f, g, h, a, b, c, d, e, K(27), M(27) ); c 406 lib/sha512.c R( e, f, g, h, a, b, c, d, K(28), M(28) ); c 407 lib/sha512.c R( d, e, f, g, h, a, b, c, K(29), M(29) ); c 408 lib/sha512.c R( c, d, e, f, g, h, a, b, K(30), M(30) ); c 409 lib/sha512.c R( b, c, d, e, f, g, h, a, K(31), M(31) ); c 410 lib/sha512.c R( a, b, c, d, e, f, g, h, K(32), M(32) ); c 411 lib/sha512.c R( h, a, b, c, d, e, f, g, K(33), M(33) ); c 412 lib/sha512.c R( g, h, a, b, c, d, e, f, K(34), M(34) ); c 413 lib/sha512.c R( f, g, h, a, b, c, d, e, K(35), M(35) ); c 414 lib/sha512.c R( e, f, g, h, a, b, c, d, K(36), M(36) ); c 415 lib/sha512.c R( d, e, f, g, h, a, b, c, K(37), M(37) ); c 416 lib/sha512.c R( c, d, e, f, g, h, a, b, K(38), M(38) ); c 417 lib/sha512.c R( b, c, d, e, f, g, h, a, K(39), M(39) ); c 418 lib/sha512.c R( a, b, c, d, e, f, g, h, K(40), M(40) ); c 419 lib/sha512.c R( h, a, b, c, d, e, f, g, K(41), M(41) ); c 420 lib/sha512.c R( g, h, a, b, c, d, e, f, K(42), M(42) ); c 421 lib/sha512.c R( f, g, h, a, b, c, d, e, K(43), M(43) ); c 422 lib/sha512.c R( e, f, g, h, a, b, c, d, K(44), M(44) ); c 423 lib/sha512.c R( d, e, f, g, h, a, b, c, K(45), M(45) ); c 424 lib/sha512.c R( c, d, e, f, g, h, a, b, K(46), M(46) ); c 425 lib/sha512.c R( b, c, d, e, f, g, h, a, K(47), M(47) ); c 426 lib/sha512.c R( a, b, c, d, e, f, g, h, K(48), M(48) ); c 427 lib/sha512.c R( h, a, b, c, d, e, f, g, K(49), M(49) ); c 428 lib/sha512.c R( g, h, a, b, c, d, e, f, K(50), M(50) ); c 429 lib/sha512.c R( f, g, h, a, b, c, d, e, K(51), M(51) ); c 430 lib/sha512.c R( e, f, g, h, a, b, c, d, K(52), M(52) ); c 431 lib/sha512.c R( d, e, f, g, h, a, b, c, K(53), M(53) ); c 432 lib/sha512.c R( c, d, e, f, g, h, a, b, K(54), M(54) ); c 433 lib/sha512.c R( b, c, d, e, f, g, h, a, K(55), M(55) ); c 434 lib/sha512.c R( a, b, c, d, e, f, g, h, K(56), M(56) ); c 435 lib/sha512.c R( h, a, b, c, d, e, f, g, K(57), M(57) ); c 436 lib/sha512.c R( g, h, a, b, c, d, e, f, K(58), M(58) ); c 437 lib/sha512.c R( f, g, h, a, b, c, d, e, K(59), M(59) ); c 438 lib/sha512.c R( e, f, g, h, a, b, c, d, K(60), M(60) ); c 439 lib/sha512.c R( d, e, f, g, h, a, b, c, K(61), M(61) ); c 440 lib/sha512.c R( c, d, e, f, g, h, a, b, K(62), M(62) ); c 441 lib/sha512.c R( b, c, d, e, f, g, h, a, K(63), M(63) ); c 442 lib/sha512.c R( a, b, c, d, e, f, g, h, K(64), M(64) ); c 443 lib/sha512.c R( h, a, b, c, d, e, f, g, K(65), M(65) ); c 444 lib/sha512.c R( g, h, a, b, c, d, e, f, K(66), M(66) ); c 445 lib/sha512.c R( f, g, h, a, b, c, d, e, K(67), M(67) ); c 446 lib/sha512.c R( e, f, g, h, a, b, c, d, K(68), M(68) ); c 447 lib/sha512.c R( d, e, f, g, h, a, b, c, K(69), M(69) ); c 448 lib/sha512.c R( c, d, e, f, g, h, a, b, K(70), M(70) ); c 449 lib/sha512.c R( b, c, d, e, f, g, h, a, K(71), M(71) ); c 450 lib/sha512.c R( a, b, c, d, e, f, g, h, K(72), M(72) ); c 451 lib/sha512.c R( h, a, b, c, d, e, f, g, K(73), M(73) ); c 452 lib/sha512.c R( g, h, a, b, c, d, e, f, K(74), M(74) ); c 453 lib/sha512.c R( f, g, h, a, b, c, d, e, K(75), M(75) ); c 454 lib/sha512.c R( e, f, g, h, a, b, c, d, K(76), M(76) ); c 455 lib/sha512.c R( d, e, f, g, h, a, b, c, K(77), M(77) ); c 456 lib/sha512.c R( c, d, e, f, g, h, a, b, K(78), M(78) ); c 457 lib/sha512.c R( b, c, d, e, f, g, h, a, K(79), M(79) ); c 461 lib/sha512.c c = ctx->state[2] = u64plus (ctx->state[2], c); c 271 lib/sig2str.c #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) c 513 lib/stdio.in.h _GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2))); c 514 lib/stdio.in.h _GL_CXXALIAS_RPL (fputc, int, (int c, FILE *stream)); c 516 lib/stdio.in.h _GL_CXXALIAS_SYS (fputc, int, (int c, FILE *stream)); c 1140 lib/stdio.in.h _GL_FUNCDECL_RPL (fputc, int, (int c, FILE *stream) _GL_ARG_NONNULL ((2))); c 1141 lib/stdio.in.h _GL_CXXALIAS_RPL_1 (putc, rpl_fputc, int, (int c, FILE *stream)); c 1143 lib/stdio.in.h _GL_CXXALIAS_SYS (putc, int, (int c, FILE *stream)); c 1156 lib/stdio.in.h _GL_FUNCDECL_RPL (putchar, int, (int c)); c 1157 lib/stdio.in.h _GL_CXXALIAS_RPL (putchar, int, (int c)); c 1159 lib/stdio.in.h _GL_CXXALIAS_SYS (putchar, int, (int c)); c 75 lib/str-two-way.h # define CANON_ELEMENT(c) c c 220 lib/string.in.h (void *dest, const void *src, int c, size_t n)); c 223 lib/string.in.h (void *dest, const void *src, int c, size_t n)); c 968 lib/string.in.h _GL_FUNCDECL_RPL (mbschr, char *, (const char *string, int c) c 971 lib/string.in.h _GL_CXXALIAS_RPL (mbschr, char *, (const char *string, int c)); c 973 lib/string.in.h _GL_FUNCDECL_SYS (mbschr, char *, (const char *string, int c) c 976 lib/string.in.h _GL_CXXALIAS_SYS (mbschr, char *, (const char *string, int c)); c 990 lib/string.in.h _GL_FUNCDECL_RPL (mbsrchr, char *, (const char *string, int c) c 993 lib/string.in.h _GL_CXXALIAS_RPL (mbsrchr, char *, (const char *string, int c)); c 995 lib/string.in.h _GL_FUNCDECL_SYS (mbsrchr, char *, (const char *string, int c) c 998 lib/string.in.h _GL_CXXALIAS_SYS (mbsrchr, char *, (const char *string, int c)); c 220 lib/strtol.c register UCHAR_TYPE c; c 305 lib/strtol.c for (c = *end; c != L_('\0'); c = *++end) c 306 lib/strtol.c if ((wchar_t) c != thousands c 307 lib/strtol.c && ((wchar_t) c < L_('0') || (wchar_t) c > L_('9')) c 308 lib/strtol.c && (!ISALPHA (c) || (int) (TOUPPER (c) - L_('A') + 10) >= base)) c 324 lib/strtol.c for (c = *s; c != L_('\0'); c = *++s) c 328 lib/strtol.c if (c >= L_('0') && c <= L_('9')) c 329 lib/strtol.c c -= L_('0'); c 330 lib/strtol.c else if (ISALPHA (c)) c 331 lib/strtol.c c = TOUPPER (c) - L_('A') + 10; c 334 lib/strtol.c if ((int) c >= base) c 337 lib/strtol.c if (i > cutoff || (i == cutoff && c > cutlim)) c 342 lib/strtol.c i += c; c 419 nt/cmdproxy.c char c; c 427 nt/cmdproxy.c while ((c = *old_pos++)) c 432 nt/cmdproxy.c switch(c) c 435 nt/cmdproxy.c *new_pos++ = c; c 449 nt/cmdproxy.c *new_pos++ = c; c 454 nt/cmdproxy.c *new_pos++ = c; c 458 nt/cmdproxy.c switch (c) c 461 nt/cmdproxy.c *new_pos++ = c; c 469 nt/cmdproxy.c *new_pos++ = c; c 2229 src/alloc.c int c = XFIXNAT (init); c 2230 src/alloc.c bool clearit = !c; c 2232 src/alloc.c if (ASCII_CHAR_P (c) && NILP (multibyte)) c 2238 src/alloc.c memset (SDATA (val), c, nbytes); c 2245 src/alloc.c ptrdiff_t len = CHAR_STRING (c, str); c 4000 src/alloc.c cons_marked_p (const struct Lisp_Cons *c) c 4002 src/alloc.c return pdumper_object_p (c) c 4003 src/alloc.c ? pdumper_marked_p (c) c 4004 src/alloc.c : XCONS_MARKED_P (c); c 4008 src/alloc.c set_cons_marked (struct Lisp_Cons *c) c 4010 src/alloc.c if (pdumper_object_p (c)) c 4011 src/alloc.c pdumper_set_marked (c); c 4013 src/alloc.c XMARK_CONS (c); c 4219 src/alloc.c struct mem_node *c, *parent, *x; c 4229 src/alloc.c c = mem_root; c 4232 src/alloc.c while (c != MEM_NIL) c 4234 src/alloc.c parent = c; c 4235 src/alloc.c c = start < c->start ? c->left : c->right; c 5090 src/alloc.c char c; c 5116 src/alloc.c *(p) = NEAR_STACK_TOP (&sentry + (stack_bottom < &sentry.c)) c 6571 src/alloc.c mark_face_cache (struct face_cache *c) c 6573 src/alloc.c if (c) c 6575 src/alloc.c for (int i = 0; i < c->used; i++) c 6577 src/alloc.c struct face *face = FACE_FROM_ID_OR_NULL (c->f, i); c 373 src/bidi.c bidi_mirror_char (int c) c 377 src/bidi.c if (c == BIDI_EOB) c 378 src/bidi.c return c; c 379 src/bidi.c if (c < 0 || c > MAX_CHAR) c 382 src/bidi.c val = CHAR_TABLE_REF (bidi_mirror_table, c); c 401 src/bidi.c return c; c 406 src/bidi.c bidi_paired_bracket_type (int c) c 408 src/bidi.c if (c == BIDI_EOB || bidi_inhibit_bpa) c 410 src/bidi.c if (c < 0 || c > MAX_CHAR) c 413 src/bidi.c return (bidi_bracket_type_t) XFIXNUM (CHAR_TABLE_REF (bidi_brackets_table, c)); c 2553 src/bidi.c #define CANONICAL_EQU(c) \ c 2554 src/bidi.c ( ASCII_CHAR_P (c) ? c \ c 2555 src/bidi.c : (c) == LEFT_POINTING_ANGLE_BRACKET ? LEFT_ANGLE_BRACKET \ c 2556 src/bidi.c : (c) == RIGHT_POINTING_ANGLE_BRACKET ? RIGHT_ANGLE_BRACKET \ c 2557 src/bidi.c : c ) c 2425 src/buffer.c int c; c 2431 src/buffer.c c = FETCH_BYTE (byte_pos); c 2432 src/buffer.c if (! CHAR_HEAD_P (c)) c 2441 src/buffer.c c = FETCH_BYTE (byte_pos); c 2443 src/buffer.c while (! CHAR_HEAD_P (c) && byte_pos > BEG); c 2718 src/buffer.c int bytes, c = string_char_and_length (p, &bytes); c 2725 src/buffer.c *p++ = c; c 2792 src/buffer.c int c; c 2794 src/buffer.c c = BYTE8_TO_CHAR (*p); c 2795 src/buffer.c bytes = CHAR_STRING (c, tmp); c 1562 src/buffer.h downcase (int c) c 1565 src/buffer.h Lisp_Object down = CHAR_TABLE_REF (downcase_table, c); c 1566 src/buffer.h return FIXNATP (down) ? XFIXNAT (down) : c; c 1571 src/buffer.h upcase (int c) c 1574 src/buffer.h Lisp_Object up = CHAR_TABLE_REF (upcase_table, c); c 1575 src/buffer.h return FIXNATP (up) ? XFIXNAT (up) : c; c 1580 src/buffer.h uppercasep (int c) c 1582 src/buffer.h return downcase (c) != c; c 1587 src/buffer.h lowercasep (int c) c 1589 src/buffer.h return !uppercasep (c) && upcase (c) != c; c 1621 src/buffer.h CHARACTER_WIDTH (int c) c 1623 src/buffer.h return (0x20 <= c && c < 0x7f ? 1 c 1624 src/buffer.h : 0x7f < c ? (sanitize_char_width c 1625 src/buffer.h (XFIXNUM (CHAR_TABLE_REF (Vchar_width_table, c)))) c 1626 src/buffer.h : c == '\t' ? SANE_TAB_WIDTH (current_buffer) c 1627 src/buffer.h : c == '\n' ? 0 c 1639 src/buffer.h ptrdiff_t c = *charidx, b = *byteidx; c 1640 src/buffer.h c++; c 1653 src/buffer.h *charidx = c; c 1665 src/buffer.h ptrdiff_t c = *charidx, b = *byteidx; c 1666 src/buffer.h c++; c 1671 src/buffer.h *charidx = c; c 961 src/bytecode.c struct handler *c = push_handler (POP, type); c 962 src/bytecode.c c->bytecode_dest = FETCH2; c 963 src/bytecode.c c->bytecode_top = top; c 965 src/bytecode.c if (sys_setjmp (c->jmp)) c 967 src/bytecode.c struct handler *c = handlerlist; c 968 src/bytecode.c handlerlist = c->next; c 969 src/bytecode.c top = c->bytecode_top; c 970 src/bytecode.c op = c->bytecode_dest; c 985 src/bytecode.c PUSH (c->val); c 236 src/casefiddle.c make_char_unibyte (int c) c 238 src/casefiddle.c return ASCII_CHAR_P (c) ? c : CHAR_TO_BYTE8 (c); c 312 src/casefiddle.c ascii_casify_character (bool downcase, int c) c 317 src/casefiddle.c c); c 318 src/casefiddle.c return FIXNATP (cased) ? XFIXNAT (cased) : c; c 32 src/casetab.c static void set_identity (Lisp_Object table, Lisp_Object c, Lisp_Object elt); c 33 src/casetab.c static void shuffle (Lisp_Object table, Lisp_Object c, Lisp_Object elt); c 192 src/casetab.c set_identity (Lisp_Object table, Lisp_Object c, Lisp_Object elt) c 198 src/casetab.c if (CONSP (c)) c 200 src/casetab.c from = XFIXNUM (XCAR (c)); c 201 src/casetab.c to = XFIXNUM (XCDR (c)); c 204 src/casetab.c from = to = XFIXNUM (c); c 218 src/casetab.c shuffle (Lisp_Object table, Lisp_Object c, Lisp_Object elt) c 224 src/casetab.c if (CONSP (c)) c 226 src/casetab.c from = XFIXNUM (XCAR (c)); c 227 src/casetab.c to = XFIXNUM (XCDR (c)); c 230 src/casetab.c from = to = XFIXNUM (c); c 257 src/casetab.c int c = (i >= 'A' && i <= 'Z') ? i + ('a' - 'A') : i; c 258 src/casetab.c CHAR_TABLE_SET (down, i, make_fixnum (c)); c 268 src/casetab.c int c = (i >= 'a' && i <= 'z') ? i + ('A' - 'a') : i; c 269 src/casetab.c CHAR_TABLE_SET (up, i, make_fixnum (c)); c 276 src/casetab.c int c = ((i >= 'A' && i <= 'Z') ? i + ('a' - 'A') c 279 src/casetab.c CHAR_TABLE_SET (eqv, i, make_fixnum (c)); c 207 src/category.c copy_category_entry (Lisp_Object table, Lisp_Object c, Lisp_Object val) c 210 src/category.c if (CONSP (c)) c 211 src/category.c char_table_set_range (table, XFIXNUM (XCAR (c)), XFIXNUM (XCDR (c)), val); c 213 src/category.c char_table_set (table, XFIXNUM (c), val); c 282 src/category.c char_category_set (int c) c 284 src/category.c return CHAR_TABLE_REF (BVAR (current_buffer, category_table), c); c 77 src/category.h #define CATEGORY_SET(c) char_category_set (c) c 819 src/ccl.c #define CCL_ENCODE_CHAR(c, charset_list, id, encoded) \ c 823 src/ccl.c charset = char_charset ((c), (charset_list), &ncode); \ c 825 src/ccl.c charset = char_charset ((c), Qnil, &ncode); \ c 52 src/character.c char_resolve_modifier_mask (EMACS_INT c) c 55 src/character.c if (! ASCII_CHAR_P ((c & ~CHAR_MODIFIER_MASK))) c 56 src/character.c return c; c 59 src/character.c if (c & CHAR_SHIFT) c 62 src/character.c if ((c & 0377) >= 'A' && (c & 0377) <= 'Z') c 63 src/character.c c &= ~CHAR_SHIFT; c 64 src/character.c else if ((c & 0377) >= 'a' && (c & 0377) <= 'z') c 65 src/character.c c = (c & ~CHAR_SHIFT) - ('a' - 'A'); c 67 src/character.c else if ((c & ~CHAR_MODIFIER_MASK) <= 0x20) c 68 src/character.c c &= ~CHAR_SHIFT; c 70 src/character.c if (c & CHAR_CTL) c 74 src/character.c if ((c & 0377) == ' ') c 75 src/character.c c &= ~0177 & ~ CHAR_CTL; c 76 src/character.c else if ((c & 0377) == '?') c 77 src/character.c c = 0177 | (c & ~0177 & ~CHAR_CTL); c 80 src/character.c else if ((c & 0137) >= 0101 && (c & 0137) <= 0132) c 81 src/character.c c &= (037 | (~0177 & ~CHAR_CTL)); c 82 src/character.c else if ((c & 0177) >= 0100 && (c & 0177) <= 0137) c 83 src/character.c c &= (037 | (~0177 & ~CHAR_CTL)); c 86 src/character.c if (c & CHAR_META) c 89 src/character.c c = (c & ~CHAR_META) | 0x80; c 93 src/character.c return c; c 101 src/character.c char_string (unsigned int c, unsigned char *p) c 105 src/character.c if (c & CHAR_MODIFIER_MASK) c 107 src/character.c c = char_resolve_modifier_mask (c); c 109 src/character.c c &= ~CHAR_MODIFIER_MASK; c 112 src/character.c if (c <= MAX_3_BYTE_CHAR) c 114 src/character.c bytes = CHAR_STRING (c, p); c 116 src/character.c else if (c <= MAX_4_BYTE_CHAR) c 118 src/character.c p[0] = (0xF0 | (c >> 18)); c 119 src/character.c p[1] = (0x80 | ((c >> 12) & 0x3F)); c 120 src/character.c p[2] = (0x80 | ((c >> 6) & 0x3F)); c 121 src/character.c p[3] = (0x80 | (c & 0x3F)); c 124 src/character.c else if (c <= MAX_5_BYTE_CHAR) c 127 src/character.c p[1] = (0x80 | ((c >> 18) & 0x0F)); c 128 src/character.c p[2] = (0x80 | ((c >> 12) & 0x3F)); c 129 src/character.c p[3] = (0x80 | ((c >> 6) & 0x3F)); c 130 src/character.c p[4] = (0x80 | (c & 0x3F)); c 133 src/character.c else if (c <= MAX_CHAR) c 135 src/character.c c = CHAR_TO_BYTE8 (c); c 136 src/character.c bytes = BYTE8_STRING (c, p); c 139 src/character.c error ("Invalid character: %x", c); c 151 src/character.c translate_char (Lisp_Object table, int c) c 157 src/character.c ch = CHAR_TABLE_REF (table, c); c 159 src/character.c c = XFIXNUM (ch); c 164 src/character.c c = translate_char (XCAR (table), c); c 166 src/character.c return c; c 198 src/character.c int c; c 201 src/character.c c = XFIXNAT (ch); c 202 src/character.c if (c >= 0x100) c 203 src/character.c error ("Not a unibyte character: %d", c); c 204 src/character.c return make_fixnum (make_char_multibyte (c)); c 232 src/character.c char_width (int c, struct Lisp_Char_Table *dp) c 234 src/character.c ptrdiff_t width = CHARACTER_WIDTH (c); c 238 src/character.c Lisp_Object disp = DISP_CHAR_VECTOR (dp, c), ch; c 244 src/character.c int c = -1; c 247 src/character.c c = GLYPH_CODE_CHAR (ch); c 249 src/character.c c = XFIXNUM (ch); c 250 src/character.c if (c >= 0) c 252 src/character.c int w = CHARACTER_WIDTH (c); c 273 src/character.c int c; c 277 src/character.c c = XFIXNUM (ch); c 278 src/character.c width = char_width (c, buffer_display_table ()); c 299 src/character.c int bytes, c = string_char_and_length (str + i_byte, &bytes); c 300 src/character.c ptrdiff_t thiswidth = char_width (c, dp); c 427 src/character.c int c; c 433 src/character.c c = string_char_and_length (str + i_byte, &cbytes); c 437 src/character.c c = str[i_byte], bytes = 1; c 439 src/character.c thiswidth = char_width (c, dp); c 636 src/character.c int c = *p++; c 637 src/character.c c = BYTE8_TO_CHAR (c); c 638 src/character.c to += CHAR_STRING (c, to); c 653 src/character.c int c = *p++; c 654 src/character.c c = BYTE8_TO_CHAR (c); c 655 src/character.c to += CHAR_STRING (c, to); c 693 src/character.c unsigned char c = src[i]; c 694 src/character.c if (c <= 0x7f) c 695 src/character.c *d++ = c; c 698 src/character.c *d++ = 0xc0 + ((c >> 6) & 1); c 699 src/character.c *d++ = 0x80 + (c & 0x3f); c 714 src/character.c int c, len; c 718 src/character.c c = *p; c 719 src/character.c len = BYTES_BY_CHAR_HEAD (c); c 720 src/character.c if (CHAR_BYTE8_HEAD_P (c)) c 727 src/character.c c = *p; c 728 src/character.c len = BYTES_BY_CHAR_HEAD (c); c 729 src/character.c if (CHAR_BYTE8_HEAD_P (c)) c 731 src/character.c c = string_char_advance (&p); c 732 src/character.c *to++ = CHAR_TO_BYTE8 (c); c 750 src/character.c int c, len; c 755 src/character.c c = *p; c 756 src/character.c len = BYTES_BY_CHAR_HEAD (c); c 758 src/character.c if (CHAR_BYTE8_HEAD_P (c)) c 783 src/character.c int c, len; c 818 src/character.c c = *src; c 819 src/character.c len = BYTES_BY_CHAR_HEAD (c); c 821 src/character.c if (CHAR_BYTE8_HEAD_P (c)) c 823 src/character.c c = string_char_advance (&src); c 824 src/character.c c = CHAR_TO_BYTE8 (c); c 825 src/character.c dst += sprintf ((char *) dst, "\\%03o", c + 0u); c 833 src/character.c c = *src++; c 834 src/character.c if (c >= 0x80) c 835 src/character.c dst += sprintf ((char *) dst, "\\%03o", c + 0u); c 837 src/character.c *dst++ = c; c 862 src/character.c int c = XFIXNUM (args[i]); c 863 src/character.c p += CHAR_STRING (c, p); c 888 src/character.c EMACS_INT c; c 891 src/character.c c = XFIXNUM (character); c 892 src/character.c return make_fixnum (char_resolve_modifier_mask (c)); c 907 src/character.c int c; c 946 src/character.c c = STRING_CHAR (p); c 947 src/character.c if (CHAR_BYTE8_P (c)) c 948 src/character.c c = CHAR_TO_BYTE8 (c); c 949 src/character.c else if (! ASCII_CHAR_P (c)) c 950 src/character.c error ("Not an ASCII nor an 8-bit character: %d", c); c 951 src/character.c return make_fixnum (c); c 956 src/character.c alphabeticp (int c) c 958 src/character.c Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c); c 979 src/character.c alphanumericp (int c) c 981 src/character.c Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c); c 1001 src/character.c graphicp (int c) c 1003 src/character.c Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c); c 1019 src/character.c printablep (int c) c 1021 src/character.c Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c); c 1034 src/character.c graphic_base_p (int c) c 1036 src/character.c Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c); c 1056 src/character.c blankp (int c) c 1058 src/character.c Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c); c 98 src/character.h SINGLE_BYTE_CHAR_P (intmax_t c) c 100 src/character.h return 0 <= c && c < 0x100; c 106 src/character.h CHAR_BYTE8_P (int c) c 108 src/character.h return MAX_5_BYTE_CHAR < c; c 126 src/character.h CHAR_TO_BYTE8 (int c) c 128 src/character.h return CHAR_BYTE8_P (c) ? c - 0x3FFF00 : c & 0xFF; c 134 src/character.h CHAR_TO_BYTE_SAFE (int c) c 136 src/character.h return ASCII_CHAR_P (c) ? c : CHAR_BYTE8_P (c) ? c - 0x3FFF00 : -1; c 149 src/character.h make_char_multibyte (int c) c 151 src/character.h eassert (SINGLE_BYTE_CHAR_P (c)); c 152 src/character.h return UNIBYTE_TO_CHAR (c); c 160 src/character.h CHAR_VALID_P (intmax_t c) c 162 src/character.h return 0 <= c && c <= MAX_CHAR; c 193 src/character.h CHAR_PRINTABLE_P (int c) c 195 src/character.h return ((32 <= c && c < 127) c 196 src/character.h || ! NILP (CHAR_TABLE_REF (Vprintable_chars, c))); c 201 src/character.h CHAR_BYTES (int c) c 203 src/character.h return ((MAX_5_BYTE_CHAR < c ? -2 : 1) c 204 src/character.h + (MAX_1_BYTE_CHAR < c) c 205 src/character.h + (MAX_2_BYTE_CHAR < c) c 206 src/character.h + (MAX_3_BYTE_CHAR < c) c 207 src/character.h + (MAX_4_BYTE_CHAR < c)); c 212 src/character.h CHAR_LEADING_CODE (int c) c 214 src/character.h return (c <= MAX_1_BYTE_CHAR ? c c 215 src/character.h : c <= MAX_2_BYTE_CHAR ? 0xC0 | (c >> 6) c 216 src/character.h : c <= MAX_3_BYTE_CHAR ? 0xE0 | (c >> 12) c 217 src/character.h : c <= MAX_4_BYTE_CHAR ? 0xF0 | (c >> 18) c 218 src/character.h : c <= MAX_5_BYTE_CHAR ? 0xF8 c 219 src/character.h : 0xC0 | ((c >> 6) & 0x01)); c 228 src/character.h CHAR_STRING (int c, unsigned char *p) c 230 src/character.h eassume (0 <= c); c 231 src/character.h if (c <= MAX_1_BYTE_CHAR) c 233 src/character.h p[0] = c; c 236 src/character.h if (c <= MAX_2_BYTE_CHAR) c 238 src/character.h p[0] = 0xC0 | (c >> 6); c 239 src/character.h p[1] = 0x80 | (c & 0x3F); c 242 src/character.h if (c <= MAX_3_BYTE_CHAR) c 244 src/character.h p[0] = 0xE0 | (c >> 12); c 245 src/character.h p[1] = 0x80 | ((c >> 6) & 0x3F); c 246 src/character.h p[2] = 0x80 | (c & 0x3F); c 249 src/character.h int len = char_string (c, p); c 317 src/character.h unsigned char c = p[0]; c 318 src/character.h if (c < 0x80) c 323 src/character.h int w = ((d & 0xC0) << 2) + c; c 375 src/character.h int c = p[0]; c 376 src/character.h if (! (c & 0x80)) c 379 src/character.h return c; c 381 src/character.h eassume (0xC0 <= c); c 383 src/character.h int d = (c << 6) + p[1] - ((0xC0 << 6) + 0x80); c 384 src/character.h if (! (c & 0x20)) c 387 src/character.h return d + (c < 0xC2 ? 0x3FFF80 : 0); c 391 src/character.h if (! (c & 0x10)) c 399 src/character.h if (! (c & 0x08)) c 428 src/character.h int len, c = string_char_and_length (p, &len); c 430 src/character.h return c; c 507 src/character.h CHAR_VARIATION_SELECTOR_P (int c) c 509 src/character.h return (c < 0xFE00 ? 0 c 510 src/character.h : c <= 0xFE0F ? c - 0xFE00 + 1 c 511 src/character.h : c < 0xE0100 ? 0 c 512 src/character.h : c <= 0xE01EF ? c - 0xE0100 + 17 c 519 src/character.h char_surrogate_p (int c) c 521 src/character.h return 0xD800 <= c && c <= 0xDFFF; c 566 src/character.h extern int translate_char (Lisp_Object, int c); c 609 src/character.h char_hexdigit (int c) c 611 src/character.h return 0 <= c && c <= UCHAR_MAX ? hexdigit[c] - 1 : -1; c 210 src/charset.c int c; c 305 src/charset.c min_char = max_char = entries->entry[0].c; c 318 src/charset.c from_c = entries->entry[idx].c; c 418 src/charset.c int c = lookahead < 0 ? getc (fp) : lookahead; c 422 src/charset.c if (c == '#') c 424 src/charset.c c = getc (fp); c 425 src/charset.c while (0 <= c && c != '\n'); c 426 src/charset.c else if (c == '0') c 428 src/charset.c c = getc (fp); c 429 src/charset.c if (c < 0 || c == 'x') c 432 src/charset.c if (c < 0) c 434 src/charset.c c = getc (fp); c 440 src/charset.c if (0 <= c) c 443 src/charset.c c = getc (fp); c 444 src/charset.c int digit = char_hexdigit (c); c 451 src/charset.c *terminator = c; c 525 src/charset.c unsigned c = read_hex (fp, ch, &ch, &overflow); c 531 src/charset.c if (from < min_code || to > max_code || from > to || c > MAX_CHAR) c 544 src/charset.c entries->entry[idx].c = c; c 582 src/charset.c EMACS_INT c; c 597 src/charset.c c = XFIXNAT (val); c 599 src/charset.c if (from < min_code || to > max_code || from > to || c > MAX_CHAR) c 611 src/charset.c entries->entry[idx].c = c; c 665 src/charset.c int c, stop; c 667 src/charset.c c = temp_charset_work->min_char; c 673 src/charset.c int idx = GET_TEMP_CHARSET_WORK_ENCODER (c); c 678 src/charset.c XSETCAR (range, make_fixnum (c)); c 682 src/charset.c XSETCDR (range, make_fixnum (c - 1)); c 689 src/charset.c if (c == stop) c 691 src/charset.c if (c == temp_charset_work->max_char) c 695 src/charset.c XSETCDR (range, make_fixnum (c)); c 703 src/charset.c c = 0x1FFFF; c 706 src/charset.c c++; c 1467 src/charset.c int c = string_char_advance (&p); c 1469 src/charset.c if (c >= 0x100) c 1497 src/charset.c int c = *ptr++; c 1500 src/charset.c c = translate_char (table, c); c 1501 src/charset.c if (ASCII_CHAR_P (c)) c 1511 src/charset.c int c = string_char_advance (&ptr); c 1515 src/charset.c c = translate_char (table, c); c 1516 src/charset.c charset = CHAR_CHARSET (c); c 1602 src/charset.c maybe_unify_char (int c, Lisp_Object val) c 1609 src/charset.c return c; c 1621 src/charset.c val = CHAR_TABLE_REF (Vchar_unify_table, c); c 1623 src/charset.c c = XFIXNAT (val); c 1627 src/charset.c int code_index = c - CHARSET_CODE_OFFSET (charset); c 1631 src/charset.c c = unified; c 1636 src/charset.c return c; c 1646 src/charset.c int c, char_index; c 1661 src/charset.c c = -1; c 1663 src/charset.c c = DECODE_CHAR (charset, code); c 1670 src/charset.c c = -1; c 1678 src/charset.c if ((c = DECODE_CHAR (charset, this_code)) >= 0) c 1699 src/charset.c c = XFIXNUM (AREF (decoder, char_index)); c 1701 src/charset.c c = GET_TEMP_CHARSET_WORK_DECODER (char_index); c 1705 src/charset.c c = char_index + CHARSET_CODE_OFFSET (charset); c 1707 src/charset.c && MAX_UNICODE_CHAR < c && c <= MAX_5_BYTE_CHAR) c 1710 src/charset.c Lisp_Object val = CHAR_TABLE_REF (Vchar_unify_table, c); c 1711 src/charset.c c = maybe_unify_char (c, val); c 1716 src/charset.c return c; c 1727 src/charset.c encode_char (struct charset *charset, int c) c 1745 src/charset.c Lisp_Object deunified = CHAR_TABLE_REF (deunifier, c); c 1752 src/charset.c code_index = GET_TEMP_CHARSET_WORK_ENCODER (c); c 1755 src/charset.c c = CHARSET_CODE_OFFSET (charset) + code_index; c 1765 src/charset.c code = ENCODE_CHAR (this_charset, c); c 1785 src/charset.c code = ENCODE_CHAR (this_charset, c); c 1792 src/charset.c if (! CHARSET_FAST_MAP_REF ((c), charset->fast_map) c 1793 src/charset.c || c < CHARSET_MIN_CHAR (charset) || c > CHARSET_MAX_CHAR (charset)) c 1809 src/charset.c val = CHAR_TABLE_REF (encoder, c); c 1818 src/charset.c code = GET_TEMP_CHARSET_WORK_ENCODER (c); c 1824 src/charset.c unsigned code_index = c - CHARSET_CODE_OFFSET (charset); c 1841 src/charset.c int c, id; c 1848 src/charset.c c = DECODE_CHAR (charsetp, code); c 1849 src/charset.c return (c >= 0 ? make_fixnum (c) : Qnil); c 1859 src/charset.c int c, id; c 1865 src/charset.c c = XFIXNAT (ch); c 1867 src/charset.c code = ENCODE_CHAR (charsetp, c); c 1893 src/charset.c int c; c 1954 src/charset.c c = DECODE_CHAR (charsetp, code); c 1955 src/charset.c if (c < 0) c 1957 src/charset.c return make_fixnum (c); c 1966 src/charset.c char_charset (int c, Lisp_Object charset_list, unsigned int *code_return) c 1978 src/charset.c unsigned code = ENCODE_CHAR (charset, c); c 1988 src/charset.c && c <= MAX_UNICODE_CHAR c 1993 src/charset.c : c <= MAX_5_BYTE_CHAR ? CHARSET_FROM_ID (charset_emacs) c 2007 src/charset.c int c, dimension; c 2012 src/charset.c c = XFIXNAT (ch); c 2013 src/charset.c charset = CHAR_CHARSET (c); c 2016 src/charset.c code = ENCODE_CHAR (charset, c); c 2047 src/charset.c int c = XFIXNAT (ch); c 2054 src/charset.c if (ENCODE_CHAR (rcharset, c) != CHARSET_INVALID_CODE (rcharset)) c 384 src/charset.h #define CHAR_CHARSET(c) \ c 385 src/charset.h ((c) < 0x80 ? CHARSET_FROM_ID (charset_ascii) \ c 386 src/charset.h : char_charset ((c), Qnil, NULL)) c 394 src/charset.h #define CHAR_CHARSET_SET(c) \ c 395 src/charset.h CHAR_TABLE_REF (Vchar_charset_set, c) c 431 src/charset.h #define ENCODE_CHAR(charset, c) \ c 433 src/charset.h (sizeof (c) <= sizeof (int), \ c 434 src/charset.h (ASCII_CHAR_P (c) && (charset)->ascii_compatible_p \ c 435 src/charset.h ? (unsigned) (c) \ c 439 src/charset.h ? encode_char (charset, c) \ c 440 src/charset.h : (c) < (charset)->min_char || (c) > (charset)->max_char \ c 444 src/charset.h ? (unsigned) ((c) - (charset)->code_offset) + (charset)->min_code \ c 445 src/charset.h : encode_char (charset, c)) \ c 449 src/charset.h ? (charset_work = CHAR_TABLE_REF (CHARSET_ENCODER (charset), c), \ c 453 src/charset.h : encode_char (charset, c)) \ c 454 src/charset.h : encode_char (charset, c)))) c 464 src/charset.h #define SPLIT_CHAR(c, charset, code) \ c 465 src/charset.h ((charset) = char_charset ((c), Qnil, &(code))) c 483 src/charset.h #define CHARSET_FAST_MAP_REF(c, fast_map) \ c 484 src/charset.h ((c) < 0x10000 \ c 485 src/charset.h ? fast_map[(c) >> 10] & (1 << (((c) >> 7) & 7)) \ c 486 src/charset.h : fast_map[((c) >> 15) + 62] & (1 << (((c) >> 12) & 7))) c 488 src/charset.h #define CHARSET_FAST_MAP_SET(c, fast_map) \ c 490 src/charset.h if ((c) < 0x10000) \ c 491 src/charset.h (fast_map)[(c) >> 10] |= 1 << (((c) >> 7) & 7); \ c 493 src/charset.h (fast_map)[((c) >> 15) + 62] |= 1 << (((c) >> 12) & 7); \ c 499 src/charset.h #define CHAR_CHARSET_P(c, charset) \ c 500 src/charset.h ((ASCII_CHAR_P (c) && (charset)->ascii_compatible_p) \ c 504 src/charset.h ? encode_char ((charset), (c)) != (charset)->invalid_code \ c 505 src/charset.h : (CHARSET_FAST_MAP_REF ((c), (charset)->fast_map) \ c 507 src/charset.h ? (c) >= (charset)->min_char && (c) <= (charset)->max_char \ c 511 src/charset.h ? ! NILP (CHAR_TABLE_REF (CHARSET_ENCODER (charset), (c))) \ c 512 src/charset.h : encode_char ((charset), (c)) != (charset)->invalid_code)))) c 52 src/chartab.c #define CHARTAB_IDX(c, depth, min_char) \ c 53 src/chartab.c (((c) - (min_char)) >> chartab_bits[(depth)]) c 212 src/chartab.c sub_char_table_ref (Lisp_Object table, int c, bool is_uniprop) c 216 src/chartab.c int idx = CHARTAB_IDX (c, tbl->depth, tbl->min_char); c 222 src/chartab.c val = sub_char_table_ref (val, c, is_uniprop); c 227 src/chartab.c char_table_ref (Lisp_Object table, int c) c 232 src/chartab.c if (ASCII_CHAR_P (c)) c 236 src/chartab.c val = XSUB_CHAR_TABLE (val)->contents[c]; c 240 src/chartab.c val = tbl->contents[CHARTAB_IDX (c, 0, 0)]; c 242 src/chartab.c val = sub_char_table_ref (val, c, UNIPROP_TABLE_P (table)); c 248 src/chartab.c val = char_table_ref (tbl->parent, c); c 254 src/chartab.c char_table_ref_simple (Lisp_Object table, int idx, int c, int *from, int *to, c 263 src/chartab.c val = sub_char_table_ref_and_range (val, c, from, to, c 271 src/chartab.c sub_char_table_ref_and_range (Lisp_Object table, int c, int *from, int *to, c 276 src/chartab.c int chartab_idx = CHARTAB_IDX (c, depth, min_char), idx; c 278 src/chartab.c = char_table_ref_simple (table, chartab_idx, c, from, to, c 284 src/chartab.c c = min_char + idx * chartab_chars[depth] - 1; c 287 src/chartab.c = char_table_ref_simple (table, idx, c, from, to, c 292 src/chartab.c *from = c + 1; c 296 src/chartab.c while (((c = (chartab_idx + 1) * chartab_chars[depth]) c 298 src/chartab.c && (c += min_char) <= *to) c 302 src/chartab.c = char_table_ref_simple (table, chartab_idx, c, from, to, c 307 src/chartab.c *to = c - 1; c 322 src/chartab.c char_table_ref_and_range (Lisp_Object table, int c, int *from, int *to) c 325 src/chartab.c int chartab_idx = CHARTAB_IDX (c, 0, 0); c 334 src/chartab.c = char_table_ref_simple (table, chartab_idx, c, from, to, c 340 src/chartab.c c = idx * chartab_chars[0] - 1; c 343 src/chartab.c = char_table_ref_simple (table, idx, c, from, to, c 348 src/chartab.c *from = c + 1; c 355 src/chartab.c c = chartab_idx * chartab_chars[0]; c 357 src/chartab.c = char_table_ref_simple (table, chartab_idx, c, from, to, c 362 src/chartab.c *to = c - 1; c 372 src/chartab.c sub_char_table_set (Lisp_Object table, int c, Lisp_Object val, bool is_uniprop) c 376 src/chartab.c int i = CHARTAB_IDX (c, depth, min_char); c 396 src/chartab.c sub_char_table_set (sub, c, val, is_uniprop); c 401 src/chartab.c char_table_set (Lisp_Object table, int c, Lisp_Object val) c 405 src/chartab.c if (ASCII_CHAR_P (c) c 407 src/chartab.c set_sub_char_table_contents (tbl->ascii, c, val); c 410 src/chartab.c int i = CHARTAB_IDX (c, 0, 0); c 419 src/chartab.c sub_char_table_set (sub, c, val, UNIPROP_TABLE_P (table)); c 420 src/chartab.c if (ASCII_CHAR_P (c)) c 432 src/chartab.c int i, c, lim = chartab_size[depth]; c 437 src/chartab.c c = min_char + chars_in_block * i; c 438 src/chartab.c for (; i < lim; i++, c += chars_in_block) c 440 src/chartab.c if (c > to) c 442 src/chartab.c if (from <= c && c + chars_in_block - 1 <= to) c 453 src/chartab.c sub = make_sub_char_table (depth + 1, c, sub); c 474 src/chartab.c int i, c; c 476 src/chartab.c for (i = CHARTAB_IDX (from, 0, 0), c = i * chartab_chars[0]; i <= lim; c 477 src/chartab.c i++, c += chartab_chars[0]) c 479 src/chartab.c if (c > to) c 481 src/chartab.c if (from <= c && c + chartab_chars[0] - 1 <= to) c 727 src/chartab.c int i, c; c 754 src/chartab.c for (c = min_char + chars_in_block * i; c <= max_char; c 755 src/chartab.c i++, c += chars_in_block) c 760 src/chartab.c int nextc = c + chars_in_block; c 791 src/chartab.c XSETCDR (range, make_fixnum (c - 1)); c 801 src/chartab.c XSETCDR (range, make_fixnum (c - 1)); c 826 src/chartab.c from = c; c 827 src/chartab.c XSETCAR (range, make_fixnum (c)); c 926 src/chartab.c int i, c = tbl->min_char, depth = tbl->depth; c 929 src/chartab.c for (i = 0; i < chartab_size[depth]; i++, c += chartab_chars[depth]) c 941 src/chartab.c XSETCDR (range, make_fixnum (c - 1)); c 951 src/chartab.c for (i = 0; i < chartab_size[depth]; i++, c++) c 959 src/chartab.c && (code = ENCODE_CHAR (charset, c), c 964 src/chartab.c XSETCDR (range, make_fixnum (c - 1)); c 975 src/chartab.c XSETCAR (range, make_fixnum (c)); c 1009 src/chartab.c int c, i; c 1013 src/chartab.c for (i = 0, c = 0; i < chartab_size[0]; i++, c += chartab_chars[0]) c 1025 src/chartab.c XSETCDR (range, make_fixnum (c - 1)); c 1036 src/chartab.c XSETCDR (range, make_fixnum (c - 1)); c 34 src/cm.c evalcost (int c) c 37 src/cm.c return c; c 44 src/cm.c cmputc (int c) c 47 src/cm.c putc (c & 0177, current_tty->termscript); c 48 src/cm.c putc (c & 0177, current_tty->output); c 49 src/cm.c return c; c 182 src/cm.c c, c 202 src/cm.c p = tty->Wcm->cm_up, c = tty->Wcm->cc_up, deltay = -deltay; c 204 src/cm.c p = tty->Wcm->cm_down, c = tty->Wcm->cc_down; c 205 src/cm.c if (c == BIG) { /* caint get thar from here */ c 208 src/cm.c return c; c 210 src/cm.c totalcost = c * deltay; c 219 src/cm.c p = tty->Wcm->cm_left, c = tty->Wcm->cc_left, deltax = -deltax; c 252 src/cm.c c = n2tabs ? n2tabs * tty->Wcm->cc_tab + (tab2x - dstx) * tty->Wcm->cc_left c 255 src/cm.c if (c < tabcost) /* then cheaper to overshoot & back up */ c 256 src/cm.c ntabs = n2tabs, tabcost = c, tabx = tab2x; c 282 src/cm.c p = tty->Wcm->cm_right, c = tty->Wcm->cc_right; c 284 src/cm.c p = tty->Wcm->cm_left, c = tty->Wcm->cc_left, deltax = -deltax; c 287 src/cm.c if (c == BIG) { /* caint get thar from here */ c 293 src/cm.c totalcost += c * deltax; c 161 src/cm.h extern int evalcost (int c); c 274 src/cmds.c (Lisp_Object n, Lisp_Object c) c 279 src/cmds.c if (NILP (c)) c 280 src/cmds.c c = last_command_event; c 289 src/cmds.c if (!CHARACTERP (c)) c 293 src/cmds.c XFIXNUM (c)); c 310 src/cmds.c internal_self_insert (int c, EMACS_INT n) c 330 src/cmds.c len = CHAR_STRING (c, str); c 334 src/cmds.c c = *str; c 338 src/cmds.c str[0] = SINGLE_BYTE_CHAR_P (c) ? c : CHAR_TO_BYTE8 (c); c 365 src/cmds.c else if (c != '\n' && c2 != '\n' c 366 src/cmds.c && (cwidth = XFIXNAT (Fchar_width (make_fixnum (c)))) != 0) c 407 src/cmds.c synt = SYNTAX (c); c 443 src/cmds.c && SINGLE_BYTE_CHAR_P (c)) c 444 src/cmds.c ? UNIBYTE_TO_CHAR (c) : c); c 475 src/cmds.c ? !NILP (CHAR_TABLE_REF (Vauto_fill_chars, c)) c 476 src/cmds.c : (c == ' ' || c == '\n')) c 481 src/cmds.c if (c == '\n') c 488 src/cmds.c if (c == '\n' && PT < ZV) c 170 src/coding.c ONE_MORE_BYTE (c); c 172 src/coding.c if (! __C_conforms_to_XXX___ (c)) c 174 src/coding.c if (! __C_strongly_suggests_XXX__ (c)) c 223 src/coding.c ONE_MORE_BYTE (c); c 273 src/coding.c int c = *charbuf; c 629 src/coding.c #define ONE_MORE_BYTE(c) \ c 638 src/coding.c c = *src++; \ c 639 src/coding.c if (multibytep && (c & 0x80)) \ c 641 src/coding.c if ((c & 0xFE) == 0xC0) \ c 642 src/coding.c c = ((c & 1) << 6) | *src++; \ c 646 src/coding.c c = - string_char_advance (&src); \ c 701 src/coding.c #define EMIT_ONE_ASCII_BYTE(c) \ c 704 src/coding.c *dst++ = (c); \ c 723 src/coding.c #define EMIT_ONE_BYTE(c) \ c 728 src/coding.c unsigned ch = (c); \ c 734 src/coding.c *dst++ = (c); \ c 811 src/coding.c #define CODING_DECODE_CHAR(coding, src, src_base, src_end, charset, code, c) \ c 816 src/coding.c c = DECODE_CHAR (charset, code); \ c 826 src/coding.c #define CODING_ENCODE_CHAR(coding, dst, dst_end, charset, c, code) \ c 831 src/coding.c code = ENCODE_CHAR (charset, c); \ c 840 src/coding.c #define CODING_CHAR_CHARSET(coding, dst, dst_end, c, charset_list, code_return, charset) \ c 845 src/coding.c charset = char_charset (c, charset_list, code_return); \ c 854 src/coding.c #define CODING_CHAR_CHARSET_P(coding, dst, dst_end, c, charset, result) \ c 859 src/coding.c result = CHAR_CHARSET_P (c, charset); \ c 891 src/coding.c #define CHAR_STRING_ADVANCE_NO_UNIFY(c, p) ((p) += CHAR_STRING (c, p)) c 1110 src/coding.c #define UTF_8_1_OCTET_P(c) ((c) < 0x80) c 1111 src/coding.c #define UTF_8_EXTRA_OCTET_P(c) (((c) & 0xC0) == 0x80) c 1112 src/coding.c #define UTF_8_2_OCTET_LEADING_P(c) (((c) & 0xE0) == 0xC0) c 1113 src/coding.c #define UTF_8_3_OCTET_LEADING_P(c) (((c) & 0xF0) == 0xE0) c 1114 src/coding.c #define UTF_8_4_OCTET_LEADING_P(c) (((c) & 0xF8) == 0xF0) c 1115 src/coding.c #define UTF_8_5_OCTET_LEADING_P(c) (((c) & 0xFC) == 0xF8) c 1152 src/coding.c int c, c1, c2, c3, c4; c 1155 src/coding.c ONE_MORE_BYTE (c); c 1156 src/coding.c if (c < 0 || UTF_8_1_OCTET_P (c)) c 1159 src/coding.c if (c == '\r') c 1172 src/coding.c if (UTF_8_2_OCTET_LEADING_P (c)) c 1180 src/coding.c if (UTF_8_3_OCTET_LEADING_P (c)) c 1188 src/coding.c if (UTF_8_4_OCTET_LEADING_P (c)) c 1196 src/coding.c if (UTF_8_5_OCTET_LEADING_P (c) c 1199 src/coding.c && c < MAX_MULTIBYTE_LEADING_CODE) c 1282 src/coding.c int c, c1, c2, c3, c4, c5; c 1339 src/coding.c c = - c1; c 1345 src/coding.c c = c1; c 1354 src/coding.c c = ((c1 & 0x1F) << 6) | (c2 & 0x3F); c 1358 src/coding.c if (c < 128) c 1368 src/coding.c c = (((c1 & 0xF) << 12) c 1370 src/coding.c if (c < 0x800 c 1371 src/coding.c || (c >= 0xd800 && c < 0xe000)) /* surrogates (invalid) */ c 1381 src/coding.c c = (((c1 & 0x7) << 18) | ((c2 & 0x3F) << 12) c 1383 src/coding.c if (c < 0x10000) c 1393 src/coding.c c = (((c1 & 0x3) << 24) | ((c2 & 0x3F) << 18) c 1396 src/coding.c if ((c > MAX_CHAR) || (c < 0x200000)) c 1406 src/coding.c *charbuf++ = c; c 1412 src/coding.c ONE_MORE_BYTE (c); c 1413 src/coding.c *charbuf++ = ASCII_CHAR_P (c) ? c : BYTE8_TO_CHAR (c); c 1432 src/coding.c int c; c 1450 src/coding.c c = *charbuf++; c 1451 src/coding.c if (CHAR_BYTE8_P (c)) c 1453 src/coding.c c = CHAR_TO_BYTE8 (c); c 1454 src/coding.c EMIT_ONE_BYTE (c); c 1458 src/coding.c CHAR_STRING_ADVANCE_NO_UNIFY (c, pend); c 1471 src/coding.c c = *charbuf++; c 1472 src/coding.c if (CHAR_BYTE8_P (c)) c 1473 src/coding.c *dst++ = CHAR_TO_BYTE8 (c); c 1475 src/coding.c CHAR_STRING_ADVANCE_NO_UNIFY (c, dst); c 1592 src/coding.c int c, c1, c2; c 1597 src/coding.c c = (c1 << 8) | c2; c 1600 src/coding.c ? c != 0xFEFF : c != 0xFFFE) c 1617 src/coding.c int c, c1, c2; c 1648 src/coding.c c = (endian == utf_16_big_endian c 1653 src/coding.c if (! UTF_16_LOW_SURROGATE_P (c)) c 1661 src/coding.c if (UTF_16_HIGH_SURROGATE_P (c)) c 1662 src/coding.c CODING_UTF_16_SURROGATE (coding) = surrogate = c; c 1664 src/coding.c *charbuf++ = c; c 1668 src/coding.c c = ((surrogate - 0xD800) << 10) | (c - 0xDC00); c 1670 src/coding.c *charbuf++ = 0x10000 + c; c 1675 src/coding.c if (UTF_16_HIGH_SURROGATE_P (c)) c 1676 src/coding.c CODING_UTF_16_SURROGATE (coding) = surrogate = c; c 1679 src/coding.c if (eol_dos && c == '\r') c 1684 src/coding.c *charbuf++ = c; c 1707 src/coding.c int c; c 1722 src/coding.c c = *charbuf++; c 1723 src/coding.c if (c > MAX_UNICODE_CHAR) c 1724 src/coding.c c = coding->default_char; c 1726 src/coding.c if (c < 0x10000) c 1729 src/coding.c EMIT_TWO_BYTES (c >> 8, c & 0xFF); c 1731 src/coding.c EMIT_TWO_BYTES (c & 0xFF, c >> 8); c 1737 src/coding.c c -= 0x10000; c 1738 src/coding.c c1 = (c >> 10) + 0xD800; c 1739 src/coding.c c2 = (c & 0x3FF) + 0xDC00; c 1840 src/coding.c int c; c 1850 src/coding.c ONE_MORE_BYTE (c); c 1851 src/coding.c if (c < 0) c 1853 src/coding.c if (c == 0x80) c 1865 src/coding.c ONE_MORE_BYTE (c); c 1867 src/coding.c while (c >= 0xA0); c 1872 src/coding.c if (c == 0x80) c 1876 src/coding.c if (c < 0x80) c 1878 src/coding.c if (c < 0x20 c 1879 src/coding.c && (c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO)) c 1884 src/coding.c int more_bytes = emacs_mule_bytes[c] - 1; c 1888 src/coding.c ONE_MORE_BYTE (c); c 1889 src/coding.c if (c < 0xA0) c 1931 src/coding.c int c; c 1935 src/coding.c ONE_MORE_BYTE (c); c 1936 src/coding.c if (c < 0) c 1938 src/coding.c c = -c; c 1943 src/coding.c if (c >= 0xA0) c 1950 src/coding.c if (c == 0xA0) c 1952 src/coding.c ONE_MORE_BYTE (c); c 1953 src/coding.c c -= 0x80; c 1954 src/coding.c if (c < 0) c 1958 src/coding.c c -= 0x20; c 1965 src/coding.c return -c; c 1972 src/coding.c switch (emacs_mule_bytes[c]) c 1975 src/coding.c if ((charset_ID = emacs_mule_charset[c]) < 0) c 1977 src/coding.c ONE_MORE_BYTE (c); c 1978 src/coding.c if (c < 0xA0) c 1980 src/coding.c code = c & 0x7F; c 1984 src/coding.c if (c == EMACS_MULE_LEADING_CODE_PRIVATE_11 c 1985 src/coding.c || c == EMACS_MULE_LEADING_CODE_PRIVATE_12) c 1987 src/coding.c ONE_MORE_BYTE (c); c 1988 src/coding.c if (c < 0xA0 || (charset_ID = emacs_mule_charset[c]) < 0) c 1990 src/coding.c ONE_MORE_BYTE (c); c 1991 src/coding.c if (c < 0xA0) c 1993 src/coding.c code = c & 0x7F; c 1997 src/coding.c if ((charset_ID = emacs_mule_charset[c]) < 0) c 1999 src/coding.c ONE_MORE_BYTE (c); c 2000 src/coding.c if (c < 0xA0) c 2002 src/coding.c code = (c & 0x7F) << 8; c 2003 src/coding.c ONE_MORE_BYTE (c); c 2004 src/coding.c if (c < 0xA0) c 2006 src/coding.c code |= c & 0x7F; c 2011 src/coding.c ONE_MORE_BYTE (c); c 2012 src/coding.c if (c < 0 || (charset_ID = emacs_mule_charset[c]) < 0) c 2014 src/coding.c ONE_MORE_BYTE (c); c 2015 src/coding.c if (c < 0xA0) c 2017 src/coding.c code = (c & 0x7F) << 8; c 2018 src/coding.c ONE_MORE_BYTE (c); c 2019 src/coding.c if (c < 0xA0) c 2021 src/coding.c code |= c & 0x7F; c 2025 src/coding.c code = c; c 2033 src/coding.c CHARSET_FROM_ID (charset_ID), code, c); c 2034 src/coding.c if (c < 0) c 2041 src/coding.c return (mseq_found ? -c : c); c 2112 src/coding.c #define DECODE_EMACS_MULE_COMPOSITION_RULE_20(c, rule) \ c 2116 src/coding.c c -= 0xA0; \ c 2117 src/coding.c if (c < 0 || c >= 81) \ c 2119 src/coding.c gref = c / 9, nref = c % 9; \ c 2130 src/coding.c #define DECODE_EMACS_MULE_COMPOSITION_RULE_21(c, rule) \ c 2134 src/coding.c gref = c - 0x20; \ c 2137 src/coding.c ONE_MORE_BYTE (c); \ c 2138 src/coding.c nref = c - 0x20; \ c 2152 src/coding.c enum composition_method method = c - 0xF2; \ c 2155 src/coding.c ONE_MORE_BYTE (c); \ c 2156 src/coding.c if (c < 0) \ c 2158 src/coding.c nbytes = c - 0xA0; \ c 2161 src/coding.c ONE_MORE_BYTE (c); \ c 2162 src/coding.c nchars = c - 0xA0; \ c 2208 src/coding.c ONE_MORE_BYTE (c); \ c 2209 src/coding.c if (c < 0) \ c 2211 src/coding.c if (c - 0xF2 >= COMPOSITION_RELATIVE \ c 2212 src/coding.c && c - 0xF2 <= COMPOSITION_WITH_RULE_ALTCHARS) \ c 2214 src/coding.c else if (c < 0xA0) \ c 2216 src/coding.c else if (c < 0xC0) \ c 2222 src/coding.c else if (c == 0xFF) \ c 2332 src/coding.c int c; c 2346 src/coding.c c = byte_after_cr, byte_after_cr = -1; c 2348 src/coding.c ONE_MORE_BYTE (c); c 2350 src/coding.c if (c < 0 || c == 0x80) c 2353 src/coding.c if (c < 0) c 2355 src/coding.c *charbuf++ = -c; c 2363 src/coding.c if (c < 0x80) c 2365 src/coding.c if (eol_dos && c == '\r') c 2387 src/coding.c c = emacs_mule_char (coding, src_base, &nbytes, &nchars, &id, c 2396 src/coding.c if (c < 0) c 2398 src/coding.c if (c == -1) c 2400 src/coding.c if (c == -2) c 2423 src/coding.c *charbuf++ = c; c 2430 src/coding.c if (c >= 0) c 2433 src/coding.c *charbuf++ = c; c 2438 src/coding.c *charbuf++ = -c; c 2449 src/coding.c *charbuf++ = c; c 2460 src/coding.c if (c >= 0) c 2463 src/coding.c *charbuf++ = c; c 2468 src/coding.c c = -c; c 2469 src/coding.c DECODE_EMACS_MULE_COMPOSITION_RULE_20 (c, rule); c 2480 src/coding.c *charbuf++ = c; c 2496 src/coding.c DECODE_EMACS_MULE_COMPOSITION_RULE_21 (c, rule); c 2514 src/coding.c ONE_MORE_BYTE (c); c 2515 src/coding.c *charbuf++ = ASCII_CHAR_P (c) ? c : BYTE8_TO_CHAR (c); c 2567 src/coding.c int c; c 2580 src/coding.c c = *charbuf++; c 2582 src/coding.c if (c < 0) c 2600 src/coding.c charbuf += -c - 1; c 2604 src/coding.c if (ASCII_CHAR_P (c)) c 2605 src/coding.c EMIT_ONE_ASCII_BYTE (c); c 2606 src/coding.c else if (CHAR_BYTE8_P (c)) c 2608 src/coding.c c = CHAR_TO_BYTE8 (c); c 2609 src/coding.c EMIT_ONE_BYTE (c); c 2624 src/coding.c CODING_CHAR_CHARSET_P (coding, dst, dst_end, c, charset, result); c 2626 src/coding.c code = ENCODE_CHAR (charset, c); c 2628 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list, c 2632 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list, c 2636 src/coding.c c = coding->default_char; c 2637 src/coding.c if (ASCII_CHAR_P (c)) c 2639 src/coding.c EMIT_ONE_ASCII_BYTE (c); c 2642 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list, c 2928 src/coding.c int c, c1; c 2959 src/coding.c ONE_MORE_BYTE (c); c 2960 src/coding.c switch (c) c 2966 src/coding.c ONE_MORE_BYTE (c); c 2967 src/coding.c if (c == 'N' || c == 'O') c 2973 src/coding.c else if (c == '1') c 2983 src/coding.c else if (c >= '0' && c <= '4') c 2990 src/coding.c if (c >= '(' && c <= '/') c 2995 src/coding.c || (id = iso_charset_table[0][c >= ','][c1]) < 0) c 3004 src/coding.c else if (c == '$') c 3007 src/coding.c ONE_MORE_BYTE (c); c 3008 src/coding.c if (c >= '@' && c <= 'B') c 3010 src/coding.c id = iso_charset_table[1][0][c]; c 3011 src/coding.c else if (c >= '(' && c <= '/') c 3015 src/coding.c || (id = iso_charset_table[1][c >= ','][c1]) < 0) c 3027 src/coding.c if (c >= 0x80) c 3036 src/coding.c if (c >= 0x80) c 3107 src/coding.c if (c < 0) c 3109 src/coding.c if (c < 0x80) c 3117 src/coding.c if (c >= 0xA0) c 3131 src/coding.c ONE_MORE_BYTE (c); c 3132 src/coding.c if (c < 0xA0) c 3157 src/coding.c || NILP (AREF (Vlatin_extra_code_table, c))) c 3428 src/coding.c #define STORE_COMPOSITION_CHAR(c) \ c 3430 src/coding.c *charbuf++ = (c); \ c 3463 src/coding.c int c; c 3906 src/coding.c CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c1, c); c 3907 src/coding.c if (c < 0) c 3920 src/coding.c *charbuf++ = c; c 3930 src/coding.c *charbuf++ = c; c 3934 src/coding.c STORE_COMPOSITION_CHAR (c); c 3941 src/coding.c ONE_MORE_BYTE (c); c 3942 src/coding.c *charbuf++ = c < 0 ? -c : ASCII_CHAR_P (c) ? c : BYTE8_TO_CHAR (c); c 4192 src/coding.c #define ENCODE_ISO_CHARACTER(charset, c) \ c 4195 src/coding.c CODING_ENCODE_CHAR (coding, dst, dst_end, (charset), (c), code); \ c 4312 src/coding.c int c, found = 0, reg; c 4330 src/coding.c c = *charbuf++; c 4331 src/coding.c if (c == '\n') c 4333 src/coding.c charset = char_charset (c, charset_list, NULL); c 4371 src/coding.c int c; c 4417 src/coding.c c = *charbuf++; c 4419 src/coding.c if (c < 0) c 4437 src/coding.c charbuf += -c - 1; c 4442 src/coding.c if (c < 0x20 || c == 0x7F) c 4444 src/coding.c if (c == '\n' c 4445 src/coding.c || (c == '\r' && EQ (eol_type, Qmac))) c 4463 src/coding.c EMIT_ONE_ASCII_BYTE (c); c 4465 src/coding.c else if (ASCII_CHAR_P (c)) c 4468 src/coding.c EMIT_ONE_ASCII_BYTE (c); c 4472 src/coding.c ENCODE_ISO_CHARACTER (charset, c); c 4475 src/coding.c else if (CHAR_BYTE8_P (c)) c 4477 src/coding.c c = CHAR_TO_BYTE8 (c); c 4478 src/coding.c EMIT_ONE_BYTE (c); c 4489 src/coding.c CODING_CHAR_CHARSET_P (coding, dst, dst_end, c, charset, result); c 4491 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list, c 4495 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list, c 4501 src/coding.c c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; c 4506 src/coding.c c = coding->default_char; c 4507 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, c 4511 src/coding.c ENCODE_ISO_CHARACTER (charset, c); c 4577 src/coding.c int c; c 4591 src/coding.c ONE_MORE_BYTE (c); c 4592 src/coding.c if (c < 0x80) c 4594 src/coding.c if ((c >= 0x81 && c <= 0x9F) c 4595 src/coding.c || (c >= 0xE0 && c <= max_first_byte_of_2_byte_code)) c 4597 src/coding.c ONE_MORE_BYTE (c); c 4598 src/coding.c if (c < 0x40 || c == 0x7F || c > 0xFC) c 4602 src/coding.c else if (c >= 0xA0 && c < 0xE0) c 4632 src/coding.c int c; c 4641 src/coding.c ONE_MORE_BYTE (c); c 4642 src/coding.c if (c < 0x80) c 4644 src/coding.c if (c >= 0xA1) c 4646 src/coding.c ONE_MORE_BYTE (c); c 4647 src/coding.c if (c < 0x40 || (c >= 0x7F && c <= 0xA0)) c 4702 src/coding.c int c, c1; c 4716 src/coding.c c = byte_after_cr, byte_after_cr = -1; c 4718 src/coding.c ONE_MORE_BYTE (c); c 4719 src/coding.c if (c < 0) c 4721 src/coding.c if (c < 0x80) c 4723 src/coding.c if (eol_dos && c == '\r') c 4727 src/coding.c else if (c == 0x80 || c == 0xA0) c 4729 src/coding.c else if (c >= 0xA1 && c <= 0xDF) c 4732 src/coding.c c &= 0x7F; c 4735 src/coding.c else if (c <= 0xEF) c 4741 src/coding.c c = (c << 8) | c1; c 4742 src/coding.c SJIS_TO_JIS (c); c 4745 src/coding.c else if (c <= 0xFC && charset_kanji2) c 4751 src/coding.c c = (c << 8) | c1; c 4752 src/coding.c SJIS_TO_JIS2 (c); c 4765 src/coding.c CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); c 4766 src/coding.c *charbuf++ = c; c 4773 src/coding.c ONE_MORE_BYTE (c); c 4774 src/coding.c *charbuf++ = c < 0 ? -c : BYTE8_TO_CHAR (c); c 4815 src/coding.c int c, c1; c 4829 src/coding.c c = byte_after_cr, byte_after_cr = -1; c 4831 src/coding.c ONE_MORE_BYTE (c); c 4833 src/coding.c if (c < 0) c 4835 src/coding.c if (c < 0x80) c 4837 src/coding.c if (eol_dos && c == '\r') c 4844 src/coding.c if (c < 0xA1 || c > 0xFE) c 4849 src/coding.c c = c << 8 | c1; c 4860 src/coding.c CODING_DECODE_CHAR (coding, src, src_base, src_end, charset, c, c); c 4861 src/coding.c *charbuf++ = c; c 4868 src/coding.c ONE_MORE_BYTE (c); c 4869 src/coding.c *charbuf++ = c < 0 ? -c : BYTE8_TO_CHAR (c); c 4902 src/coding.c int c; c 4915 src/coding.c c = *charbuf++; c 4917 src/coding.c if (ASCII_CHAR_P (c) && ascii_compatible) c 4918 src/coding.c EMIT_ONE_ASCII_BYTE (c); c 4919 src/coding.c else if (CHAR_BYTE8_P (c)) c 4921 src/coding.c c = CHAR_TO_BYTE8 (c); c 4922 src/coding.c EMIT_ONE_BYTE (c); c 4928 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list, c 4940 src/coding.c c = coding->default_char; c 4941 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, c 4995 src/coding.c int c; c 5005 src/coding.c c = *charbuf++; c 5007 src/coding.c if (ASCII_CHAR_P (c) && ascii_compatible) c 5008 src/coding.c EMIT_ONE_ASCII_BYTE (c); c 5009 src/coding.c else if (CHAR_BYTE8_P (c)) c 5011 src/coding.c c = CHAR_TO_BYTE8 (c); c 5012 src/coding.c EMIT_ONE_BYTE (c); c 5018 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list, c 5030 src/coding.c c = coding->default_char; c 5031 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, c 5084 src/coding.c int c; c 5087 src/coding.c ONE_MORE_BYTE (c); c 5088 src/coding.c if (c < 0 || ! valids[c]) c 5090 src/coding.c if ((valids[c] > 1)) c 5285 src/coding.c int c; c 5295 src/coding.c c = *charbuf++; c 5296 src/coding.c if (ASCII_CHAR_P (c)) c 5297 src/coding.c EMIT_ONE_ASCII_BYTE (c); c 5298 src/coding.c else if (CHAR_BYTE8_P (c)) c 5300 src/coding.c c = CHAR_TO_BYTE8 (c); c 5301 src/coding.c EMIT_ONE_BYTE (c); c 5306 src/coding.c int len = CHAR_STRING (c, str); c 5315 src/coding.c c = *charbuf++; c 5316 src/coding.c EMIT_ONE_BYTE (c); c 5328 src/coding.c c = *charbuf++; c 5329 src/coding.c if (ASCII_CHAR_P (c)) c 5330 src/coding.c *dst++ = c; c 5331 src/coding.c else if (CHAR_BYTE8_P (c)) c 5332 src/coding.c *dst++ = CHAR_TO_BYTE8 (c); c 5334 src/coding.c dst += CHAR_STRING (c, dst); c 5384 src/coding.c int c; c 5390 src/coding.c ONE_MORE_BYTE (c); c 5391 src/coding.c if (c < 0) c 5393 src/coding.c val = AREF (valids, c); c 5396 src/coding.c if (c >= 0x80) c 5398 src/coding.c if (c < 0xA0 c 5401 src/coding.c || NILP (AREF (Vlatin_extra_code_table, c)))) c 5413 src/coding.c ONE_MORE_BYTE (c); c 5414 src/coding.c if (c < charset->code_space[(dim - 1 - idx) * 4] c 5415 src/coding.c || c > charset->code_space[(dim - 1 - idx) * 4 + 1]) c 5432 src/coding.c ONE_MORE_BYTE (c); c 5433 src/coding.c if (c < charset->code_space[(dim - 1 - idx) * 4] c 5434 src/coding.c || c > charset->code_space[(dim - 1 - idx) * 4 + 1]) c 5483 src/coding.c int c; c 5502 src/coding.c c = byte_after_cr; c 5507 src/coding.c ONE_MORE_BYTE (c); c 5508 src/coding.c if (eol_dos && c == '\r') c 5511 src/coding.c if (c < 0) c 5513 src/coding.c code = c; c 5515 src/coding.c val = AREF (valids, c); c 5524 src/coding.c ONE_MORE_BYTE (c); c 5525 src/coding.c code = (code << 8) | c; c 5529 src/coding.c charset, code, c); c 5542 src/coding.c ONE_MORE_BYTE (c); c 5543 src/coding.c code = (code << 8) | c; c 5547 src/coding.c src_end, charset, code, c); c 5548 src/coding.c if (c >= 0) c 5553 src/coding.c if (c < 0) c 5564 src/coding.c *charbuf++ = c; c 5571 src/coding.c ONE_MORE_BYTE (c); c 5572 src/coding.c *charbuf++ = c < 0 ? -c : ASCII_CHAR_P (c) ? c : BYTE8_TO_CHAR (c); c 5596 src/coding.c int c; c 5607 src/coding.c c = *charbuf++; c 5608 src/coding.c if (ascii_compatible && ASCII_CHAR_P (c)) c 5609 src/coding.c EMIT_ONE_ASCII_BYTE (c); c 5610 src/coding.c else if (CHAR_BYTE8_P (c)) c 5612 src/coding.c c = CHAR_TO_BYTE8 (c); c 5613 src/coding.c EMIT_ONE_BYTE (c); c 5617 src/coding.c CODING_CHAR_CHARSET (coding, dst, dst_end, c, charset_list, c 5635 src/coding.c c = CODING_INHIBIT_CHARACTER_SUBSTITUTION; c 5637 src/coding.c c = coding->default_char; c 5638 src/coding.c EMIT_ONE_BYTE (c); c 6184 src/coding.c int c = *src; c 6186 src/coding.c if (c & 0x80) c 6189 src/coding.c if (c == '\r') c 6199 src/coding.c else if (c == '\n') c 6204 src/coding.c int c = *src; c 6207 src/coding.c if (! (c & 0x80)) c 6209 src/coding.c if (c == '\r') c 6211 src/coding.c else if (c == '\n') c 6247 src/coding.c int c = *src; c 6252 src/coding.c if (c < 0x20) c 6254 src/coding.c if (c == '\r') c 6265 src/coding.c else if (c == '\n') c 6269 src/coding.c else if (UTF_8_2_OCTET_LEADING_P (c)) c 6271 src/coding.c if (c < 0xC2 /* overlong sequence */ c 6277 src/coding.c else if (UTF_8_3_OCTET_LEADING_P (c)) c 6283 src/coding.c c = (((c & 0xF) << 12) c 6285 src/coding.c if (c < 0x800 /* overlong sequence */ c 6286 src/coding.c || (c >= 0xd800 && c < 0xe000)) /* surrogates (invalid) */ c 6290 src/coding.c else if (UTF_8_4_OCTET_LEADING_P (c)) c 6297 src/coding.c c = (((c & 0x7) << 18) | ((src[1] & 0x3F) << 12) c 6299 src/coding.c if (c < 0x10000 /* overlong sequence */ c 6300 src/coding.c || c >= 0x110000) /* non-Unicode character */ c 6389 src/coding.c unsigned char c; c 6401 src/coding.c c = src[lsb]; c 6402 src/coding.c if (src[msb] == 0 && (c == '\n' || c == '\r')) c 6406 src/coding.c if (c == '\n') c 6444 src/coding.c c = *src++; c 6445 src/coding.c if (c == '\n' || c == '\r') c 6449 src/coding.c if (c == '\n') c 6530 src/coding.c int c, i; c 6542 src/coding.c c = *src; c 6543 src/coding.c if (c & 0x80) c 6549 src/coding.c else if (c < 0x20) c 6551 src/coding.c if ((c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) c 6571 src/coding.c else if (! c && !inhibit_nbd) c 6580 src/coding.c if (c == '\r') c 6592 src/coding.c else if (c == '\n') c 6937 src/coding.c #define LOOKUP_TRANSLATION_TABLE(table, c, trans) \ c 6942 src/coding.c trans = CHAR_TABLE_REF (table, c); \ c 6944 src/coding.c c = XFIXNAT (trans), trans = Qnil; \ c 6953 src/coding.c trans = CHAR_TABLE_REF (XCAR (tail), c); \ c 6955 src/coding.c c = XFIXNAT (trans), trans = Qnil; \ c 7029 src/coding.c int c = *buf; c 7032 src/coding.c if (c >= 0) c 7037 src/coding.c LOOKUP_TRANSLATION_TABLE (translation_table, c, trans); c 7042 src/coding.c c = XFIXNUM (trans); c 7046 src/coding.c c = XFIXNUM (AREF (trans, 0)); c 7074 src/coding.c c = XFIXNUM (AREF (trans, i)); c 7076 src/coding.c || ! CHAR_BYTE8_P (c)) c 7077 src/coding.c CHAR_STRING_ADVANCE_NO_UNIFY (c, dst); c 7079 src/coding.c *dst++ = CHAR_TO_BYTE8 (c); c 7086 src/coding.c buf += -c; c 7111 src/coding.c int c; c 7113 src/coding.c ONE_MORE_BYTE (c); c 7133 src/coding.c *dst++ = c; c 7143 src/coding.c int c = *src++; c 7168 src/coding.c EMIT_ONE_BYTE (c); c 7437 src/coding.c int c; c 7444 src/coding.c c = string_char_advance (&src); c 7449 src/coding.c c = *src++; c 7451 src/coding.c if (c & 0x80) c 7452 src/coding.c c = BYTE8_TO_CHAR (c); c 7454 src/coding.c coding->charbuf[coding->charbuf_used++] = c; c 7612 src/coding.c int c; c 7664 src/coding.c c = *src++, pos++; c 7669 src/coding.c c = STRING_CHAR_ADVANCE_NO_UNIFY (src), pos += bytes; c 7671 src/coding.c c = BYTE8_TO_CHAR (*src), src++, pos++; c 7675 src/coding.c c = STRING_CHAR_ADVANCE_NO_UNIFY (src), pos++; c 7676 src/coding.c if ((c == '\r') && (coding->mode & CODING_MODE_SELECTIVE_DISPLAY)) c 7677 src/coding.c c = '\n'; c 7680 src/coding.c if (c == '\n') c 7685 src/coding.c c = '\r'; c 7690 src/coding.c LOOKUP_TRANSLATION_TABLE (translation_table, c, trans); c 7692 src/coding.c *buf++ = c; c 7700 src/coding.c lookup_buf[0] = c; c 7707 src/coding.c c = XFIXNUM (trans); c 7713 src/coding.c c = XFIXNUM (AREF (trans, 0)); c 7717 src/coding.c *buf++ = c; c 8662 src/coding.c int c, i; c 8672 src/coding.c c = *src; c 8673 src/coding.c if (c & 0x80) c 8679 src/coding.c else if (c < 0x20) c 8681 src/coding.c if ((c == ISO_CODE_ESC || c == ISO_CODE_SI || c == ISO_CODE_SO) c 8701 src/coding.c else if (! c && !inhibit_nbd) c 9002 src/coding.c char_encodable_p (int c, Lisp_Object attrs) c 9010 src/coding.c c = translate_char (translation_table, c); c 9015 src/coding.c if (CHAR_CHARSET_P (c, charset)) c 9037 src/coding.c int c; c 9102 src/coding.c c = string_char_advance (&p); c 9103 src/coding.c if (!NILP (char_table_ref (work_table, c))) c 9113 src/coding.c else if (char_encodable_p (c, elt)) c 9137 src/coding.c char_table_set (work_table, c, Qt); c 9222 src/coding.c int c; c 9235 src/coding.c c = string_char_advance (&p); c 9236 src/coding.c if (! (ASCII_CHAR_P (c) && ascii_compatible) c 9237 src/coding.c && ! char_charset (translate_char (translation_table, c), c 9290 src/coding.c int c; c 9353 src/coding.c c = string_char_advance (&p); c 9359 src/coding.c if (! char_encodable_p (c, XCAR (elt))) c 9628 src/coding.c get_char_bytes (int c, int *len) c 9638 src/coding.c if (chars[last_index] == c) c 9643 src/coding.c if (chars[1 - last_index] == c) c 9649 src/coding.c chars[last_index] = c; c 9650 src/coding.c *len = nbytes[last_index] = CHAR_STRING (c, bytes[last_index]); c 9750 src/coding.c int c = *p; c 9751 src/coding.c int len = BYTES_BY_CHAR_HEAD (c); c 9756 src/coding.c || (len == 2 ? ! CHAR_BYTE8_HEAD_P (c) c 9999 src/coding.c #define UTF_8_SEQUENCE_LENGTH(c) \ c 10000 src/coding.c ((c) < 0xC2 ? 0 \ c 10001 src/coding.c : (c) < 0xE0 ? 2 \ c 10002 src/coding.c : (c) < 0xF0 ? 3 \ c 10003 src/coding.c : (c) < 0xF8 ? 4 \ c 10004 src/coding.c : (c) == 0xF8 ? 5 \ c 10031 src/coding.c int c = *p; c 10033 src/coding.c int len = UTF_8_SEQUENCE_LENGTH (c); c 10164 src/coding.c int c = *p; c 10165 src/coding.c if (c < 0x80) c 10170 src/coding.c int len = UTF_8_SEQUENCE_LENGTH (c); c 10200 src/coding.c dst += BYTE8_STRING (c, dst); c 10479 src/coding.c int c; c 10497 src/coding.c c = ch; c 10502 src/coding.c c = ch - 0x80; c 10513 src/coding.c c = ch; c 10514 src/coding.c SJIS_TO_JIS (c); c 10517 src/coding.c c = DECODE_CHAR (charset, c); c 10518 src/coding.c if (c < 0) c 10520 src/coding.c return make_fixnum (c); c 10530 src/coding.c int c; c 10535 src/coding.c c = XFIXNAT (ch); c 10539 src/coding.c if (ASCII_CHAR_P (c) c 10544 src/coding.c charset = char_charset (c, charset_list, &code); c 10546 src/coding.c error ("Can't encode by shift_jis encoding: %c", c); c 10560 src/coding.c int c; c 10577 src/coding.c c = ch; c 10587 src/coding.c c = ch; c 10590 src/coding.c c = DECODE_CHAR (charset, c); c 10591 src/coding.c if (c < 0) c 10593 src/coding.c return make_fixnum (c); c 10603 src/coding.c int c; c 10607 src/coding.c c = XFIXNAT (ch); c 10610 src/coding.c if (ASCII_CHAR_P (c) c 10615 src/coding.c charset = char_charset (c, charset_list, &code); c 10617 src/coding.c error ("Can't encode by Big5 encoding: %c", c); c 24 src/commands.h #define Ctl(c) ((c)&037) c 829 src/comp.c unsigned char c = *from++; c 831 src/comp.c if (c == '.') c 832 src/comp.c c = '_'; c 834 src/comp.c *to++ = c; c 1809 src/comp.c emit_XCAR (gcc_jit_rvalue *c) c 1821 src/comp.c emit_XCONS (c), c 1831 src/comp.c emit_lval_XCAR (gcc_jit_rvalue *c) c 1842 src/comp.c emit_XCONS (c), c 1852 src/comp.c emit_XCDR (gcc_jit_rvalue *c) c 1865 src/comp.c emit_XCONS (c), c 1877 src/comp.c emit_lval_XCDR (gcc_jit_rvalue *c) c 1890 src/comp.c emit_XCONS (c), c 1945 src/comp.c emit_car_addr (gcc_jit_rvalue *c) c 1949 src/comp.c return gcc_jit_lvalue_get_address (emit_lval_XCAR (c), NULL); c 1953 src/comp.c emit_cdr_addr (gcc_jit_rvalue *c) c 1957 src/comp.c return gcc_jit_lvalue_get_address (emit_lval_XCDR (c), NULL); c 1961 src/comp.c emit_XSETCAR (gcc_jit_rvalue *c, gcc_jit_rvalue *n) c 1969 src/comp.c emit_car_addr (c), c 1975 src/comp.c emit_XSETCDR (gcc_jit_rvalue *c, gcc_jit_rvalue *n) c 1983 src/comp.c emit_cdr_addr (c), c 2036 src/comp.c NILP (func) ? value : CALL1I (comp-func-c-name, func), c 3615 src/comp.c gcc_jit_rvalue *c = gcc_jit_param_as_rvalue (param[0]); c 3624 src/comp.c emit_CONSP (c)), c 3629 src/comp.c gcc_jit_block_end_with_return (comp.block, NULL, emit_XCAR (c)); c 3631 src/comp.c gcc_jit_block_end_with_return (comp.block, NULL, emit_XCDR (c)); c 3638 src/comp.c emit_cond_jump (emit_NILP (c), is_nil_b, not_nil_b); c 3647 src/comp.c { emit_lisp_obj_rval (Qlistp), c }; c 4197 src/comp.c Lisp_Object c_name = CALL1I (comp-func-c-name, func); c 4259 src/comp.c SSDATA (CALL1I (comp-func-c-name, func)), c 4261 src/comp.c Fputhash (CALL1I (comp-func-c-name, func), c 4273 src/comp.c comp.func = xmint_pointer (Fgethash (CALL1I (comp-func-c-name, func), c 869 src/composite.c int c c 873 src/composite.c ASET (header, i + 1, make_fixnum (c)); c 894 src/composite.c int c = XFIXNAT (AREF (header, i + 1)); c 903 src/composite.c LGLYPH_SET_CHAR (g, c); c 915 src/composite.c int width = XFIXNAT (CHAR_TABLE_REF (Vchar_width_table, c)); c 917 src/composite.c LGLYPH_SET_CODE (g, c); c 1002 src/composite.c char_composable_p (int c) c 1005 src/composite.c return (c >= ' ' c 1006 src/composite.c && (c == ZERO_WIDTH_NON_JOINER || c == ZERO_WIDTH_JOINER c 1009 src/composite.c || (TAG_SPACE <= c && c <= CANCEL_TAG) c 1013 src/composite.c && (val = CHAR_TABLE_REF (Vunicode_category_table, c), c 1056 src/composite.c int c; c 1115 src/composite.c c = (STRINGP (string) c 1118 src/composite.c if (c == '\n') c 1123 src/composite.c val = CHAR_TABLE_REF (Vcomposition_function_table, c); c 1136 src/composite.c cmp_it->ch = c; c 1172 src/composite.c c = string_char_and_length (p, &len); c 1174 src/composite.c while (char_composable_p (c)) c 1176 src/composite.c val = CHAR_TABLE_REF (Vcomposition_function_table, c); c 1216 src/composite.c cmp_it->ch = c; c 1237 src/composite.c c = STRING_CHAR (p); c 1245 src/composite.c while (charpos - 1 > endpos && ! char_composable_p (c)) c 1248 src/composite.c c = FETCH_MULTIBYTE_CHAR (bytepos); c 1253 src/composite.c while (charpos - 1 > endpos && ! char_composable_p (c)) c 1259 src/composite.c c = STRING_CHAR (p); c 1450 src/composite.c int c UNINIT; c 1460 src/composite.c c = -1; c 1466 src/composite.c if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t') c 1468 src/composite.c if (c == '\t') c 1469 src/composite.c c = ' '; c 1524 src/composite.c c = XFIXNUM (LGSTRING_CHAR (gstring, from + i)); c 1525 src/composite.c cmp_it->nbytes += CHAR_BYTES (c); c 1526 src/composite.c cmp_it->width += CHARACTER_WIDTH (c); c 1529 src/composite.c return c; c 1633 src/composite.c int c; c 1714 src/composite.c c = STRING_CHAR (cur.p); c 1715 src/composite.c if (! char_composable_p (c)) c 1723 src/composite.c c = STRING_CHAR (cur.p); c 1724 src/composite.c } while (! char_composable_p (c)); c 1739 src/composite.c c = STRING_CHAR (cur.p); c 1740 src/composite.c if (! char_composable_p (c)) c 1755 src/composite.c c = STRING_CHAR (cur.p); c 1756 src/composite.c for (val = CHAR_TABLE_REF (Vcomposition_function_table, c); c 1773 src/composite.c tail, w, NULL, string, Qnil, c); c 266 src/composite.h #define LGSTRING_SET_CHAR(lgs, i, c) ASET (LGSTRING_HEADER (lgs), (i) + 1, (c)) c 2553 src/data.c int c; c 2562 src/data.c c = STRING_CHAR (SDATA (array) + idxval_byte); c 2563 src/data.c return make_fixnum (c); c 2635 src/data.c int c = XFIXNAT (newelt); c 2646 src/data.c else if (SINGLE_BYTE_CHAR_P (c)) c 2648 src/data.c SSET (array, idxval, c); c 2663 src/data.c int new_bytes = CHAR_STRING (c, p0); c 2901 src/data.c cons_to_unsigned (Lisp_Object c, uintmax_t max) c 2906 src/data.c if (FLOATP (c)) c 2908 src/data.c double d = XFLOAT_DATA (c); c 2917 src/data.c Lisp_Object hi = CONSP (c) ? XCAR (c) : c; c 2920 src/data.c if (valid && CONSP (c)) c 2923 src/data.c Lisp_Object rest = XCDR (c); c 2962 src/data.c cons_to_signed (Lisp_Object c, intmax_t min, intmax_t max) c 2967 src/data.c if (FLOATP (c)) c 2969 src/data.c double d = XFLOAT_DATA (c); c 2978 src/data.c Lisp_Object hi = CONSP (c) ? XCAR (c) : c; c 2981 src/data.c if (valid && CONSP (c)) c 2984 src/data.c Lisp_Object rest = XCDR (c); c 3897 src/data.c (Lisp_Object a, Lisp_Object b, Lisp_Object c) c 3899 src/data.c return bool_vector_binop_driver (a, b, c, bool_vector_exclusive_or); c 3908 src/data.c (Lisp_Object a, Lisp_Object b, Lisp_Object c) c 3910 src/data.c return bool_vector_binop_driver (a, b, c, bool_vector_union); c 3919 src/data.c (Lisp_Object a, Lisp_Object b, Lisp_Object c) c 3921 src/data.c return bool_vector_binop_driver (a, b, c, bool_vector_intersection); c 3930 src/data.c (Lisp_Object a, Lisp_Object b, Lisp_Object c) c 3932 src/data.c return bool_vector_binop_driver (a, b, c, bool_vector_set_difference); c 2602 src/dispextern.h int c, len; c 2811 src/dispextern.h && ((IT)->c == '\n' \ c 2812 src/dispextern.h || ((IT)->c == '\r' && (IT)->selective))) c 1175 src/dispnew.c int c = glyph->u.ch; c 1178 src/dispnew.c c -= SPACEGLYPH; c 1179 src/dispnew.c hash = (((hash << 4) + (hash >> 24)) & 0x0fffffff) + c; c 1485 src/dispnew.c int c; c 4521 src/dispnew.c struct glyph_row *c = MATRIX_ROW (current_matrix, i); c 4528 src/dispnew.c if (c->stipple_p) c 4531 src/dispnew.c if (c->enabled_p c 4534 src/dispnew.c && c->y == d->y c 4535 src/dispnew.c && MATRIX_ROW_BOTTOM_Y (c) <= yb c 4537 src/dispnew.c && row_equal_p (c, d, 1)) c 4539 src/dispnew.c assign_row (c, d); c 41 src/disptab.h #define DISP_CHAR_VECTOR(dp, c) \ c 42 src/disptab.h (ASCII_CHAR_P(c) \ c 46 src/disptab.h ? XSUB_CHAR_TABLE ((dp)->ascii)->contents[c] \ c 48 src/disptab.h : disp_char_vector ((dp), (c))) c 98 src/disptab.h #define SET_GLYPH_FROM_CHAR(glyph, c) \ c 99 src/disptab.h SET_GLYPH (glyph, c, DEFAULT_FACE_ID) c 243 src/doc.c int c = *from++; c 244 src/doc.c if (c == 1) c 245 src/doc.c *to++ = c; c 246 src/doc.c else if (c == '0') c 248 src/doc.c else if (c == '_') c 252 src/doc.c unsigned char uc = c; c 150 src/editfns.c int c, len; c 154 src/editfns.c c = XFIXNAT (character); c 156 src/editfns.c len = CHAR_STRING (c, str); c 1341 src/editfns.c int c = XFIXNAT (val); c 1346 src/editfns.c len = CHAR_STRING (c, str); c 1349 src/editfns.c str[0] = CHAR_TO_BYTE8 (c); c 1490 src/editfns.c int c, len; c 1499 src/editfns.c c = XFIXNAT (character); c 1502 src/editfns.c len = CHAR_STRING (c, str); c 1504 src/editfns.c str[0] = c, len = 1; c 4172 src/editfns.c int c = BYTE8_TO_CHAR (format_char); c 4173 src/editfns.c convbytes = CHAR_STRING (c, str); c 3505 src/emacs.c char c = SEPCHAR; c 3506 src/emacs.c Vpath_separator = make_string (&c, 1); c 238 src/eval.c struct handler *c = push_handler (Qunbound, CATCHER); c 239 src/eval.c eassert (c == handlerlist_sentinel); c 1192 src/eval.c struct handler *c = push_handler (tag, CATCHER); c 1195 src/eval.c if (! sys_setjmp (c->jmp)) c 1198 src/eval.c eassert (handlerlist == c); c 1199 src/eval.c handlerlist = c->next; c 1205 src/eval.c clobbered_eassert (handlerlist == c); c 1275 src/eval.c struct handler *c; c 1278 src/eval.c for (c = handlerlist; c; c = c->next) c 1280 src/eval.c if (c->type == CATCHER_ALL) c 1281 src/eval.c unwind_to_catch (c, NONLOCAL_EXIT_THROW, Fcons (tag, value)); c 1282 src/eval.c if (c->type == CATCHER && EQ (c->tag_or_ch, tag)) c 1283 src/eval.c unwind_to_catch (c, NONLOCAL_EXIT_THROW, value); c 1397 src/eval.c struct handler *c = push_handler (condition, CONDITION_CASE); c 1398 src/eval.c if (sys_setjmp (c->jmp)) c 1464 src/eval.c struct handler *c = push_handler (handlers, CONDITION_CASE); c 1465 src/eval.c if (sys_setjmp (c->jmp)) c 1468 src/eval.c clobbered_eassert (handlerlist == c); c 1475 src/eval.c eassert (handlerlist == c); c 1476 src/eval.c handlerlist = c->next; c 1488 src/eval.c struct handler *c = push_handler (handlers, CONDITION_CASE); c 1489 src/eval.c if (sys_setjmp (c->jmp)) c 1492 src/eval.c clobbered_eassert (handlerlist == c); c 1499 src/eval.c eassert (handlerlist == c); c 1500 src/eval.c handlerlist = c->next; c 1515 src/eval.c struct handler *c = push_handler (handlers, CONDITION_CASE); c 1516 src/eval.c if (sys_setjmp (c->jmp)) c 1519 src/eval.c clobbered_eassert (handlerlist == c); c 1526 src/eval.c eassert (handlerlist == c); c 1527 src/eval.c handlerlist = c->next; c 1545 src/eval.c struct handler *c = push_handler (handlers, CONDITION_CASE); c 1547 src/eval.c redisplay_deep_handler = c; c 1548 src/eval.c if (sys_setjmp (c->jmp)) c 1551 src/eval.c clobbered_eassert (handlerlist == c); c 1559 src/eval.c eassert (handlerlist == c); c 1560 src/eval.c handlerlist = c->next; c 1576 src/eval.c struct handler *c = push_handler_nosignal (Qt, CATCHER_ALL); c 1577 src/eval.c if (c == NULL) c 1580 src/eval.c if (sys_setjmp (c->jmp) == 0) c 1583 src/eval.c eassert (handlerlist == c); c 1584 src/eval.c handlerlist = c->next; c 1589 src/eval.c eassert (handlerlist == c); c 1590 src/eval.c enum nonlocal_exit type = c->nonlocal_exit; c 1591 src/eval.c Lisp_Object val = c->val; c 1592 src/eval.c handlerlist = c->next; c 1600 src/eval.c struct handler *c = push_handler_nosignal (tag_ch_val, handlertype); c 1601 src/eval.c if (!c) c 1602 src/eval.c memory_full (sizeof *c); c 1603 src/eval.c return c; c 1609 src/eval.c struct handler *CACHEABLE c = handlerlist->nextfree; c 1610 src/eval.c if (!c) c 1612 src/eval.c c = malloc (sizeof *c); c 1613 src/eval.c if (!c) c 1614 src/eval.c return c; c 1616 src/eval.c malloc_probe (sizeof *c); c 1617 src/eval.c c->nextfree = NULL; c 1618 src/eval.c handlerlist->nextfree = c; c 1620 src/eval.c c->type = handlertype; c 1621 src/eval.c c->tag_or_ch = tag_ch_val; c 1622 src/eval.c c->val = Qnil; c 1623 src/eval.c c->next = handlerlist; c 1624 src/eval.c c->f_lisp_eval_depth = lisp_eval_depth; c 1625 src/eval.c c->pdlcount = SPECPDL_INDEX (); c 1626 src/eval.c c->act_rec = get_act_rec (current_thread); c 1627 src/eval.c c->poll_suppress_count = poll_suppress_count; c 1628 src/eval.c c->interrupt_input_blocked = interrupt_input_blocked; c 1630 src/eval.c c->x_error_handler_depth = x_error_message_count; c 1632 src/eval.c handlerlist = c; c 1633 src/eval.c return c; c 622 src/fileio.c unsigned char c = namelen ? SREF (name, namelen - 1) : 0; c 623 src/fileio.c return IS_DIRECTORY_SEP (c) ? Qt : Qnil; c 752 src/fns.c Lisp_Object c = Fcons (XCAR (tail), Qnil); c 753 src/fns.c XSETCDR (prev, c); c 754 src/fns.c prev = c; c 847 src/fns.c int c = XFIXNAT (ch); c 848 src/fns.c arg_len_byte += CHAR_BYTES (c); c 849 src/fns.c if (!ASCII_CHAR_P (c) && !CHAR_BYTE8_P (c)) c 866 src/fns.c int c = XFIXNAT (ch); c 867 src/fns.c arg_len_byte += CHAR_BYTES (c); c 868 src/fns.c if (!ASCII_CHAR_P (c) && !CHAR_BYTE8_P (c)) c 958 src/fns.c int c = XFIXNAT (AREF (arg, j)); c 960 src/fns.c toindex_byte += CHAR_STRING (c, SDATA (result) + toindex_byte); c 962 src/fns.c SSET (result, toindex_byte++, c); c 969 src/fns.c int c = XFIXNAT (XCAR (tail)); c 971 src/fns.c toindex_byte += CHAR_STRING (c, SDATA (result) + toindex_byte); c 973 src/fns.c SSET (result, toindex_byte++, c); c 1048 src/fns.c int c; c 1052 src/fns.c c = fetch_string_char_advance_no_check (arg, &char_idx, c 1056 src/fns.c c = SREF (arg, argindex); c 1057 src/fns.c elt = make_fixed_natnum (c); c 1135 src/fns.c int c = fetch_string_char_advance_no_check (arg, &i, &byte); c 1136 src/fns.c *dst++ = make_fixnum (c); c 2105 src/fns.c int c; c 2113 src/fns.c c = STRING_CHAR (SDATA (seq) + ibyte); c 2114 src/fns.c cbytes = CHAR_BYTES (c); c 2118 src/fns.c c = SREF (seq, i); c 2122 src/fns.c if (c != XFIXNUM (elt)) c 2143 src/fns.c c = STRING_CHAR (SDATA (seq) + ibyte); c 2144 src/fns.c cbytes = CHAR_BYTES (c); c 2148 src/fns.c c = SREF (seq, i); c 2152 src/fns.c if (c != XFIXNUM (elt)) c 3029 src/fns.c int c = fetch_string_char_advance (seq, &i, &i_byte); c 3030 src/fns.c Lisp_Object dummy = call1 (fn, make_fixnum (c)); c 3847 src/fns.c int c; c 3856 src/fns.c c = string_char_and_length ((unsigned char *) from + i, &bytes); c 3857 src/fns.c if (CHAR_BYTE8_P (c)) c 3858 src/fns.c c = CHAR_TO_BYTE8 (c); c 3859 src/fns.c else if (c >= 128) c 3864 src/fns.c c = from[i++]; c 3881 src/fns.c *e++ = b64_value_to_char[0x3f & c >> 2]; c 3882 src/fns.c value = (0x03 & c) << 4; c 3899 src/fns.c c = string_char_and_length ((unsigned char *) from + i, &bytes); c 3900 src/fns.c if (CHAR_BYTE8_P (c)) c 3901 src/fns.c c = CHAR_TO_BYTE8 (c); c 3902 src/fns.c else if (c >= 128) c 3907 src/fns.c c = from[i++]; c 3909 src/fns.c *e++ = b64_value_to_char[value | (0x0f & c >> 4)]; c 3910 src/fns.c value = (0x0f & c) << 2; c 3924 src/fns.c c = string_char_and_length ((unsigned char *) from + i, &bytes); c 3925 src/fns.c if (CHAR_BYTE8_P (c)) c 3926 src/fns.c c = CHAR_TO_BYTE8 (c); c 3927 src/fns.c else if (c >= 128) c 3932 src/fns.c c = from[i++]; c 3934 src/fns.c *e++ = b64_value_to_char[value | (0x03 & c >> 6)]; c 3935 src/fns.c *e++ = b64_value_to_char[0x3f & c]; c 4075 src/fns.c unsigned char c; c 4087 src/fns.c c = *f++; c 4088 src/fns.c v1 = b64_char_to_value[c]; c 4102 src/fns.c c = *f++; c 4103 src/fns.c v1 = b64_char_to_value[c]; c 4111 src/fns.c c = value >> 16 & 0xff; c 4112 src/fns.c if (c & multibyte_bit) c 4113 src/fns.c e += BYTE8_STRING (c, (unsigned char *) e); c 4115 src/fns.c *e++ = c; c 4129 src/fns.c c = *f++; c 4130 src/fns.c v1 = b64_char_to_value[c]; c 4134 src/fns.c if (c == '=') c 4140 src/fns.c c = *f++; c 4142 src/fns.c while (b64_char_to_value[c] < 0); c 4144 src/fns.c if (c != '=') c 4153 src/fns.c c = value >> 8 & 0xff; c 4154 src/fns.c if (c & multibyte_bit) c 4155 src/fns.c e += BYTE8_STRING (c, (unsigned char *) e); c 4157 src/fns.c *e++ = c; c 4171 src/fns.c c = *f++; c 4172 src/fns.c v1 = b64_char_to_value[c]; c 4176 src/fns.c if (c == '=') c 4183 src/fns.c c = value & 0xff; c 4184 src/fns.c if (c & multibyte_bit) c 4185 src/fns.c e += BYTE8_STRING (c, (unsigned char *) e); c 4187 src/fns.c *e++ = c; c 4951 src/fns.c EMACS_UINT c; c 4954 src/fns.c memcpy (&c, p, sizeof hash); c 4956 src/fns.c hash = sxhash_combine (hash, c); c 4963 src/fns.c unsigned char c = *p++; c 4964 src/fns.c hash = sxhash_combine (hash, c); c 6068 src/fns.c int c = SREF (needle, i); c 6069 src/fns.c if (CHAR_BYTE8_HEAD_P (c)) c 6071 src/fns.c else if (!ASCII_CHAR_P (c)) c 1311 src/font.c int c, k, l; c 1322 src/font.c c = SREF (val, k); c 1323 src/font.c if (c != '-' && c != '?' && c != ',' && c != '"') c 1324 src/font.c p[l++] = c; c 2782 src/font.c font_has_char (struct frame *f, Lisp_Object font, int c) c 2798 src/font.c return driver_list->driver->has_char (font, c); c 2805 src/font.c int result = fontp->driver->has_char (font, c); c 2810 src/font.c return (fontp->driver->encode_char (fontp, c) != FONT_INVALID_CODE); c 2817 src/font.c font_encode_char (Lisp_Object font_object, int c) c 2823 src/font.c return font->driver->encode_char (font, c); c 2911 src/font.c Lisp_Object *attrs, int pixel_size, int c) c 2922 src/font.c if (c < 0 || font_has_char (f, font_entity, c) > 0) c 2950 src/font.c return font_sort_entities (entities, prefer, f, c); c 2958 src/font.c font_find_for_lface (struct frame *f, Lisp_Object *attrs, Lisp_Object spec, int c) c 2979 src/font.c if (c >= 0 && ! NILP (AREF (spec, FONT_REGISTRY_INDEX))) c 2987 src/font.c && ENCODE_CHAR (repertory, c) == CHARSET_INVALID_CODE (repertory)) c 2989 src/font.c else if (c > encoding->max_char) c 3105 src/font.c attrs, pixel_size, c); c 3562 src/font.c font_at (int c, ptrdiff_t pos, struct face *face, struct window *w, c 3572 src/font.c if (c < 0) c 3580 src/font.c c = FETCH_CHAR (pos_byte); c 3583 src/font.c c = FETCH_BYTE (pos); c 3595 src/font.c c = STRING_CHAR (str); c 3598 src/font.c c = SDATA (string)[pos]; c 3620 src/font.c int face_id = FACE_FOR_CHAR (f, face, c, pos, string); c 3670 src/font.c int c; c 3713 src/font.c c = (NILP (string) c 3716 src/font.c Lisp_Object category = CHAR_TABLE_REF (Vunicode_category_table, c); c 3719 src/font.c || CHAR_VARIATION_SELECTOR_P (c))) c 3723 src/font.c font_object = font_for_char (face, c, pos - 1, string); c 3728 src/font.c if (font_encode_char (font_object, c) == FONT_INVALID_CODE) c 4474 src/font.c int c; c 4480 src/font.c c = XFIXNUM (ch); c 4496 src/font.c c = FETCH_CHAR (pos_byte); c 4500 src/font.c c = XFIXNUM (ch); c 4510 src/font.c if (! CHAR_VALID_P (c)) c 4514 src/font.c return terminal_glyph_code (FRAME_TERMINAL (f), c); c 4521 src/font.c face_id = FACE_FOR_CHAR (f, FACE_FROM_ID (f, face_id), c, pos, Qnil); c 4525 src/font.c unsigned code = face->font->driver->encode_char (face->font, c); c 4934 src/font.c int c = LGLYPH_CHAR (g); c 4938 src/font.c c > 0 ? make_fixnum (c) : Qnil), c 5114 src/font.c int c = fetch_char_advance (&charpos, &bytepos); c 5115 src/font.c chars[i] = make_fixnum (c); c 5131 src/font.c int c; c 5140 src/font.c c = string_char_advance (&p); c 5141 src/font.c chars[i] = make_fixnum (c); c 5170 src/font.c int c = XFIXNAT (chars[i]); c 5174 src/font.c code = font->driver->encode_char (font, c); c 5183 src/font.c LGLYPH_SET_CHAR (g, c); c 5262 src/font.c int c = XFIXNUM (ch); c 5264 src/font.c code[i] = font->driver->encode_char (font, c); c 646 src/font.h int (*has_char) (Lisp_Object font, int c); c 650 src/font.h unsigned (*encode_char) (struct font *font, int c); c 762 src/font.h int c, unsigned variations[256]); c 852 src/font.h Lisp_Object spec, int c); c 295 src/fontset.c #define FONTSET_REF(fontset, c) \ c 297 src/fontset.c ? CHAR_TABLE_REF (fontset, c) \ c 298 src/fontset.c : fontset_ref ((fontset), (c))) c 301 src/fontset.c fontset_ref (Lisp_Object fontset, int c) c 305 src/fontset.c elt = CHAR_TABLE_REF (fontset, c); c 309 src/fontset.c elt = CHAR_TABLE_REF (Vdefault_fontset, c); c 474 src/fontset.c fontset_get_font_group (Lisp_Object fontset, int c) c 481 src/fontset.c if (c >= 0) c 482 src/fontset.c font_group = CHAR_TABLE_REF (fontset, c); c 495 src/fontset.c else if (c >= 0) c 496 src/fontset.c font_group = char_table_ref_and_range (base_fontset, c, &from, &to); c 505 src/fontset.c if (c >= 0) c 529 src/fontset.c if (c >= 0) c 550 src/fontset.c fontset_find_font (Lisp_Object fontset, int c, struct face *face, c 560 src/fontset.c font_group = fontset_get_font_group (fontset, fallback ? -1 : c); c 683 src/fontset.c if (font_has_char (f, font_object, c)) c 697 src/fontset.c if (! NILP (font_object) && font_has_char (f, font_object, c)) c 706 src/fontset.c FONT_DEF_SPEC (font_def), c); c 736 src/fontset.c FONTSET_SET (fontset, make_fixnum (c), make_fixnum (0)); c 758 src/fontset.c fontset_font (Lisp_Object fontset, int c, struct face *face, int id) c 765 src/fontset.c FONT_DEFERRED_LOG ("current fontset: font for", make_fixnum (c), Qnil); c 766 src/fontset.c rfont_def = fontset_find_font (fontset, c, face, id, 0); c 770 src/fontset.c FONTSET_SET (fontset, make_fixnum (c), make_fixnum (0)); c 780 src/fontset.c FONT_DEFERRED_LOG ("default fontset: font for", make_fixnum (c), Qnil); c 782 src/fontset.c = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 0); c 786 src/fontset.c FONTSET_SET (FONTSET_DEFAULT (fontset), make_fixnum (c), c 793 src/fontset.c FONT_DEFERRED_LOG ("current fallback: font for", make_fixnum (c), Qnil); c 794 src/fontset.c rfont_def = fontset_find_font (fontset, c, face, id, 1); c 798 src/fontset.c FONTSET_SET (fontset, make_fixnum (c), Qt); c 805 src/fontset.c FONT_DEFERRED_LOG ("default fallback: font for", make_fixnum (c), Qnil); c 806 src/fontset.c rfont_def = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 1); c 810 src/fontset.c FONTSET_SET (FONTSET_DEFAULT (fontset), make_fixnum (c), Qt); c 918 src/fontset.c face_for_char (struct frame *f, struct face *face, int c, c 925 src/fontset.c if (ASCII_CHAR_P (c) || CHAR_BYTE8_P (c)) c 929 src/fontset.c && c > 0 && EQ (CHAR_TABLE_REF (Vchar_script_table, c), Qsymbol)) c 950 src/fontset.c if (font_has_char (f, font_object, c)) c 965 src/fontset.c if (font_has_char (f, font_object, c)) return face->id; c 1004 src/fontset.c rfont_def = fontset_font (fontset, c, face, id); c 1034 src/fontset.c font_for_char (struct face *face, int c, ptrdiff_t pos, Lisp_Object object) c 1039 src/fontset.c if (ASCII_CHAR_P (c)) c 1071 src/fontset.c rfont_def = fontset_font (fontset, c, face, id); c 1880 src/fontset.c int c, i, j, k; c 1921 src/fontset.c for (c = 0; c <= MAX_CHAR; ) c 1923 src/fontset.c int from = c, to = MAX_5_BYTE_CHAR; c 1925 src/fontset.c if (c <= MAX_5_BYTE_CHAR) c 1927 src/fontset.c val = char_table_ref_and_range (fontsets[k], c, &from, &to); c 1948 src/fontset.c if (c <= MAX_5_BYTE_CHAR) c 1949 src/fontset.c val = FONTSET_REF (realized[k][i], c); c 1973 src/fontset.c if (c <= MAX_5_BYTE_CHAR) c 1974 src/fontset.c char_table_set_range (tables[k], c, to, alist); c 1985 src/fontset.c c = to + 1; c 2010 src/fontset.c int c; c 2019 src/fontset.c c = XFIXNUM (ch); c 2023 src/fontset.c for (i = 0, elt = FONTSET_REF (fontset, c); i < 2; c 2038 src/fontset.c if (! CHAR_CHARSET_P (c, charset)) c 2043 src/fontset.c if (NILP (CHAR_TABLE_REF (repertory, c))) c 1755 src/frame.c struct frame *c = XFRAME (candidate), *f = XFRAME (frame); c 1757 src/frame.c if ((!FRAME_TERMCAP_P (c) && !FRAME_TERMCAP_P (f) c 1758 src/frame.c && FRAME_KBOARD (c) == FRAME_KBOARD (f)) c 1759 src/frame.c || (FRAME_TERMCAP_P (c) && FRAME_TERMCAP_P (f) c 1760 src/frame.c && FRAME_TTY (c) == FRAME_TTY (f))) c 1762 src/frame.c if (!NILP (get_frame_param (c, Qno_other_frame))) c 1766 src/frame.c if (!FRAME_MINIBUF_ONLY_P (c)) c 1771 src/frame.c if (FRAME_VISIBLE_P (c)) c 1776 src/frame.c if (EQ (FRAME_MINIBUF_WINDOW (c), minibuf) c 1779 src/frame.c FRAME_FOCUS_FRAME (c))) c 1784 src/frame.c if (FRAME_VISIBLE_P (c) || FRAME_ICONIFIED_P (c)) c 4776 src/frame.c int c; c 4778 src/frame.c while ((c = *++p1) && c_isspace (c)); c 5200 src/frame.c int c = p[i]; c 5201 src/frame.c if (! ((c >= 'a' && c <= 'z') c 5202 src/frame.c || (c >= 'A' && c <= 'Z') c 5203 src/frame.c || (c >= '0' && c <= '9') c 5204 src/frame.c || c == '-' || c == '_')) c 5233 src/frame.c int c = SREF (new, i); c 5234 src/frame.c if (! ((c >= 'a' && c <= 'z') c 5235 src/frame.c || (c >= 'A' && c <= 'Z') c 5236 src/frame.c || (c >= '0' && c <= '9') c 5237 src/frame.c || c == '-' || c == '_')) c 1468 src/fringe.c unsigned char c; c 1469 src/fringe.c c = (unsigned char)((swap_nibble[b & 0xf] << 4) c 1471 src/fringe.c *cbits++ = (c >> (8 - fb->width)); c 237 src/ftcrfont.c for (char c = 32; c < 127; c++) c 243 src/ftcrfont.c 0, 0, &c, 1, &glyphs, &num_glyphs, c 262 src/ftcrfont.c if (c == 32) c 357 src/ftcrfont.c ftcrfont_has_char (Lisp_Object font, int c) c 360 src/ftcrfont.c return ftfont_has_char (font, c); c 371 src/ftcrfont.c return (ENCODE_CHAR (cs, c) != CHARSET_INVALID_CODE (cs)); c 377 src/ftcrfont.c ftcrfont_encode_char (struct font *font, int c) c 382 src/ftcrfont.c int utf8len = CHAR_STRING (c, utf8); c 517 src/ftcrfont.c ftcrfont_variation_glyphs (struct font *font, int c, unsigned variations[256]) c 524 src/ftcrfont.c int result = ftfont_variation_glyphs (font, c, variations); c 1526 src/ftfont.c ftfont_has_char (Lisp_Object font, int c) c 1537 src/ftfont.c return (ENCODE_CHAR (cs, c) != CHARSET_INVALID_CODE (cs)); c 1543 src/ftfont.c return (FcCharSetHasChar (charset, c) == FcTrue); c 1550 src/ftfont.c return (FT_Get_Char_Index (ftfont_info->ft_size->face, (FT_ULong) c) c 1558 src/ftfont.c ftfont_encode_char (struct font *font, int c) c 1562 src/ftfont.c FT_ULong charcode = c; c 1569 src/ftfont.c ftfont_glyph_metrics (FT_Face ft_face, int c, int *advance, int *lbearing, c 1572 src/ftfont.c if (FT_Load_Glyph (ft_face, c, FT_LOAD_DEFAULT) == 0) c 2072 src/ftfont.c otf_gstring.glyphs[i].c = in_glyphs[i].g.c & 0x11FFFF; c 2114 src/ftfont.c g->g.c = 0; c 2152 src/ftfont.c g->g.c = 0; c 2492 src/ftfont.c otf_gstring.glyphs[i].c = in_glyphs[i].g.c; c 2519 src/ftfont.c g->g.c = 0; c 2548 src/ftfont.c g->g.c = 0; c 2730 src/ftfont.c int c; c 2734 src/ftfont.c c = LGLYPH_CHAR (g); c 2735 src/ftfont.c if (CHAR_VARIATION_SELECTOR_P (c)) c 2748 src/ftfont.c otf_gstring.glyphs[i].c = LGLYPH_CHAR (g); c 2830 src/ftfont.c glyphs[i].g.c = LGLYPH_CHAR (g); c 2889 src/ftfont.c LGLYPH_SET_CHAR (lglyph, g->g.c); c 2922 src/ftfont.c ftfont_variation_glyphs (struct font *font, int c, unsigned variations[256]) c 2930 src/ftfont.c return OTF_get_variation_glyphs (otf, c, variations); c 2937 src/ftfont.c variations[i] = FT_Face_GetCharVariantIndex (ft_face, c, 0xFE00 + i); c 2943 src/ftfont.c variations[i] = FT_Face_GetCharVariantIndex (ft_face, c, c 1542 src/gnutls.c char c; c 1544 src/gnutls.c while ((c = *string++) != 0) c 1545 src/gnutls.c if (! ((c == '.' || c == ':' || (c >= '0' && c <= '9')))) c 747 src/gtkutil.c GdkRGBA *c; c 780 src/gtkutil.c GTK_STYLE_PROPERTY_BACKGROUND_COLOR, &c, c 782 src/gtkutil.c col = *c; c 783 src/gtkutil.c gdk_rgba_free (c); c 364 src/haiku_support.cc map_key (char *chars, int32 offset, uint32_t *c) c 373 src/haiku_support.cc *c = chars[offset]; c 382 src/haiku_support.cc *c = BUnicodeChar::FromUTF8 ((char *) &str); c 1385 src/haiku_support.cc OffsetChildRect (BRect *r, EmacsWindow *c) c 1391 src/haiku_support.cc if (f->window == c) c 3048 src/haiku_support.cc uint32 flags, c; c 3113 src/haiku_support.cc for (c = 0; c <= 47; ++c) c 3114 src/haiku_support.cc size_text->DisallowChar (c); c 3116 src/haiku_support.cc for (c = 58; c <= 127; ++c) c 3117 src/haiku_support.cc size_text->DisallowChar (c); c 4660 src/haiku_support.cc EmacsWindow *c = (EmacsWindow *) child; c 4664 src/haiku_support.cc w->MoveChild (c, xoff, yoff, 1); c 741 src/haikufont.c haikufont_encode_char (struct font *font, int c) c 744 src/haikufont.c unsigned char high = (c & 0xff00) >> 8, low = c & 0x00ff; c 747 src/haikufont.c if (c > 0xFFFF) c 1029 src/haikufont.c uint32_t c = LGLYPH_CHAR (LGSTRING_GLYPH (lgstring, i)); c 1030 src/haikufont.c mb_buf[i] = c; c 1032 src/haikufont.c int slen = CHAR_STRING (c, mb); c 423 src/hbfont.c int c; c 427 src/hbfont.c c = LGLYPH_CHAR (g); c 428 src/hbfont.c hb_buffer_add (hb_buffer, c, i); c 429 src/hbfont.c chars[i] = c; c 1497 src/image.c struct image_cache *c = FRAME_IMAGE_CACHE (f); c 1503 src/image.c c->buckets[img->hash % IMAGE_CACHE_BUCKETS_SIZE] = img->next; c 1508 src/image.c c->images[img->id] = NULL; c 1906 src/image.c struct image_cache *c = xmalloc (sizeof *c); c 1908 src/image.c c->size = 50; c 1909 src/image.c c->used = c->refcount = 0; c 1910 src/image.c c->images = xmalloc (c->size * sizeof *c->images); c 1911 src/image.c c->buckets = xzalloc (IMAGE_CACHE_BUCKETS_SIZE * sizeof *c->buckets); c 1912 src/image.c return c; c 1923 src/image.c struct image_cache *c = FRAME_IMAGE_CACHE (f); c 1926 src/image.c if (!c) return NULL; c 1940 src/image.c for (img = c->buckets[i]; img; img = img->next) c 2018 src/image.c struct image_cache *c = FRAME_IMAGE_CACHE (f); c 2019 src/image.c if (c) c 2024 src/image.c eassert (c->refcount == 0); c 2026 src/image.c for (i = 0; i < c->used; ++i) c 2027 src/image.c free_image (f, c->images[i]); c 2028 src/image.c xfree (c->images); c 2029 src/image.c xfree (c->buckets); c 2030 src/image.c xfree (c); c 2047 src/image.c struct image_cache *c = FRAME_IMAGE_CACHE (f); c 2049 src/image.c if (c && !f->inhibit_clear_image_cache) c 2060 src/image.c for (i = 0; i < c->used; ++i) c 2062 src/image.c struct image *img = c->images[i]; c 2078 src/image.c for (i = 0; i < c->used; ++i) c 2079 src/image.c if (c->images[i]) c 2092 src/image.c for (i = 0; i < c->used; ++i) c 2094 src/image.c struct image *img = c->images[i]; c 2114 src/image.c if (FRAME_IMAGE_CACHE (fr) == c) c 2222 src/image.c struct image_cache *c = FRAME_IMAGE_CACHE (f); c 2223 src/image.c if (!c) c 2227 src/image.c for (ptrdiff_t i = 0; i < c->used; ++i) c 2229 src/image.c struct image *img = c->images[i]; c 3002 src/image.c struct image_cache *c = FRAME_IMAGE_CACHE (f); c 3005 src/image.c if (!c) c 3006 src/image.c c = FRAME_IMAGE_CACHE (f) = make_image_cache (); c 3009 src/image.c for (i = 0; i < c->used; ++i) c 3010 src/image.c if (c->images[i] == NULL) c 3014 src/image.c if (i == c->used && c->used == c->size) c 3015 src/image.c c->images = xpalloc (c->images, &c->size, 1, -1, sizeof *c->images); c 3018 src/image.c c->images[i] = img; c 3020 src/image.c if (i == c->used) c 3021 src/image.c ++c->used; c 3025 src/image.c img->next = c->buckets[i]; c 3029 src/image.c c->buckets[i] = img; c 3147 src/image.c mark_image_cache (struct image_cache *c) c 3149 src/image.c if (c) c 3152 src/image.c for (i = 0; i < c->used; ++i) c 3153 src/image.c if (c->images[i]) c 3154 src/image.c mark_image (c->images[i]); c 3979 src/image.c unsigned char c UNINIT; c 3985 src/image.c while (*s < end && (c = *(*s)++, c_isspace (c))) c 3989 src/image.c c = 0; c 3990 src/image.c else if (c_isdigit (c)) c 3995 src/image.c if (c == '0' && *s < end) c 3997 src/image.c c = *(*s)++; c 3998 src/image.c if (c == 'x' || c == 'X') c 4002 src/image.c c = *(*s)++; c 4003 src/image.c digit = char_hexdigit (c); c 4010 src/image.c else if ('0' <= c && c <= '7') c 4012 src/image.c value = c - '0'; c 4014 src/image.c && (c = *(*s)++, '0' <= c && c <= '7')) c 4017 src/image.c value += c - '0'; c 4023 src/image.c value = c - '0'; c 4025 src/image.c && (c = *(*s)++, c_isdigit (c))) c 4028 src/image.c overflow |= INT_ADD_WRAPV (value, c - '0', &value); c 4040 src/image.c else if (c == '\'') c 4048 src/image.c c = *(*s)++; c 4050 src/image.c if (c != '\\' || *s == end) c 4053 src/image.c c = *(*s)++; c 4055 src/image.c if (c == 'x') c 4059 src/image.c c = *(*s)++; c 4061 src/image.c if (c == '\'') c 4067 src/image.c digit = char_hexdigit (c); c 4079 src/image.c else if (c_isalpha (c) || c == '_') c 4081 src/image.c *sval++ = c; c 4083 src/image.c && (c = *(*s)++, (c_isalnum (c) || c == '_'))) c 4084 src/image.c *sval++ = c; c 4090 src/image.c else if (c == '/' && **s == '*') c 4103 src/image.c return c; c 4131 src/image.c unsigned char c = *data++; c 4132 src/image.c *p++ = (unsigned char)((swap_nibble[c & 0xf] << 4) c 4133 src/image.c | (swap_nibble[(c>>4) & 0xf])); c 5372 src/image.c unsigned char c; c 5378 src/image.c c = *(*s)++; c 5379 src/image.c while (c_isspace (c) && *s < end); c 5383 src/image.c if (c_isalpha (c) || c == '_' || c == '-' || c == '+') c 5387 src/image.c && (c = **s, c_isalnum (c) c 5388 src/image.c || c == '_' || c == '-' || c == '+')) c 5393 src/image.c else if (c == '"') c 5403 src/image.c else if (c == '/') c 5419 src/image.c return c; c 5422 src/image.c return c; c 6714 src/image.c unsigned char c = *(*s)++; c 6715 src/image.c if (c != '#') c 6716 src/image.c return c; c 6719 src/image.c c = *(*s)++; c 6720 src/image.c if (c == '\n' || c == '\r') c 6736 src/image.c int c = 0, val = -1; c 6739 src/image.c while ((c = pbm_next_char (s, end)) != -1 && c_isspace (c)) c 6742 src/image.c if (c_isdigit (c)) c 6745 src/image.c val = c - '0'; c 6746 src/image.c while ((c = pbm_next_char (s, end)) != -1 && c_isdigit (c)) c 6747 src/image.c val = 10 * val + c - '0'; c 6893 src/image.c unsigned char c = 0; c 6937 src/image.c c = *p++; c 6939 src/image.c g = c & 0x80; c 6940 src/image.c c <<= 1; c 6944 src/image.c int c = 0; c 6946 src/image.c while ((c = pbm_next_char (&p, end)) != -1 && c_isspace (c)) c 6949 src/image.c if (c == '0' || c == '1') c 6950 src/image.c g = c - '0'; c 7432 src/image.c png_load_body (struct frame *f, struct image *img, struct png_load_context *c) c 7518 src/image.c c->png_ptr = png_ptr; c 7519 src/image.c c->info_ptr = info_ptr; c 7520 src/image.c c->end_info = end_info; c 7521 src/image.c c->fp = fp; c 7522 src/image.c c->pixels = pixels; c 7523 src/image.c c->rows = rows; c 7527 src/image.c png_destroy_read_struct (&c->png_ptr, &c->info_ptr, &c->end_info); c 7541 src/image.c if (c->png_ptr) c 7542 src/image.c png_destroy_read_struct (&c->png_ptr, &c->info_ptr, &c->end_info); c 7543 src/image.c xfree (c->pixels); c 7544 src/image.c xfree (c->rows); c 7545 src/image.c if (c->fp) c 7546 src/image.c fclose (c->fp); c 7661 src/image.c c->pixels = pixels = xmalloc (nbytes); c 7662 src/image.c c->rows = rows = xmalloc (height * sizeof *rows); c 7672 src/image.c c->fp = NULL; c 7753 src/image.c png_destroy_read_struct (&c->png_ptr, &c->info_ptr, &c->end_info); c 7783 src/image.c struct png_load_context c; c 7784 src/image.c return png_load_body (f, img, &c); c 9400 src/image.c int c = raster[y * subimg_width + x]; c 9401 src/image.c if (transparency_color_index != c || disposal != DISPOSE_DO_NOT) c 9404 src/image.c pixel_colors[c]; c 9414 src/image.c int c = raster[y * subimg_width + x]; c 9415 src/image.c if (transparency_color_index != c || disposal != DISPOSE_DO_NOT) c 9418 src/image.c pixel_colors[c]; c 11780 src/image.c struct image_cache *c = FRAME_IMAGE_CACHE (f); c 11785 src/image.c for (i = 0; i < c->used; ++i) c 11786 src/image.c if (c->images[i]->pixmap == pixmap) c 11791 src/image.c if (i == c->used) c 11796 src/image.c img = c->images[i]; c 76 src/indent.c character_width (int c, struct Lisp_Char_Table *dp) c 85 src/indent.c if (dp && (elt = DISP_CHAR_VECTOR (dp, c), VECTORP (elt))) c 89 src/indent.c if (c == '\n' || c == '\t' || c == '\015') c 93 src/indent.c else if (c >= 040 && c < 0177) c 335 src/indent.c int c; c 396 src/indent.c c = *--ptr; c 398 src/indent.c if (dp && VECTORP (DISP_CHAR_VECTOR (dp, c))) c 400 src/indent.c charvec = DISP_CHAR_VECTOR (dp, c); c 418 src/indent.c c = GLYPH_CODE_CHAR (entry); c 420 src/indent.c c = ' '; c 423 src/indent.c if (c >= 040 && c < 0177) c 425 src/indent.c else if (c == '\n' c 426 src/indent.c || (c == '\r' c 432 src/indent.c else if (c == '\t') c 449 src/indent.c col += (ctl_arrow && c < 0200) ? 2 : 4; c 624 src/indent.c int c; c 691 src/indent.c c = FETCH_BYTE (scan_byte); c 697 src/indent.c && ! (multibyte && LEADING_CODE_P (c)) c 698 src/indent.c && VECTORP (DISP_CHAR_VECTOR (dp, c))) c 706 src/indent.c charvec = DISP_CHAR_VECTOR (dp, c); c 716 src/indent.c c = GLYPH_CODE_CHAR (entry); c 718 src/indent.c c = ' '; c 720 src/indent.c if (c == '\n') c 722 src/indent.c if (c == '\r' && EQ (BVAR (current_buffer, selective_display), Qt)) c 724 src/indent.c if (c == '\t') c 738 src/indent.c if (c == '\n') c 740 src/indent.c if (c == '\r' && EQ (BVAR (current_buffer, selective_display), Qt)) c 742 src/indent.c if (c == '\t') c 747 src/indent.c else if (multibyte && LEADING_CODE_P (c)) c 760 src/indent.c else if (ctl_arrow && (c < 040 || c == 0177)) c 762 src/indent.c else if (c < 040 || c >= 0177) c 818 src/indent.c int c; c 853 src/indent.c c = *--ptr; c 854 src/indent.c if (dp != 0 && VECTORP (DISP_CHAR_VECTOR (dp, c))) c 855 src/indent.c col += ASIZE (DISP_CHAR_VECTOR (dp, c)); c 856 src/indent.c else if (c >= 040 && c < 0177) c 858 src/indent.c else if (c == '\n') c 860 src/indent.c else if (c == '\t') c 870 src/indent.c col += (ctl_arrow && c < 0200) ? 2 : 4; c 1018 src/indent.c int c; c 1020 src/indent.c c = FETCH_MULTIBYTE_CHAR (pos_byte); c 1021 src/indent.c if (CHAR_HAS_CATEGORY (c, ' ')) c 1092 src/indent.c int c; c 1094 src/indent.c c = FETCH_CHAR (prev_bpos); c 1095 src/indent.c if (c == '\t' && prev_col < goal && prev_bpos < PT_BYTE) c 1206 src/indent.c int c = 0; c 1610 src/indent.c c = FETCH_BYTE (pos_byte); c 1619 src/indent.c && XFIXNAT (width_table[c]) == width_run_width) c 1634 src/indent.c width_run_width = XFIXNAT (width_table[c]); c 1641 src/indent.c && ! (multibyte && LEADING_CODE_P (c)) c 1642 src/indent.c && VECTORP (DISP_CHAR_VECTOR (dp, c))) c 1644 src/indent.c charvec = DISP_CHAR_VECTOR (dp, c); c 1662 src/indent.c c = GLYPH_CODE_CHAR (entry); c 1664 src/indent.c c = ' '; c 1667 src/indent.c if (c >= 040 && c < 0177) c 1669 src/indent.c else if (c == '\t') c 1677 src/indent.c else if (c == '\n') c 1722 src/indent.c else if (c == CR && selective < 0) c 1742 src/indent.c else if (multibyte && LEADING_CODE_P (c)) c 1759 src/indent.c hpos += (ctl_arrow && c < 0200) ? 2 : 4; c 2343 src/indent.c && it.c == '\n') c 632 src/insdel.c int thislen, c = string_char_and_length (from_addr, &thislen); c 633 src/insdel.c if (! ASCII_CHAR_P (c)) c 634 src/insdel.c c &= 0xFF; c 635 src/insdel.c *to_addr++ = c; c 649 src/insdel.c int c = *from_addr++; c 651 src/insdel.c if (!ASCII_CHAR_P (c)) c 653 src/insdel.c c = BYTE8_TO_CHAR (c); c 654 src/insdel.c to_addr += CHAR_STRING (c, to_addr); c 659 src/insdel.c *to_addr++ = c, nbytes--; c 704 src/insdel.c insert_char (int c) c 710 src/insdel.c len = CHAR_STRING (c, str); c 714 src/insdel.c str[0] = c; c 284 src/intervals.c INTERVAL c = B->right; c 306 src/intervals.c set_interval_left (A, c); c 307 src/intervals.c if (c) c 308 src/intervals.c set_interval_parent (c, A); c 311 src/intervals.c A->total_length -= TOTAL_LENGTH (B) - TOTAL_LENGTH0 (c); c 335 src/intervals.c INTERVAL c = B->left; c 357 src/intervals.c set_interval_right (A, c); c 358 src/intervals.c if (c) c 359 src/intervals.c set_interval_parent (c, A); c 362 src/intervals.c A->total_length -= TOTAL_LENGTH (B) - TOTAL_LENGTH0 (c); c 476 src/keyboard.c echo_add_key (Lisp_Object c) c 490 src/keyboard.c c = EVENT_HEAD (c); c 492 src/keyboard.c if (FIXNUMP (c)) c 493 src/keyboard.c ptr = push_key_description (XFIXNUM (c), ptr); c 494 src/keyboard.c else if (SYMBOLP (c)) c 496 src/keyboard.c Lisp_Object name = SYMBOL_NAME (c); c 513 src/keyboard.c && help_char_p (c)) c 586 src/keyboard.c Lisp_Object c; c 588 src/keyboard.c c = AREF (this_command_keys, i); c 589 src/keyboard.c if (! (EVENT_HAS_PARAMETERS (c) c 590 src/keyboard.c && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement))) c 591 src/keyboard.c echo_add_key (c); c 2112 src/keyboard.c make_ctrl_char (int c) c 2115 src/keyboard.c int upper = c & ~0177; c 2117 src/keyboard.c if (! ASCII_CHAR_P (c)) c 2118 src/keyboard.c return c |= ctrl_modifier; c 2120 src/keyboard.c c &= 0177; c 2124 src/keyboard.c if (c >= 0100 && c < 0140) c 2126 src/keyboard.c int oc = c; c 2127 src/keyboard.c c &= ~0140; c 2131 src/keyboard.c c |= shift_modifier; c 2135 src/keyboard.c else if (c >= 'a' && c <= 'z') c 2136 src/keyboard.c c &= ~0140; c 2140 src/keyboard.c else if (c >= ' ') c 2141 src/keyboard.c c |= ctrl_modifier; c 2144 src/keyboard.c c |= (upper & ~ctrl_modifier); c 2146 src/keyboard.c return c; c 2235 src/keyboard.c static void record_char (Lisp_Object c); c 2260 src/keyboard.c Lisp_Object c = Qnil; c 2270 src/keyboard.c return c; c 2279 src/keyboard.c c = kbd_buffer_get_event (&kb, used_mouse_menu, end_time); c 2282 src/keyboard.c if (! NILP (c) && (kb != current_kboard)) c 2293 src/keyboard.c kset_kbd_queue (kb, list1 (c)); c 2295 src/keyboard.c XSETCDR (last, list1 (c)); c 2297 src/keyboard.c c = Qnil; c 2305 src/keyboard.c if (noninteractive && FIXNUMP (c) && XFIXNUM (c) < 0) c 2308 src/keyboard.c if (FIXNUMP (c)) c 2314 src/keyboard.c XSETINT (c, make_ctrl_char (XFIXNUM (c))); c 2319 src/keyboard.c XSETINT (c, XFIXNUM (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL)); c 2322 src/keyboard.c return c; c 2380 src/keyboard.c int c = XFIXNUM (events[i]); c 2382 src/keyboard.c (meta_key == 3 && c < 0x100 && (c & 0x80)) c 2385 src/keyboard.c events[i] = make_fixnum ((c & ~0x80) | modifier); c 2415 src/keyboard.c int c = string_char_advance (&p); c 2419 src/keyboard.c = (c < 0x100 && (c & 0x80) c 2422 src/keyboard.c c = (c & ~0x80) | modifier; c 2424 src/keyboard.c events[n++] = make_fixnum (c); c 2474 src/keyboard.c Lisp_Object c; c 2486 src/keyboard.c c = Qnil; c 2495 src/keyboard.c c = XCAR (Vunread_post_input_method_events); c 2501 src/keyboard.c if (CONSP (c) c 2502 src/keyboard.c && (SYMBOLP (XCAR (c)) || FIXNUMP (XCAR (c))) c 2503 src/keyboard.c && NILP (XCDR (c))) c 2504 src/keyboard.c c = XCAR (c); c 2518 src/keyboard.c c = XCAR (Vunread_command_events); c 2524 src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qt)) c 2525 src/keyboard.c c = XCDR (c); c 2528 src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qno_record)) c 2530 src/keyboard.c c = XCDR (c); c 2538 src/keyboard.c if (CONSP (c) c 2539 src/keyboard.c && EQ (XCDR (c), Qdisabled) c 2540 src/keyboard.c && (SYMBOLP (XCAR (c)) || FIXNUMP (XCAR (c)))) c 2543 src/keyboard.c c = XCAR (c); c 2551 src/keyboard.c && (EQ (c, Qtool_bar) || EQ (c, Qtab_bar) || EQ (c, Qmenu_bar) c 2560 src/keyboard.c c = XCAR (Vunread_input_method_events); c 2565 src/keyboard.c if (CONSP (c) c 2566 src/keyboard.c && (SYMBOLP (XCAR (c)) || FIXNUMP (XCAR (c))) c 2567 src/keyboard.c && NILP (XCDR (c))) c 2568 src/keyboard.c c = XCAR (c); c 2593 src/keyboard.c XSETINT (c, -1); c 2597 src/keyboard.c c = Faref (Vexecuting_kbd_macro, make_int (executing_kbd_macro_index)); c 2599 src/keyboard.c && (XFIXNAT (c) & 0x80) && (XFIXNAT (c) <= 0xff)) c 2600 src/keyboard.c XSETFASTINT (c, CHAR_META | (XFIXNAT (c) & ~0x80)); c 2609 src/keyboard.c c = unread_switch_frame; c 2695 src/keyboard.c c = Qnil; c 2702 src/keyboard.c c = read_char_minibuf_menu_prompt (commandflag, map); c 2704 src/keyboard.c if (FIXNUMP (c) && XFIXNUM (c) == -2) c 2705 src/keyboard.c return c; /* wrong_kboard_jmpbuf */ c 2707 src/keyboard.c if (! NILP (c)) c 2729 src/keyboard.c XSETINT (c, quit_char); c 2753 src/keyboard.c kset_kbd_queue (kb, list1 (c)); c 2755 src/keyboard.c XSETCDR (last, list1 (c)); c 2838 src/keyboard.c c = read_char_x_menu_prompt (map, prev_event, used_mouse_menu); c 2849 src/keyboard.c if (INTERACTIVE && NILP (c)) c 2904 src/keyboard.c if (NILP (c) && current_kboard != orig_kboard) c 2911 src/keyboard.c c = XCAR (Vunread_command_events); c 2914 src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qt)) c 2915 src/keyboard.c c = XCDR (c); c 2918 src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qno_record)) c 2920 src/keyboard.c c = XCDR (c); c 2929 src/keyboard.c if (NILP (c)) c 2935 src/keyboard.c c = XCAR (KVAR (current_kboard, kbd_queue)); c 2941 src/keyboard.c if (EVENT_HAS_PARAMETERS (c) c 2942 src/keyboard.c && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame)) c 2943 src/keyboard.c internal_last_event_frame = XCAR (XCDR (c)); c 2956 src/keyboard.c if (NILP (c) && !single_kboard) c 2971 src/keyboard.c if (NILP (c)) c 2973 src/keyboard.c c = read_decoded_event_from_main_queue (end_time, local_getcjmp, c 2975 src/keyboard.c if (NILP (c) && end_time c 2981 src/keyboard.c if (BASE_EQ (c, make_fixnum (-2))) c 2982 src/keyboard.c return c; c 2984 src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qt)) c 2985 src/keyboard.c c = XCDR (c); c 2986 src/keyboard.c else if (CONSP (c) && EQ (XCAR (c), Qno_record)) c 2988 src/keyboard.c c = XCDR (c); c 2999 src/keyboard.c if (NILP (c)) c 3011 src/keyboard.c if (BUFFERP (c)) c 3018 src/keyboard.c tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1); c 3024 src/keyboard.c last_input_event = c; c 3027 src/keyboard.c if (CONSP (c) && !NILP (Fmemq (XCAR (c), Vwhile_no_input_ignore_events)) c 3036 src/keyboard.c if (CONSP (c) c 3037 src/keyboard.c && (EQ (XCAR (c), intern ("ns-unput-working-text")))) c 3046 src/keyboard.c c = make_fixnum (-2); c 3054 src/keyboard.c if (FIXNUMP (c)) c 3057 src/keyboard.c if (XFIXNUM (c) == -1) c 3061 src/keyboard.c && XFIXNAT (c) < SCHARS (KVAR (current_kboard, c 3064 src/keyboard.c && XFIXNAT (c) < ASIZE (KVAR (current_kboard, c 3067 src/keyboard.c && CHARACTERP (c))) c 3070 src/keyboard.c d = Faref (KVAR (current_kboard, Vkeyboard_translate_table), c); c 3073 src/keyboard.c c = d; c 3080 src/keyboard.c if (EVENT_HAS_PARAMETERS (c) c 3081 src/keyboard.c && CONSP (XCDR (c)) c 3082 src/keyboard.c && CONSP (xevent_start (c)) c 3083 src/keyboard.c && CONSP (XCDR (xevent_start (c)))) c 3087 src/keyboard.c posn = POSN_POSN (xevent_start (c)); c 3093 src/keyboard.c POSN_SET_POSN (xevent_start (c), list1 (posn)); c 3095 src/keyboard.c also_record = c; c 3096 src/keyboard.c Vunread_command_events = Fcons (c, Vunread_command_events); c 3097 src/keyboard.c c = posn; c 3103 src/keyboard.c record_char (c); c 3111 src/keyboard.c if (FIXNUMP (c) c 3113 src/keyboard.c && ' ' <= XFIXNUM (c) && XFIXNUM (c) < 256 && XFIXNUM (c) != 127) c 3121 src/keyboard.c if (!CONSP (c) c 3122 src/keyboard.c || (!(EQ (Qhelp_echo, XCAR (c))) c 3123 src/keyboard.c && !(EQ (Qswitch_frame, XCAR (c))) c 3126 src/keyboard.c && !(EQ (Qselect_window, XCAR (c))))) c 3150 src/keyboard.c if (FIXNUMP (c) c 3155 src/keyboard.c && ' ' <= XFIXNUM (c) && XFIXNUM (c) < 256 && XFIXNUM (c) != 127) c 3195 src/keyboard.c tem = call1 (Vinput_method_function, c); c 3222 src/keyboard.c c = XCAR (tem); c 3231 src/keyboard.c record_char (c); c 3238 src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qhelp_echo)) c 3243 src/keyboard.c htem = Fcdr (XCDR (c)); c 3265 src/keyboard.c if (! (EVENT_HAS_PARAMETERS (c) c 3266 src/keyboard.c && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement))) c 3272 src/keyboard.c add_command_key (c); c 3279 src/keyboard.c last_input_event = c; c 3283 src/keyboard.c if (!NILP (Vhelp_form) && help_char_p (c)) c 3296 src/keyboard.c c = read_char (0, Qnil, Qnil, 0, NULL); c 3297 src/keyboard.c if (EVENT_HAS_PARAMETERS (c) c 3298 src/keyboard.c && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_click)) c 3301 src/keyboard.c while (BUFFERP (c)); c 3306 src/keyboard.c if (BASE_EQ (c, make_fixnum (040))) c 3310 src/keyboard.c c = read_char (0, Qnil, Qnil, 0, NULL); c 3311 src/keyboard.c while (BUFFERP (c)); c 3318 src/keyboard.c return c; c 3325 src/keyboard.c record_menu_key (Lisp_Object c) c 3330 src/keyboard.c record_char (c); c 3337 src/keyboard.c add_command_key (c); c 3341 src/keyboard.c last_input_event = c; c 3348 src/keyboard.c help_char_p (Lisp_Object c) c 3350 src/keyboard.c if (EQ (c, Vhelp_char)) c 3354 src/keyboard.c if (EQ (c, XCAR (tail))) c 3362 src/keyboard.c record_char (Lisp_Object c) c 3371 src/keyboard.c if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement))) c 3394 src/keyboard.c if (EQ (XCAR (c), Qhelp_echo)) c 3401 src/keyboard.c help = Fcar_safe (Fcdr_safe (XCDR (c))); c 3417 src/keyboard.c else if (EQ (XCAR (c), Qmouse_movement)) c 3423 src/keyboard.c window = Fcar_safe (Fcar_safe (XCDR (c))); c 3429 src/keyboard.c ASET (recent_keys, ix1, c); c 3435 src/keyboard.c store_kbd_macro_char (c); c 3446 src/keyboard.c CONSP (c) ? Fcopy_sequence (c) : c); c 3478 src/keyboard.c if (FIXNUMP (c)) c 3480 src/keyboard.c if (XUFIXNUM (c) < 0x100) c 3481 src/keyboard.c putc (XUFIXNUM (c), dribble); c 3483 src/keyboard.c fprintf (dribble, " 0x%"pI"x", XUFIXNUM (c)); c 3490 src/keyboard.c dribblee = EVENT_HEAD (c); c 3665 src/keyboard.c int c = event->ie.code & 0377; c 3668 src/keyboard.c c = make_ctrl_char (c); c 3670 src/keyboard.c c |= (event->ie.modifiers c 3674 src/keyboard.c if (c == quit_char) c 3682 src/keyboard.c make_fixnum (c))); c 3722 src/keyboard.c if (c && c == stop_character) c 3937 src/keyboard.c int c = getchar (); c 3938 src/keyboard.c XSETINT (obj, c); c 5831 src/keyboard.c EMACS_INT c = event->code; c 5834 src/keyboard.c c &= 0377; c 5835 src/keyboard.c eassert (c == event->code); c 5847 src/keyboard.c if (uppercasep (c) && c 5852 src/keyboard.c c = downcase (c); c 5854 src/keyboard.c else if (lowercasep (c) && c 5860 src/keyboard.c c = upcase (c); c 5870 src/keyboard.c c = make_ctrl_char (c); c 5877 src/keyboard.c c |= (event->modifiers c 5883 src/keyboard.c c |= shift_modifier; c 5885 src/keyboard.c XSETFASTINT (lispy_c, c); c 11396 src/keyboard.c char c; c 11397 src/keyboard.c return read (STDIN_FILENO, &c, 1) == 1 ? c : EOF; c 11419 src/keyboard.c char c; c 11470 src/keyboard.c c = read_stdin (); c 11471 src/keyboard.c if (c == 'y' || c == 'Y') c 11480 src/keyboard.c while (c != '\n') c 11481 src/keyboard.c c = read_stdin (); c 11502 src/keyboard.c c = read_stdin (); c 11503 src/keyboard.c if (c == 'y' || c == 'Y') c 11505 src/keyboard.c while (c != '\n') c 11506 src/keyboard.c c = read_stdin (); c 560 src/keymap.c int c; c 561 src/keymap.c for (c = 0; c < len; c++) c 564 src/keymap.c XSETFASTINT (character, c); c 565 src/keymap.c map_keymap_item (fun, args, character, AREF (binding, c), data); c 1157 src/keymap.c Lisp_Object c = Faref (key, make_fixnum (idx)); c 1159 src/keymap.c if (CONSP (c)) c 1163 src/keymap.c if (lucid_event_type_list_p (c)) c 1164 src/keymap.c c = Fevent_convert_list (c); c 1165 src/keymap.c else if (CHARACTERP (XCAR (c))) c 1166 src/keymap.c CHECK_CHARACTER_CDR (c); c 1169 src/keymap.c if (SYMBOLP (c)) c 1170 src/keymap.c silly_event_symbol_error (c); c 1172 src/keymap.c if (FIXNUMP (c) c 1173 src/keymap.c && (XFIXNUM (c) & meta_bit) c 1176 src/keymap.c c = meta_prefix_char; c 1181 src/keymap.c if (FIXNUMP (c)) c 1182 src/keymap.c XSETINT (c, XFIXNUM (c) & ~meta_bit); c 1188 src/keymap.c if (!FIXNUMP (c) && !SYMBOLP (c) c 1189 src/keymap.c && (!CONSP (c) c 1191 src/keymap.c || (FIXNUMP (XCAR (c)) && idx != length))) c 1192 src/keymap.c message_with_string ("Key sequence contains invalid event %s", c, 1); c 1195 src/keymap.c return store_in_keymap (keymap, c, def, !NILP (remove)); c 1197 src/keymap.c Lisp_Object cmd = access_keymap (keymap, c, 0, 1, 1); c 1201 src/keymap.c cmd = define_as_prefix (keymap, c); c 1206 src/keymap.c const char *trailing_esc = ((EQ (c, meta_prefix_char) && metized) c 1269 src/keymap.c Lisp_Object c = Faref (key, make_fixnum (idx++)); c 1271 src/keymap.c if (CONSP (c) && lucid_event_type_list_p (c)) c 1272 src/keymap.c c = Fevent_convert_list (c); c 1275 src/keymap.c if (STRINGP (key) && XFIXNUM (c) & 0x80 && !STRING_MULTIBYTE (key)) c 1276 src/keymap.c XSETINT (c, (XFIXNUM (c) | meta_modifier) & ~0x80); c 1280 src/keymap.c if (!FIXNUMP (c) && !SYMBOLP (c) && !CONSP (c) && !STRINGP (c)) c 1281 src/keymap.c message_with_string ("Key sequence contains invalid event %s", c, 1); c 1283 src/keymap.c Lisp_Object cmd = access_keymap (keymap, c, t_ok, 0, 1); c 1453 src/keymap.c define_as_prefix (Lisp_Object keymap, Lisp_Object c) c 1456 src/keymap.c store_in_keymap (keymap, c, cmd, false); c 1474 src/keymap.c silly_event_symbol_error (Lisp_Object c) c 1476 src/keymap.c Lisp_Object parsed = parse_modifiers (c); c 1502 src/keymap.c c = reorder_modifiers (c); c 1507 src/keymap.c SDATA (SYMBOL_NAME (c)), SDATA (keystring), c 1508 src/keymap.c SDATA (SYMBOL_NAME (c))); c 2039 src/keymap.c int c = fetch_string_char_advance (prefix, &i, &i_byte); c 2040 src/keymap.c if (SINGLE_BYTE_CHAR_P (c) && (c & 0200)) c 2041 src/keymap.c c ^= 0200 | meta_modifier; c 2042 src/keymap.c ASET (copy, i_before, make_fixnum (c)); c 2127 src/keymap.c int c = fetch_string_char_advance (list, &i, &i_byte); c 2128 src/keymap.c if (SINGLE_BYTE_CHAR_P (c) && (c & 0200)) c 2129 src/keymap.c c ^= 0200 | meta_modifier; c 2130 src/keymap.c key = make_fixnum (c); c 2188 src/keymap.c int c, c2; c 2192 src/keymap.c c = ch & (meta_modifier | ~ - meta_modifier); c 2193 src/keymap.c c2 = c & ~(alt_modifier | ctrl_modifier | hyper_modifier c 2199 src/keymap.c p += sprintf (p, "[%d]", c); c 2203 src/keymap.c tab_as_ci = (c2 == '\t' && (c & meta_modifier)); c 2205 src/keymap.c if (c & alt_modifier) c 2209 src/keymap.c c -= alt_modifier; c 2211 src/keymap.c if ((c & ctrl_modifier) != 0 c 2217 src/keymap.c c &= ~ctrl_modifier; c 2219 src/keymap.c if (c & hyper_modifier) c 2223 src/keymap.c c -= hyper_modifier; c 2225 src/keymap.c if (c & meta_modifier) c 2229 src/keymap.c c -= meta_modifier; c 2231 src/keymap.c if (c & shift_modifier) c 2235 src/keymap.c c -= shift_modifier; c 2237 src/keymap.c if (c & super_modifier) c 2241 src/keymap.c c -= super_modifier; c 2243 src/keymap.c if (c < 040) c 2245 src/keymap.c if (c == 033) c 2255 src/keymap.c else if (c == '\t') c 2261 src/keymap.c else if (c == Ctl ('M')) c 2270 src/keymap.c if (c > 0 && c <= Ctl ('Z')) c 2271 src/keymap.c *p++ = c + 0140; c 2273 src/keymap.c *p++ = c + 0100; c 2276 src/keymap.c else if (c == 0177) c 2282 src/keymap.c else if (c == ' ') c 2288 src/keymap.c else if (c < 128) c 2289 src/keymap.c *p++ = c; c 2293 src/keymap.c p += CHAR_STRING (c, (unsigned char *) p); c 2366 src/keymap.c push_text_char_description (register unsigned int c, register char *p) c 2368 src/keymap.c if (c < 040) c 2371 src/keymap.c *p++ = c + 64; /* 'A' - 1 */ c 2373 src/keymap.c else if (c == 0177) c 2379 src/keymap.c *p++ = c; c 2398 src/keymap.c int c = XFIXNUM (character); c 2399 src/keymap.c if (!ASCII_CHAR_P (c)) c 2402 src/keymap.c int len = CHAR_STRING (c, (unsigned char *) str); c 2409 src/keymap.c int len = push_text_char_description (c, desc) - desc; c 2857 src/keymap.c for (int c = 0; c < translate_len; c++) c 2858 src/keymap.c if (translate[c] != c) c 2869 src/keymap.c bufend = push_key_description (translate[c], buf); c 2872 src/keymap.c bufend = push_key_description (c, buf); c 423 src/lisp.h #define lisp_h_XCAR(c) XCONS (c)->u.s.car c 424 src/lisp.h #define lisp_h_XCDR(c) XCONS (c)->u.s.u.cdr c 479 src/lisp.h # define XCAR(c) lisp_h_XCAR (c) c 480 src/lisp.h # define XCDR(c) lisp_h_XCDR (c) c 1508 src/lisp.h xcar_addr (Lisp_Object c) c 1510 src/lisp.h return &XCONS (c)->u.s.car; c 1513 src/lisp.h xcdr_addr (Lisp_Object c) c 1515 src/lisp.h return &XCONS (c)->u.s.u.cdr; c 1521 src/lisp.h (XCAR) (Lisp_Object c) c 1523 src/lisp.h return lisp_h_XCAR (c); c 1527 src/lisp.h (XCDR) (Lisp_Object c) c 1529 src/lisp.h return lisp_h_XCDR (c); c 1537 src/lisp.h XSETCAR (Lisp_Object c, Lisp_Object n) c 1539 src/lisp.h *xcar_addr (c) = n; c 1542 src/lisp.h XSETCDR (Lisp_Object c, Lisp_Object n) c 1544 src/lisp.h *xcdr_addr (c) = n; c 1549 src/lisp.h CAR (Lisp_Object c) c 1551 src/lisp.h if (CONSP (c)) c 1552 src/lisp.h return XCAR (c); c 1553 src/lisp.h if (!NILP (c)) c 1554 src/lisp.h wrong_type_argument (Qlistp, c); c 1558 src/lisp.h CDR (Lisp_Object c) c 1560 src/lisp.h if (CONSP (c)) c 1561 src/lisp.h return XCDR (c); c 1562 src/lisp.h if (!NILP (c)) c 1563 src/lisp.h wrong_type_argument (Qlistp, c); c 1569 src/lisp.h CAR_SAFE (Lisp_Object c) c 1571 src/lisp.h return CONSP (c) ? XCAR (c) : Qnil; c 1574 src/lisp.h CDR_SAFE (Lisp_Object c) c 1576 src/lisp.h return CONSP (c) ? XCDR (c) : Qnil; c 2015 src/lisp.h ASCII_CHAR_P (intmax_t c) c 2017 src/lisp.h return 0 <= c && c < 0x80; c 4288 src/lisp.h list3i (intmax_t a, intmax_t b, intmax_t c) c 4290 src/lisp.h return list3 (make_int (a), make_int (b), make_int (c)); c 4294 src/lisp.h list4i (intmax_t a, intmax_t b, intmax_t c, intmax_t d) c 4296 src/lisp.h return list4 (make_int (a), make_int (b), make_int (c), make_int (d)); c 5051 src/lisp.h extern void stuff_char (char c); c 5489 src/lisp.h #define AUTO_LIST3(name, a, b, c) \ c 5491 src/lisp.h ? STACK_CONS (a, STACK_CONS (b, STACK_CONS (c, Qnil))) \ c 5492 src/lisp.h : list3 (a, b, c)) c 5493 src/lisp.h #define AUTO_LIST4(name, a, b, c, d) \ c 5496 src/lisp.h ? STACK_CONS (a, STACK_CONS (b, STACK_CONS (c, \ c 5498 src/lisp.h : list4 (a, b, c, d)) c 181 src/lread.c #define UNREAD(c) unreadchar (readcharfun, c) c 196 src/lread.c register int c; c 224 src/lread.c c = string_char_and_length (p, &clen); c 231 src/lread.c c = BUF_FETCH_BYTE (inbuffer, pt_byte); c 232 src/lread.c if (! ASCII_CHAR_P (c)) c 233 src/lread.c c = BYTE8_TO_CHAR (c); c 238 src/lread.c return c; c 254 src/lread.c c = string_char_and_length (p, &clen); c 261 src/lread.c c = BUF_FETCH_BYTE (inbuffer, bytepos); c 262 src/lread.c if (! ASCII_CHAR_P (c)) c 263 src/lread.c c = BYTE8_TO_CHAR (c); c 270 src/lread.c return c; c 289 src/lread.c c = -1; c 294 src/lread.c c = (fetch_string_char_advance_no_check c 301 src/lread.c c = SREF (readcharfun, read_from_string_index_byte); c 305 src/lread.c return c; c 339 src/lread.c c = unread_char; c 341 src/lread.c return c; c 343 src/lread.c c = (*readbyte) (-1, readcharfun); c 344 src/lread.c if (c < 0) c 345 src/lread.c return c; c 348 src/lread.c if (ASCII_CHAR_P (c)) c 349 src/lread.c return c; c 351 src/lread.c return read_emacs_mule_char (c, readbyte, readcharfun); c 353 src/lread.c buf[i++] = c; c 354 src/lread.c len = BYTES_BY_CHAR_HEAD (c); c 357 src/lread.c buf[i++] = c = (*readbyte) (-1, readcharfun); c 358 src/lread.c if (c < 0 || ! TRAILING_CODE_P (c)) c 360 src/lread.c for (i -= c < 0; 0 < --i; ) c 389 src/lread.c int c; c 391 src/lread.c c = READCHAR; c 392 src/lread.c } while (c >= 0 && c != '\037'); c 414 src/lread.c unreadchar (Lisp_Object readcharfun, int c) c 417 src/lread.c if (c == -1) c 455 src/lread.c unread_char = c; c 459 src/lread.c unread_char = c; c 463 src/lread.c unread_char = c; c 466 src/lread.c call1 (readcharfun, make_fixnum (c)); c 470 src/lread.c readbyte_for_lambda (int c, Lisp_Object readcharfun) c 472 src/lread.c return read_bytecode_char (c >= 0); c 482 src/lread.c int c; c 488 src/lread.c while ((c = getc (instream)) == EOF && errno == EINTR && ferror (instream)) c 498 src/lread.c return (c == EOF ? -1 : c); c 502 src/lread.c readbyte_from_file (int c, Lisp_Object readcharfun) c 505 src/lread.c if (c >= 0) c 508 src/lread.c infile->buf[infile->lookahead++] = c; c 516 src/lread.c readbyte_from_string (int c, Lisp_Object readcharfun) c 520 src/lread.c if (c >= 0) c 575 src/lread.c read_emacs_mule_char (int c, int (*readbyte) (int, Lisp_Object), Lisp_Object readcharfun) c 579 src/lread.c int len = emacs_mule_bytes[c]; c 586 src/lread.c return BYTE8_TO_CHAR (c); c 589 src/lread.c buf[i++] = c; c 592 src/lread.c buf[i++] = c = (*readbyte) (-1, readcharfun); c 593 src/lread.c if (c < 0xA0) c 595 src/lread.c for (i -= c < 0; 0 < --i; ) c 625 src/lread.c c = DECODE_CHAR (charset, code); c 626 src/lread.c if (c < 0) c 628 src/lread.c return c; c 2183 src/lread.c int c; c 2279 src/lread.c c = READCHAR; c 2280 src/lread.c if (c == ';') c 2282 src/lread.c while ((c = READCHAR) != '\n' && c != -1); c 2285 src/lread.c if (c < 0) c 2292 src/lread.c if (c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r' c 2293 src/lread.c || c == NO_BREAK_SPACE) c 2295 src/lread.c UNREAD (c); c 2309 src/lread.c if (!NILP (Vpurify_flag) && c == '(') c 2649 src/lread.c int c = READCHAR; c 2654 src/lread.c switch (c) c 2683 src/lread.c c = READCHAR; c 2684 src/lread.c if (c != '-') c 2686 src/lread.c c = READCHAR; c 2687 src/lread.c if (c == '\\') c 2688 src/lread.c c = read_escape (readcharfun); c 2689 src/lread.c return c | meta_modifier; c 2692 src/lread.c c = READCHAR; c 2693 src/lread.c if (c != '-') c 2695 src/lread.c c = READCHAR; c 2696 src/lread.c if (c == '\\') c 2697 src/lread.c c = read_escape (readcharfun); c 2698 src/lread.c return c | shift_modifier; c 2701 src/lread.c c = READCHAR; c 2702 src/lread.c if (c != '-') c 2704 src/lread.c c = READCHAR; c 2705 src/lread.c if (c == '\\') c 2706 src/lread.c c = read_escape (readcharfun); c 2707 src/lread.c return c | hyper_modifier; c 2710 src/lread.c c = READCHAR; c 2711 src/lread.c if (c != '-') c 2713 src/lread.c c = READCHAR; c 2714 src/lread.c if (c == '\\') c 2715 src/lread.c c = read_escape (readcharfun); c 2716 src/lread.c return c | alt_modifier; c 2719 src/lread.c c = READCHAR; c 2720 src/lread.c if (c != '-') c 2722 src/lread.c UNREAD (c); c 2725 src/lread.c c = READCHAR; c 2726 src/lread.c if (c == '\\') c 2727 src/lread.c c = read_escape (readcharfun); c 2728 src/lread.c return c | super_modifier; c 2731 src/lread.c c = READCHAR; c 2732 src/lread.c if (c != '-') c 2736 src/lread.c c = READCHAR; c 2737 src/lread.c if (c == '\\') c 2738 src/lread.c c = read_escape (readcharfun); c 2739 src/lread.c if ((c & ~CHAR_MODIFIER_MASK) == '?') c 2740 src/lread.c return 0177 | (c & CHAR_MODIFIER_MASK); c 2741 src/lread.c else if (! ASCII_CHAR_P ((c & ~CHAR_MODIFIER_MASK))) c 2742 src/lread.c return c | ctrl_modifier; c 2745 src/lread.c else if ((c & 0137) >= 0101 && (c & 0137) <= 0132) c 2746 src/lread.c return (c & (037 | ~0177)); c 2747 src/lread.c else if ((c & 0177) >= 0100 && (c & 0177) <= 0137) c 2748 src/lread.c return (c & (037 | ~0177)); c 2750 src/lread.c return c | ctrl_modifier; c 2762 src/lread.c register int i = c - '0'; c 2766 src/lread.c if ((c = READCHAR) >= '0' && c <= '7') c 2769 src/lread.c i += c - '0'; c 2773 src/lread.c UNREAD (c); c 2790 src/lread.c c = READCHAR; c 2791 src/lread.c int digit = char_hexdigit (c); c 2794 src/lread.c UNREAD (c); c 2824 src/lread.c c = READCHAR; c 2825 src/lread.c if (c < 0) c 2834 src/lread.c int digit = char_hexdigit (c); c 2837 src/lread.c c, c); c 2848 src/lread.c c = READCHAR; c 2849 src/lread.c if (c != '{') c 2856 src/lread.c c = READCHAR; c 2857 src/lread.c if (c < 0) c 2859 src/lread.c if (c == '}') c 2861 src/lread.c if (! (0 < c && c < 0x80)) c 2866 src/lread.c make_fixed_natnum (c)), c 2872 src/lread.c if (c_isspace (c)) c 2876 src/lread.c c = ' '; c 2881 src/lread.c name[length++] = c; c 2895 src/lread.c return c; c 2944 src/lread.c int c = READCHAR; c 2945 src/lread.c if (c == '-' || c == '+') c 2947 src/lread.c *p++ = c; c 2948 src/lread.c c = READCHAR; c 2951 src/lread.c if (c == '0') c 2953 src/lread.c *p++ = c; c 2959 src/lread.c c = READCHAR; c 2960 src/lread.c while (c == '0'); c 2963 src/lread.c for (int digit; (digit = digit_to_number (c, radix)) >= -1; ) c 2978 src/lread.c *p++ = c; c 2979 src/lread.c c = READCHAR; c 2982 src/lread.c UNREAD (c); c 3371 src/lread.c int c = READCHAR; c 3372 src/lread.c if (c < '0' || c > '9') c 3374 src/lread.c if (c != '"') c 3379 src/lread.c || INT_ADD_WRAPV (length, c - '0', &length)) c 3412 src/lread.c int c = READCHAR; c 3413 src/lread.c if (c < '0' || c > '9') c 3422 src/lread.c UNREAD (c); c 3426 src/lread.c || INT_ADD_WRAPV (nskip, c - '0', &nskip)) c 3467 src/lread.c int c = 0; c 3469 src/lread.c ss->string[i++] = c = infile->buf[--infile->lookahead]; c 3471 src/lread.c for (; i < nskip && c >= 0; i++) c 3472 src/lread.c ss->string[i] = c = getc (instream); c 3518 src/lread.c int c = str[from++]; c 3519 src/lread.c if (c == 1) c 3521 src/lread.c c = str[from++]; c 3522 src/lread.c str[to++] = (c == 1 ? c c 3523 src/lread.c : c == '0' ? 0 c 3524 src/lread.c : c == '_' ? 037 c 3525 src/lread.c : c); c 3528 src/lread.c str[to++] = c; c 3549 src/lread.c int c; c 3552 src/lread.c c = READCHAR; c 3553 src/lread.c if (c == ';') c 3555 src/lread.c c = READCHAR; c 3556 src/lread.c while (c >= 0 && c != '\n'); c 3557 src/lread.c if (c < 0) c 3560 src/lread.c while (c <= 32 || c == NO_BREAK_SPACE); c 3561 src/lread.c UNREAD (c); c 3727 src/lread.c int c = READCHAR_REPORT_MULTIBYTE (&multibyte); c 3728 src/lread.c if (c < 0) c 3731 src/lread.c switch (c) c 3913 src/lread.c int c; c 3915 src/lread.c c = READCHAR; c 3916 src/lread.c while (c >= 0 && c != '\n'); c 3951 src/lread.c c = READCHAR; c 3952 src/lread.c if (c <= 32 || c == NO_BREAK_SPACE c 3953 src/lread.c || c == '"' || c == '\'' || c == ';' || c == '#' c 3954 src/lread.c || c == '(' || c == ')' || c == '[' || c == ']' c 3955 src/lread.c || c == '`' || c == ',') c 3958 src/lread.c UNREAD (c); c 3968 src/lread.c c = READCHAR; c 3969 src/lread.c if (c <= 32 || c == NO_BREAK_SPACE c 3970 src/lread.c || c == '"' || c == '\'' || c == ';' || c == '#' c 3971 src/lread.c || c == '(' || c == ')' || c == '[' || c == ']' c 3972 src/lread.c || c == '`' || c == ',') c 3975 src/lread.c UNREAD (c); c 3988 src/lread.c int c; c 3991 src/lread.c c = READCHAR; c 3992 src/lread.c if (c < '0' || c > '9') c 3995 src/lread.c || INT_ADD_WRAPV (n, c - '0', &n)) c 3998 src/lread.c if (c == 'r' || c == 'R') c 4008 src/lread.c if (c == '=') c 4030 src/lread.c else if (c == '#') c 4096 src/lread.c int c; c 4098 src/lread.c c = READCHAR; c 4099 src/lread.c while (c >= 0 && c != '\n'); c 4125 src/lread.c if (c <= 32 || c == NO_BREAK_SPACE) c 4150 src/lread.c if (c == '\\') c 4152 src/lread.c c = READCHAR; c 4153 src/lread.c if (c < 0) c 4159 src/lread.c p += CHAR_STRING (c, (unsigned char *) p); c 4161 src/lread.c *p++ = c; c 4162 src/lread.c c = READCHAR; c 4164 src/lread.c while (c > 32 c 4165 src/lread.c && c != NO_BREAK_SPACE c 4166 src/lread.c && (c >= 128 c 4167 src/lread.c || !( c == '"' || c == '\'' || c == ';' || c == '#' c 4168 src/lread.c || c == '(' || c == ')' || c == '[' || c == ']' c 4169 src/lread.c || c == '`' || c == ','))); c 4173 src/lread.c UNREAD (c); c 99 src/macros.c Lisp_Object c; c 100 src/macros.c c = Faref (KVAR (current_kboard, Vlast_kbd_macro), make_fixnum (i)); c 101 src/macros.c if (cvt && FIXNATP (c) && (XFIXNAT (c) & 0x80)) c 102 src/macros.c XSETFASTINT (c, CHAR_META | (XFIXNAT (c) & ~0x80)); c 103 src/macros.c current_kboard->kbd_macro_buffer[i] = c; c 179 src/macros.c store_kbd_macro_char (Lisp_Object c) c 196 src/macros.c *kb->kbd_macro_ptr++ = c; c 292 src/minibuf.c int c = SREF (val, i); c 293 src/minibuf.c if (c != ' ' && c != '\t' && c != '\n') c 314 src/minibuf.c int c; c 340 src/minibuf.c while ((c = getchar ()) != '\n' && c != '\r') c 342 src/minibuf.c if (c == EOF) c 353 src/minibuf.c line[len++] = c; c 368 src/minibuf.c if (len || c == '\n' || c == '\r') c 2420 src/msdos.c register unsigned char c; c 2425 src/msdos.c c = regs.h.al; c 2429 src/msdos.c ASET (recent_doskeys, recent_doskeys_index, make_fixnum (c)); c 2445 src/msdos.c (unsigned) (sc&0xff), (unsigned) c, mask); c 2452 src/msdos.c switch (c) c 2466 src/msdos.c c = 0; c 2477 src/msdos.c if (p->sc == sc && p->ch == c) c 2496 src/msdos.c if (c == 0) c 2521 src/msdos.c if (c && !(mask & (SHIFT_P | ALT_P | CTRL_P | HYPER_P | SUPER_P))) c 2522 src/msdos.c return c; c 2523 src/msdos.c c = 0; /* Special */ c 2526 src/msdos.c if (c != 0) c 2527 src/msdos.c return c; c 2536 src/msdos.c if (c == 0) /* ctrl-break */ c 2538 src/msdos.c return c; /* ALT-nnn */ c 2542 src/msdos.c if (c != ' ') c 2543 src/msdos.c return c; c 2544 src/msdos.c code = c; c 2549 src/msdos.c if (c && !(mask & ALT_P) && !((mask & SHIFT_P) && (mask & CTRL_P))) c 2551 src/msdos.c return c; c 2572 src/msdos.c if (c == 0xe0) /* edit key */ c 2756 src/msdos.c int c = prev_get_char; c 2758 src/msdos.c return c; c 2909 src/msdos.c unsigned c = string_char_advance (&q); c 2911 src/msdos.c if (c > 26) c 2913 src/msdos.c BUILD_CHAR_GLYPH (*p, c, face, 0); c 2921 src/msdos.c BUILD_CHAR_GLYPH (*p, c + 64, face, 0); c 360 src/nsterm.h + (NSColor *)colorWithUnsignedLong:(unsigned long)c; c 1803 src/pgtkfns.c pgtk_is_lower_char (int c) c 1805 src/pgtkfns.c return c >= 'a' && c <= 'z'; c 1809 src/pgtkfns.c pgtk_is_upper_char (int c) c 1811 src/pgtkfns.c return c >= 'A' && c <= 'Z'; c 1815 src/pgtkfns.c pgtk_is_numeric_char (int c) c 1817 src/pgtkfns.c return c >= '0' && c <= '9'; c 1859 src/pgtkfns.c int c = *sp; c 1860 src/pgtkfns.c if (c == '.') c 1862 src/pgtkfns.c if (pgtk_is_lower_char (c)) c 1864 src/pgtkfns.c else if (pgtk_is_upper_char (c)) c 1865 src/pgtkfns.c c = c - 'A' + 'a'; /* upper -> lower */ c 1866 src/pgtkfns.c else if (pgtk_is_numeric_char (c)) c 1870 src/pgtkfns.c *dp++ = c; c 1884 src/pgtkfns.c int c = *sp; c 1885 src/pgtkfns.c if (pgtk_is_lower_char (c)) c 1887 src/pgtkfns.c else if (pgtk_is_upper_char (c)) c 1889 src/pgtkfns.c c = c - 'A' + 'a'; /* upper -> lower */ c 1893 src/pgtkfns.c else if (pgtk_is_numeric_char (c)) c 1898 src/pgtkfns.c *dp++ = c; c 5137 src/pgtkterm.c Lisp_Object c = make_fixnum (*ustr); c 5139 src/pgtkterm.c inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFIXNAT (c)) c 5143 src/pgtkterm.c inev.ie.code = XFIXNAT (c); c 5207 src/pgtkterm.c Lisp_Object c; c 5282 src/pgtkterm.c && (c = Fgethash (make_fixnum (keysym), c 5283 src/pgtkterm.c Vpgtk_keysym_table, Qnil), FIXNATP (c))) c 5285 src/pgtkterm.c inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFIXNAT (c)) c 5288 src/pgtkterm.c inev.ie.code = XFIXNAT (c); c 356 src/print.c octalout (unsigned char c, unsigned char *data, ptrdiff_t i, ptrdiff_t size, c 359 src/print.c int digits = (c > '\77' || (i < size && '0' <= data[i] && data[i] <= '7') c 361 src/print.c : c > '\7' ? 2 : 1); c 364 src/print.c printchar ('0' + ((c >> (3 * --digits)) & 7), printcharfun); c 1534 src/print.c int c = fetch_string_char_advance (string, &charpos, &bytepos); c 1535 src/print.c if (! ASCII_CHAR_P (c) c 1536 src/print.c && ! EQ (CHARSET_NAME (CHAR_CHARSET (c)), charset)) c 1640 src/print.c unsigned char c = data[i]; c 1641 src/print.c if (c == '\n' && print_escape_newlines) c 1643 src/print.c else if (c == '\f' && print_escape_newlines) c 1645 src/print.c else if (c > '\177' c 1646 src/print.c || (print_escape_control_characters && c_iscntrl (c))) c 1649 src/print.c octalout (c, data, i + 1, size_in_bytes, printcharfun); c 1653 src/print.c if (c == '\"' || c == '\\') c 1655 src/print.c printchar (c, printcharfun); c 2323 src/print.c int c = fetch_string_char_advance (obj, &i, &i_byte); c 2328 src/print.c ? (CHAR_BYTE8_P (c) && (c = CHAR_TO_BYTE8 (c), true)) c 2329 src/print.c : (SINGLE_BYTE_CHAR_P (c) && ! ASCII_CHAR_P (c) c 2336 src/print.c octalout (c, SDATA (obj), i_byte, size_byte, printcharfun); c 2340 src/print.c && ! ASCII_CHAR_P (c) && print_escape_multibyte) c 2344 src/print.c char outbuf[sizeof "\\x" + INT_STRLEN_BOUND (c)]; c 2345 src/print.c int len = sprintf (outbuf, "\\x%04x", c + 0u); c 2354 src/print.c if (c_isxdigit (c)) c 2358 src/print.c printchar (c, printcharfun); c 2360 src/print.c else if (c == '\n' && print_escape_newlines c 2361 src/print.c ? (c = 'n', true) c 2362 src/print.c : c == '\f' && print_escape_newlines c 2363 src/print.c ? (c = 'f', true) c 2364 src/print.c : c == '\"' || c == '\\') c 2367 src/print.c printchar (c, printcharfun); c 2369 src/print.c else if (print_escape_control_characters && c_iscntrl (c)) c 2370 src/print.c octalout (c, SDATA (obj), i_byte, size_byte, printcharfun); c 2372 src/print.c && SINGLE_BYTE_CHAR_P (c) c 2373 src/print.c && !ASCII_CHAR_P (c)) c 2374 src/print.c printchar (BYTE8_TO_CHAR (c), printcharfun); c 2376 src/print.c printchar (c, printcharfun); c 2424 src/print.c int c = fetch_string_char_advance (name, &i, &i_byte); c 2429 src/print.c if (c == '\"' || c == '\\' || c == '\'' c 2430 src/print.c || c == ';' || c == '#' || c == '(' || c == ')' c 2431 src/print.c || c == ',' || c == '`' c 2432 src/print.c || c == '[' || c == ']' || c <= 040 c 2433 src/print.c || c == NO_BREAK_SPACE c 2440 src/print.c printchar (c, printcharfun); c 842 src/process.c register int c, i; c 843 src/process.c for (c = FIRST_PTY_LETTER; c <= 'z'; c++) c 850 src/process.c sprintf (pty_name, "/dev/pty%c%x", c, i); c 864 src/process.c sprintf (pty_name, "/dev/tty%c%x", c, i); c 48 src/regex-emacs.c #define SYNTAX(c) syntax_property (c, 1) c 64 src/regex-emacs.c #define RE_CHAR_TO_MULTIBYTE(c) UNIBYTE_TO_CHAR (c) c 66 src/regex-emacs.c #define RE_CHAR_TO_UNIBYTE(c) CHAR_TO_BYTE_SAFE (c) c 71 src/regex-emacs.c #define GET_CHAR_BEFORE_2(c, p, str1, end1, str2, end2) \ c 79 src/regex-emacs.c c = STRING_CHAR (dtemp); \ c 83 src/regex-emacs.c (c = ((p) == (str2) ? (end1) : (p))[-1]); \ c 84 src/regex-emacs.c (c) = RE_CHAR_TO_MULTIBYTE (c); \ c 90 src/regex-emacs.c #define GET_CHAR_AFTER(c, p, len) \ c 93 src/regex-emacs.c (c) = string_char_and_length (p, &(len)); \ c 96 src/regex-emacs.c (c) = *p; \ c 98 src/regex-emacs.c (c) = RE_CHAR_TO_MULTIBYTE (c); \ c 103 src/regex-emacs.c #define IS_REAL_ASCII(c) ((c) < 0200) c 106 src/regex-emacs.c #define ISUNIBYTE(c) (SINGLE_BYTE_CHAR_P ((c))) c 111 src/regex-emacs.c #define ISDIGIT(c) ((c) >= '0' && (c) <= '9') c 112 src/regex-emacs.c #define ISCNTRL(c) ((c) < ' ') c 113 src/regex-emacs.c #define ISXDIGIT(c) (0 <= char_hexdigit (c)) c 117 src/regex-emacs.c #define ISBLANK(c) (IS_REAL_ASCII (c) \ c 118 src/regex-emacs.c ? ((c) == ' ' || (c) == '\t') \ c 119 src/regex-emacs.c : blankp (c)) c 121 src/regex-emacs.c #define ISGRAPH(c) (SINGLE_BYTE_CHAR_P (c) \ c 122 src/regex-emacs.c ? (c) > ' ' && !((c) >= 0177 && (c) <= 0240) \ c 123 src/regex-emacs.c : graphicp (c)) c 125 src/regex-emacs.c #define ISPRINT(c) (SINGLE_BYTE_CHAR_P (c) \ c 126 src/regex-emacs.c ? (c) >= ' ' && !((c) >= 0177 && (c) <= 0237) \ c 127 src/regex-emacs.c : printablep (c)) c 129 src/regex-emacs.c #define ISALNUM(c) (IS_REAL_ASCII (c) \ c 130 src/regex-emacs.c ? (((c) >= 'a' && (c) <= 'z') \ c 131 src/regex-emacs.c || ((c) >= 'A' && (c) <= 'Z') \ c 132 src/regex-emacs.c || ((c) >= '0' && (c) <= '9')) \ c 133 src/regex-emacs.c : alphanumericp (c)) c 135 src/regex-emacs.c #define ISALPHA(c) (IS_REAL_ASCII (c) \ c 136 src/regex-emacs.c ? (((c) >= 'a' && (c) <= 'z') \ c 137 src/regex-emacs.c || ((c) >= 'A' && (c) <= 'Z')) \ c 138 src/regex-emacs.c : alphabeticp (c)) c 140 src/regex-emacs.c #define ISLOWER(c) lowercasep (c) c 142 src/regex-emacs.c #define ISPUNCT(c) (IS_REAL_ASCII (c) \ c 143 src/regex-emacs.c ? ((c) > ' ' && (c) < 0177 \ c 144 src/regex-emacs.c && !(((c) >= 'a' && (c) <= 'z') \ c 145 src/regex-emacs.c || ((c) >= 'A' && (c) <= 'Z') \ c 146 src/regex-emacs.c || ((c) >= '0' && (c) <= '9'))) \ c 147 src/regex-emacs.c : SYNTAX (c) != Sword) c 149 src/regex-emacs.c #define ISSPACE(c) (SYNTAX (c) == Swhitespace) c 151 src/regex-emacs.c #define ISUPPER(c) uppercasep (c) c 153 src/regex-emacs.c #define ISWORD(c) (SYNTAX (c) == Sword) c 454 src/regex-emacs.c debug_putchar (int c) c 456 src/regex-emacs.c if (c >= 32 && c <= 126) c 457 src/regex-emacs.c putc (c, stderr); c 460 src/regex-emacs.c unsigned int uc = c; c 556 src/regex-emacs.c int c, last = -100; c 567 src/regex-emacs.c for (c = 0; c < 256; c++) c 568 src/regex-emacs.c if (c / 8 < length c 569 src/regex-emacs.c && (p[1 + (c/8)] & (1 << (c % 8)))) c 572 src/regex-emacs.c if (last + 1 == c && ! in_range) c 578 src/regex-emacs.c else if (last + 1 != c && in_range) c 585 src/regex-emacs.c debug_putchar (c); c 587 src/regex-emacs.c last = c; c 1002 src/regex-emacs.c int c; \ c 1004 src/regex-emacs.c EXTRACT_NUMBER (c, ptr); \ c 1005 src/regex-emacs.c DEBUG_PRINT (" Push number %p = %d -> %d\n", ptr, c, val); \ c 1006 src/regex-emacs.c PUSH_FAILURE_INT (c); \ c 1174 src/regex-emacs.c #define PATFETCH(c) \ c 1178 src/regex-emacs.c c = RE_STRING_CHAR_AND_LENGTH (p, len, multibyte); \ c 1197 src/regex-emacs.c #define BUF_PUSH(c) \ c 1200 src/regex-emacs.c *b++ = (unsigned char) (c); \ c 1370 src/regex-emacs.c #define SET_LIST_BIT(c) (b[((c)) / BYTEWIDTH] |= 1 << ((c) % BYTEWIDTH)) c 1483 src/regex-emacs.c PATFETCH (c); \ c 1484 src/regex-emacs.c while ('0' <= c && c <= '9') \ c 1488 src/regex-emacs.c if (RE_DUP_MAX / 10 - (RE_DUP_MAX % 10 < c - '0') < num) \ c 1490 src/regex-emacs.c num = num * 10 + c - '0'; \ c 1493 src/regex-emacs.c PATFETCH (c); \ c 1703 src/regex-emacs.c int c, c1; c 1817 src/regex-emacs.c PATFETCH (c); c 1819 src/regex-emacs.c switch (c) c 1886 src/regex-emacs.c if (c == '?' && (zero_times_ok || many_times_ok)) c 1890 src/regex-emacs.c zero_times_ok |= c != '+'; c 1891 src/regex-emacs.c many_times_ok |= c != '?'; c 1897 src/regex-emacs.c c = *p++; c 2060 src/regex-emacs.c for (c = 0; c < 0x80; ++c) c 2061 src/regex-emacs.c if (re_iswctype (c, cc)) c 2063 src/regex-emacs.c SET_LIST_BIT (c); c 2064 src/regex-emacs.c c1 = TRANSLATE (c); c 2065 src/regex-emacs.c if (c1 == c) c 2090 src/regex-emacs.c PATFETCH (c); c 2095 src/regex-emacs.c if (c == ']' && p2 != p1) c 2108 src/regex-emacs.c && ! ASCII_CHAR_P (c) && ! CHAR_BYTE8_P (c)) c 2111 src/regex-emacs.c c = c1 + 1; c 2115 src/regex-emacs.c c1 = c; c 2117 src/regex-emacs.c if (c <= c1) c 2119 src/regex-emacs.c if (c < 128) c 2122 src/regex-emacs.c SETUP_ASCII_RANGE (range_table_work, c, ch); c 2123 src/regex-emacs.c c = ch + 1; c 2125 src/regex-emacs.c c = BYTE8_TO_CHAR (128); c 2127 src/regex-emacs.c if (c <= c1) c 2129 src/regex-emacs.c if (CHAR_BYTE8_P (c)) c 2131 src/regex-emacs.c c = CHAR_TO_BYTE8 (c); c 2133 src/regex-emacs.c for (; c <= c1; c++) c 2134 src/regex-emacs.c SET_LIST_BIT (c); c 2137 src/regex-emacs.c SETUP_MULTIBYTE_RANGE (range_table_work, c, c1); c 2139 src/regex-emacs.c SETUP_UNIBYTE_RANGE (range_table_work, c, c1); c 2184 src/regex-emacs.c PATFETCH (c); c 2186 src/regex-emacs.c switch (c) c 2197 src/regex-emacs.c PATFETCH (c); /* Gobble up the '?'. */ c 2200 src/regex-emacs.c PATFETCH (c); c 2201 src/regex-emacs.c switch (c) c 2213 src/regex-emacs.c || INT_ADD_WRAPV (regnum, c - '0', c 2364 src/regex-emacs.c if (c == ',') c 2372 src/regex-emacs.c || c != '\\') c 2489 src/regex-emacs.c c = '{'; c 2499 src/regex-emacs.c PATFETCH (c); c 2500 src/regex-emacs.c BUF_PUSH_2 (syntaxspec, syntax_spec_code[c]); c 2505 src/regex-emacs.c PATFETCH (c); c 2506 src/regex-emacs.c BUF_PUSH_2 (notsyntaxspec, syntax_spec_code[c]); c 2511 src/regex-emacs.c PATFETCH (c); c 2512 src/regex-emacs.c BUF_PUSH_2 (categoryspec, c); c 2517 src/regex-emacs.c PATFETCH (c); c 2518 src/regex-emacs.c BUF_PUSH_2 (notcategoryspec, c); c 2545 src/regex-emacs.c PATFETCH (c); c 2546 src/regex-emacs.c if (c == '<') c 2548 src/regex-emacs.c else if (c == '>') c 2573 src/regex-emacs.c regnum_t reg = c - '0'; c 2625 src/regex-emacs.c c = TRANSLATE (c); c 2626 src/regex-emacs.c len = CHAR_STRING (c, b); c 2631 src/regex-emacs.c c1 = RE_CHAR_TO_MULTIBYTE (c); c 2637 src/regex-emacs.c c = c1; c 2639 src/regex-emacs.c *b++ = c; c 2886 src/regex-emacs.c int c = RE_CHAR_TO_MULTIBYTE (p[1]); c 2888 src/regex-emacs.c fastmap[CHAR_LEADING_CODE (c)] = 1; c 2949 src/regex-emacs.c int c, count; c 2961 src/regex-emacs.c EXTRACT_CHARACTER (c, p); c 2962 src/regex-emacs.c lc1 = CHAR_LEADING_CODE (c); c 2964 src/regex-emacs.c EXTRACT_CHARACTER (c, p); c 2965 src/regex-emacs.c lc2 = CHAR_LEADING_CODE (c); c 3587 src/regex-emacs.c execute_charset (re_char **pp, int c, int corig, bool unibyte, c 3590 src/regex-emacs.c eassume (0 <= c && 0 <= corig); c 3604 src/regex-emacs.c if (unibyte && c < (1 << BYTEWIDTH)) c 3608 src/regex-emacs.c if (c < (unsigned) (CHARSET_BITMAP_SIZE (p) * BYTEWIDTH) c 3609 src/regex-emacs.c && p[2 + c / BYTEWIDTH] & (1 << (c % BYTEWIDTH))) c 3622 src/regex-emacs.c (class_bits & BIT_ALNUM && ISALNUM (c)) || c 3623 src/regex-emacs.c (class_bits & BIT_ALPHA && ISALPHA (c)) || c 3624 src/regex-emacs.c (class_bits & BIT_SPACE && ISSPACE (c)) || c 3625 src/regex-emacs.c (class_bits & BIT_BLANK && ISBLANK (c)) || c 3626 src/regex-emacs.c (class_bits & BIT_WORD && ISWORD (c)) || c 3631 src/regex-emacs.c (class_bits & BIT_PUNCT && ISPUNCT (c)) || c 3632 src/regex-emacs.c (class_bits & BIT_GRAPH && ISGRAPH (c)) || c 3633 src/regex-emacs.c (class_bits & BIT_PRINT && ISPRINT (c))) c 3640 src/regex-emacs.c if (range_start <= c && c <= range_end) c 3690 src/regex-emacs.c int c c 3696 src/regex-emacs.c if (c != RE_STRING_CHAR (p1 + 2, multibyte)) c 3698 src/regex-emacs.c DEBUG_PRINT (" '%c' != '%c' => fast loop.\n", c, p1[2]); c 3706 src/regex-emacs.c if (!execute_charset (&p1, c, c, !multibyte || ASCII_CHAR_P (c), c 3714 src/regex-emacs.c && c == '\n') c 4375 src/regex-emacs.c int c = corig; c 4380 src/regex-emacs.c c = TRANSLATE (c); c 4381 src/regex-emacs.c c1 = RE_CHAR_TO_UNIBYTE (c); c 4385 src/regex-emacs.c c = c1; c 4390 src/regex-emacs.c int c1 = RE_CHAR_TO_MULTIBYTE (c); c 4399 src/regex-emacs.c c = c1; c 4407 src/regex-emacs.c if (!execute_charset (&p, c, corig, unibyte_char, translate)) c 4546 src/regex-emacs.c unsigned c; c 4547 src/regex-emacs.c GET_CHAR_BEFORE_2 (c, d, string1, end1, string2, end2); c 4548 src/regex-emacs.c if (c == '\n') c 5017 src/regex-emacs.c int c; c 5019 src/regex-emacs.c GET_CHAR_AFTER (c, d, len); c 5020 src/regex-emacs.c if ((SYNTAX (c) != (enum syntaxcode) mcnt) ^ not) c 5045 src/regex-emacs.c int c; c 5046 src/regex-emacs.c GET_CHAR_AFTER (c, d, len); c 5047 src/regex-emacs.c if ((!CHAR_HAS_CATEGORY (c, mcnt)) ^ not) c 98 src/region-cache.c #define BOUNDARY_POS(c, i) \ c 99 src/region-cache.c ((i) < (c)->gap_start \ c 100 src/region-cache.c ? (c)->buffer_beg + (c)->boundaries[(i)].pos \ c 101 src/region-cache.c : (c)->buffer_end + (c)->boundaries[(c)->gap_len + (i)].pos) c 104 src/region-cache.c #define BOUNDARY_VALUE(c, i) \ c 105 src/region-cache.c ((i) < (c)->gap_start \ c 106 src/region-cache.c ? (c)->boundaries[(i)].value \ c 107 src/region-cache.c : (c)->boundaries[(c)->gap_len + (i)].value) c 110 src/region-cache.c #define SET_BOUNDARY_VALUE(c, i, v) \ c 111 src/region-cache.c ((i) < (c)->gap_start \ c 112 src/region-cache.c ? ((c)->boundaries[(i)].value = (v))\ c 113 src/region-cache.c : ((c)->boundaries[(c)->gap_len + (i)].value = (v))) c 125 src/region-cache.c static void revalidate_region_cache (struct buffer *buf, struct region_cache *c); c 133 src/region-cache.c struct region_cache *c = xmalloc (sizeof *c); c 135 src/region-cache.c c->gap_start = 0; c 136 src/region-cache.c c->gap_len = NEW_CACHE_GAP; c 137 src/region-cache.c c->cache_len = 0; c 138 src/region-cache.c c->boundaries = xmalloc ((c->gap_len + c->cache_len) c 139 src/region-cache.c * sizeof (*c->boundaries)); c 141 src/region-cache.c c->beg_unchanged = 0; c 142 src/region-cache.c c->end_unchanged = 0; c 143 src/region-cache.c c->buffer_beg = BEG; c 144 src/region-cache.c c->buffer_end = BEG; c 147 src/region-cache.c c->cache_len++; c 148 src/region-cache.c c->gap_len--; c 149 src/region-cache.c c->gap_start++; c 150 src/region-cache.c c->boundaries[0].pos = 0; /* from buffer_beg */ c 151 src/region-cache.c c->boundaries[0].value = 0; c 153 src/region-cache.c return c; c 157 src/region-cache.c free_region_cache (struct region_cache *c) c 159 src/region-cache.c xfree (c->boundaries); c 160 src/region-cache.c xfree (c); c 174 src/region-cache.c find_cache_boundary (struct region_cache *c, ptrdiff_t pos) c 176 src/region-cache.c ptrdiff_t low = 0, high = c->cache_len; c 183 src/region-cache.c ptrdiff_t boundary = BOUNDARY_POS (c, mid); c 192 src/region-cache.c eassert (!(BOUNDARY_POS (c, low) > pos c 193 src/region-cache.c || (low + 1 < c->cache_len c 194 src/region-cache.c && BOUNDARY_POS (c, low + 1) <= pos))); c 207 src/region-cache.c move_cache_gap (struct region_cache *c, ptrdiff_t pos, ptrdiff_t min_size) c 210 src/region-cache.c ptrdiff_t gap_start = c->gap_start; c 211 src/region-cache.c ptrdiff_t gap_len = c->gap_len; c 212 src/region-cache.c ptrdiff_t buffer_beg = c->buffer_beg; c 213 src/region-cache.c ptrdiff_t buffer_end = c->buffer_end; c 217 src/region-cache.c eassert (0 < pos && pos <= c->cache_len); c 224 src/region-cache.c c->boundaries[gap_start].pos c 226 src/region-cache.c + c->boundaries[gap_start + gap_len].pos c 228 src/region-cache.c c->boundaries[gap_start].value c 229 src/region-cache.c = c->boundaries[gap_start + gap_len].value; c 240 src/region-cache.c ptrdiff_t i, nboundaries = c->cache_len; c 242 src/region-cache.c c->boundaries = c 243 src/region-cache.c xpalloc (c->boundaries, &nboundaries, min_size - gap_len, -1, c 244 src/region-cache.c sizeof *c->boundaries); c 249 src/region-cache.c min_size = nboundaries - c->cache_len - gap_len; c 250 src/region-cache.c for (i = c->cache_len - 1; i >= gap_start; i--) c 252 src/region-cache.c c->boundaries[i + min_size].pos = c->boundaries[i + gap_len].pos; c 253 src/region-cache.c c->boundaries[i + min_size].value = c->boundaries[i + gap_len].value; c 266 src/region-cache.c c->boundaries[gap_start + gap_len].pos c 267 src/region-cache.c = c->boundaries[gap_start].pos + buffer_beg - buffer_end; c 268 src/region-cache.c c->boundaries[gap_start + gap_len].value c 269 src/region-cache.c = c->boundaries[gap_start].value; c 273 src/region-cache.c c->gap_start = gap_start; c 274 src/region-cache.c c->gap_len = gap_len; c 281 src/region-cache.c insert_cache_boundary (struct region_cache *c, ptrdiff_t i, ptrdiff_t pos, c 286 src/region-cache.c eassert (0 < i && i <= c->cache_len); c 289 src/region-cache.c eassert ((BOUNDARY_POS (c, i - 1) < pos c 290 src/region-cache.c && (i == c->cache_len c 291 src/region-cache.c || pos < BOUNDARY_POS (c, i)))); c 296 src/region-cache.c eassert (BOUNDARY_VALUE (c, i - 1) != value); c 298 src/region-cache.c move_cache_gap (c, i, 1); c 300 src/region-cache.c c->boundaries[i].pos = pos - c->buffer_beg; c 301 src/region-cache.c c->boundaries[i].value = value; c 302 src/region-cache.c c->gap_start++; c 303 src/region-cache.c c->gap_len--; c 304 src/region-cache.c c->cache_len++; c 311 src/region-cache.c delete_cache_boundaries (struct region_cache *c, c 317 src/region-cache.c eassert (0 <= start && end <= c->cache_len); c 330 src/region-cache.c else if (c->gap_start <= start) c 332 src/region-cache.c move_cache_gap (c, start, 0); c 333 src/region-cache.c c->gap_len += len; c 337 src/region-cache.c else if (end <= c->gap_start) c 339 src/region-cache.c move_cache_gap (c, end, 0); c 340 src/region-cache.c c->gap_start -= len; c 341 src/region-cache.c c->gap_len += len; c 346 src/region-cache.c c->gap_start = start; c 347 src/region-cache.c c->gap_len += len; c 350 src/region-cache.c c->cache_len -= len; c 359 src/region-cache.c set_cache_region (struct region_cache *c, c 363 src/region-cache.c eassert (c->buffer_beg <= start && end <= c->buffer_end); c 380 src/region-cache.c ptrdiff_t start_ix = find_cache_boundary (c, start); c 381 src/region-cache.c ptrdiff_t end_ix = find_cache_boundary (c, end - 1) + 1; c 387 src/region-cache.c int value_at_end = BOUNDARY_VALUE (c, end_ix - 1); c 392 src/region-cache.c delete_cache_boundaries (c, start_ix + 1, end_ix); c 396 src/region-cache.c if (BOUNDARY_POS (c, start_ix) == start) c 401 src/region-cache.c && BOUNDARY_VALUE (c, start_ix - 1) == value) c 403 src/region-cache.c delete_cache_boundaries (c, start_ix, start_ix + 1); c 407 src/region-cache.c SET_BOUNDARY_VALUE (c, start_ix, value); c 412 src/region-cache.c if (BOUNDARY_VALUE (c, start_ix) != value) c 414 src/region-cache.c insert_cache_boundary (c, start_ix + 1, start, value); c 426 src/region-cache.c if (end == c->buffer_end) c 429 src/region-cache.c else if (end_ix >= c->cache_len c 430 src/region-cache.c || end < BOUNDARY_POS (c, end_ix)) c 434 src/region-cache.c insert_cache_boundary (c, end_ix, end, value_at_end); c 439 src/region-cache.c if (value == BOUNDARY_VALUE (c, end_ix)) c 440 src/region-cache.c delete_cache_boundaries (c, end_ix, end_ix + 1); c 458 src/region-cache.c invalidate_region_cache (struct buffer *buf, struct region_cache *c, c 472 src/region-cache.c if (((BUF_BEG (buf) + c->beg_unchanged) - (BUF_Z (buf) - tail) c 474 src/region-cache.c || ((BUF_BEG (buf) + head) - (BUF_Z (buf) - c->end_unchanged) c 476 src/region-cache.c revalidate_region_cache (buf, c); c 479 src/region-cache.c if (head < c->beg_unchanged) c 480 src/region-cache.c c->beg_unchanged = head; c 481 src/region-cache.c if (tail < c->end_unchanged) c 482 src/region-cache.c c->end_unchanged = tail; c 537 src/region-cache.c revalidate_region_cache (struct buffer *buf, struct region_cache *c) c 549 src/region-cache.c if (c->buffer_beg + c->beg_unchanged c 550 src/region-cache.c > c->buffer_end - c->end_unchanged) c 564 src/region-cache.c if (c->buffer_beg + c->beg_unchanged c 565 src/region-cache.c == c->buffer_end - c->end_unchanged) c 575 src/region-cache.c move_cache_gap (c, c 576 src/region-cache.c (find_cache_boundary (c, (c->buffer_beg c 577 src/region-cache.c + c->beg_unchanged)) c 581 src/region-cache.c c->buffer_beg = BUF_BEG (buf); c 582 src/region-cache.c c->buffer_end = BUF_Z (buf); c 587 src/region-cache.c set_cache_region (c, c 588 src/region-cache.c c->buffer_beg + c->beg_unchanged, c 589 src/region-cache.c c->buffer_end - c->end_unchanged, c 601 src/region-cache.c set_cache_region (c, c 602 src/region-cache.c c->buffer_beg + c->beg_unchanged, c 603 src/region-cache.c c->buffer_end - c->end_unchanged, c 618 src/region-cache.c find_cache_boundary (c, (c->buffer_beg + c->beg_unchanged)) + 1; c 619 src/region-cache.c move_cache_gap (c, modified_ix, 0); c 621 src/region-cache.c c->buffer_beg = BUF_BEG (buf); c 622 src/region-cache.c c->buffer_end = BUF_Z (buf); c 630 src/region-cache.c if (modified_ix < c->cache_len c 631 src/region-cache.c && (BOUNDARY_POS (c, modified_ix - 1) c 632 src/region-cache.c == BOUNDARY_POS (c, modified_ix))) c 634 src/region-cache.c int value_after = BOUNDARY_VALUE (c, modified_ix); c 640 src/region-cache.c && value_after == BOUNDARY_VALUE (c, modified_ix - 2)) c 641 src/region-cache.c delete_cache_boundaries (c, modified_ix - 1, modified_ix + 1); c 646 src/region-cache.c SET_BOUNDARY_VALUE (c, modified_ix - 1, value_after); c 647 src/region-cache.c delete_cache_boundaries (c, modified_ix, modified_ix + 1); c 653 src/region-cache.c c->beg_unchanged c 654 src/region-cache.c = c->end_unchanged c 655 src/region-cache.c = c->buffer_end - c->buffer_beg; c 665 src/region-cache.c know_region_cache (struct buffer *buf, struct region_cache *c, c 668 src/region-cache.c revalidate_region_cache (buf, c); c 670 src/region-cache.c set_cache_region (c, start, end, 1); c 681 src/region-cache.c region_cache_forward (struct buffer *buf, struct region_cache *c, c 684 src/region-cache.c revalidate_region_cache (buf, c); c 687 src/region-cache.c ptrdiff_t i = find_cache_boundary (c, pos); c 688 src/region-cache.c int i_value = BOUNDARY_VALUE (c, i); c 700 src/region-cache.c for (j = i + 1; j < c->cache_len; j++) c 701 src/region-cache.c if (BOUNDARY_VALUE (c, j) != i_value) c 704 src/region-cache.c if (j < c->cache_len) c 705 src/region-cache.c *next = BOUNDARY_POS (c, j); c 719 src/region-cache.c region_cache_backward (struct buffer *buf, struct region_cache *c, c 722 src/region-cache.c revalidate_region_cache (buf, c); c 733 src/region-cache.c ptrdiff_t i = find_cache_boundary (c, pos - 1); c 734 src/region-cache.c int i_value = BOUNDARY_VALUE (c, i); c 741 src/region-cache.c if (BOUNDARY_VALUE (c, j) != i_value) c 745 src/region-cache.c *next = BOUNDARY_POS (c, j + 1); c 760 src/region-cache.c pp_cache (struct region_cache *c) c 762 src/region-cache.c ptrdiff_t beg_u = c->buffer_beg + c->beg_unchanged; c 763 src/region-cache.c ptrdiff_t end_u = c->buffer_end - c->end_unchanged; c 767 src/region-cache.c c->buffer_beg, c->buffer_end, c 770 src/region-cache.c for (ptrdiff_t i = 0; i < c->cache_len; i++) c 772 src/region-cache.c ptrdiff_t pos = BOUNDARY_POS (c, i); c 777 src/region-cache.c pos, BOUNDARY_VALUE (c, i)); c 105 src/region-cache.h extern int region_cache_forward (struct buffer *buf, struct region_cache *c, c 109 src/region-cache.h extern int region_cache_backward (struct buffer *buf, struct region_cache *c, c 1392 src/search.c int in_charlen, c = string_char_and_length (base_pat, &in_charlen); c 1402 src/search.c TRANSLATE (translated, trt, c); c 1407 src/search.c TRANSLATE (inverse, inverse_trt, c); c 1409 src/search.c if (c != inverse && boyer_moore_ok) c 1440 src/search.c if (c == inverse) c 1465 src/search.c int c, translated, inverse; c 1476 src/search.c c = *base_pat++; c 1477 src/search.c TRANSLATE (translated, trt, c); c 1481 src/search.c TRANSLATE (inverse, inverse_trt, c); c 1489 src/search.c if (c == inverse) c 2399 src/search.c int c, prevc; c 2466 src/search.c c = FETCH_CHAR_AS_MULTIBYTE (pos_byte); c 2470 src/search.c c = fetch_string_char_as_multibyte_advance (string, c 2473 src/search.c if (lowercasep (c)) c 2483 src/search.c else if (uppercasep (c)) c 2499 src/search.c prevc = c; c 2544 src/search.c c = fetch_string_char_advance (newtext, &pos, &pos_byte); c 2546 src/search.c if (c == '\\') c 2548 src/search.c c = fetch_string_char_advance (newtext, &pos, &pos_byte); c 2550 src/search.c if (c == '&') c 2555 src/search.c else if (c >= '1' && c <= '9') c 2557 src/search.c if (c - '0' < num_regs c 2558 src/search.c && search_regs.start[c - '0'] >= 0) c 2560 src/search.c substart = search_regs.start[c - '0']; c 2561 src/search.c subend = search_regs.end[c - '0']; c 2571 src/search.c else if (c == '\\') c 2573 src/search.c else if (c != '?') c 2656 src/search.c c = fetch_string_char_advance_no_check (newtext, c 2659 src/search.c c = CHAR_TO_BYTE8 (c); c 2664 src/search.c c = SREF (newtext, pos_byte++); c 2666 src/search.c c = make_char_multibyte (c); c 2673 src/search.c if (c == '\\') c 2679 src/search.c c = fetch_string_char_advance_no_check (newtext, c 2681 src/search.c if (!buf_multibyte && !ASCII_CHAR_P (c)) c 2682 src/search.c c = CHAR_TO_BYTE8 (c); c 2686 src/search.c c = SREF (newtext, pos_byte++); c 2688 src/search.c c = make_char_multibyte (c); c 2691 src/search.c if (c == '&') c 2693 src/search.c else if ('1' <= c && c <= '9' && c - '0' < num_regs) c 2695 src/search.c if (search_regs.start[c - '0'] >= 1) c 2696 src/search.c idx = c - '0'; c 2698 src/search.c else if (c == '\\') c 2708 src/search.c add_len = CHAR_STRING (c, str); c 32 src/syntax.c #define SYNTAX(c) syntax_property (c, 1) c 33 src/syntax.c #define SYNTAX_ENTRY(c) syntax_property_entry (c, 1) c 34 src/syntax.c #define SYNTAX_WITH_FLAGS(c) syntax_property_with_flags (c, 1) c 125 src/syntax.c SYNTAX_COMEND_FIRST (int c) c 127 src/syntax.c return SYNTAX_FLAGS_COMEND_FIRST (SYNTAX_WITH_FLAGS (c)); c 200 src/syntax.c syntax_prefix_flag_p (int c) c 202 src/syntax.c return SYNTAX_FLAGS_PREFIX (SYNTAX_WITH_FLAGS (c)); c 213 src/syntax.c SET_RAW_SYNTAX_ENTRY (Lisp_Object table, int c, Lisp_Object val) c 215 src/syntax.c CHAR_TABLE_SET (table, c, val); c 232 src/syntax.c SYNTAX_MATCH (int c) c 234 src/syntax.c Lisp_Object ent = SYNTAX_ENTRY (c); c 537 src/syntax.c int c; c 541 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (bytepos); c 542 src/syntax.c code = SYNTAX (c); c 632 src/syntax.c int c = FETCH_CHAR_AS_MULTIBYTE (PT_BYTE); c 633 src/syntax.c if (SYNTAX (c) == Sopen) c 636 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (PT_BYTE); c 637 src/syntax.c if (SYNTAX (c) == Sopen) c 665 src/syntax.c int c; c 670 src/syntax.c c = FETCH_CHAR (pos_byte); c 671 src/syntax.c val = SYNTAX_COMEND_FIRST (c); c 720 src/syntax.c int c; c 743 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 744 src/syntax.c syntax = SYNTAX_WITH_FLAGS (c); c 745 src/syntax.c code = SYNTAX (c); c 818 src/syntax.c c = (code == Sstring_fence ? ST_STRING_STYLE : ST_COMMENT_STYLE); c 824 src/syntax.c string_style = c; c 825 src/syntax.c else if (string_style == c) c 869 src/syntax.c else if (comstart_pos != 0 || c != '\n') c 1264 src/syntax.c (Lisp_Object c, Lisp_Object newentry, Lisp_Object syntax_table) c 1266 src/syntax.c if (CONSP (c)) c 1268 src/syntax.c CHECK_CHARACTER_CAR (c); c 1269 src/syntax.c CHECK_CHARACTER_CDR (c); c 1272 src/syntax.c CHECK_CHARACTER (c); c 1280 src/syntax.c if (CONSP (c)) c 1281 src/syntax.c SET_RAW_SYNTAX_ENTRY_RANGE (syntax_table, c, newentry); c 1283 src/syntax.c SET_RAW_SYNTAX_ENTRY (syntax_table, XFIXNUM (c), newentry); c 1658 src/syntax.c int c; c 1733 src/syntax.c c = str[i_byte++]; c 1735 src/syntax.c if (c == '\\') c 1740 src/syntax.c c = str[i_byte++]; c 1758 src/syntax.c if (c <= c2) c 1761 src/syntax.c while (c < lim2) c 1762 src/syntax.c fastmap[c++] = 1; c 1769 src/syntax.c fastmap[c] = 1; c 1770 src/syntax.c if (! ASCII_CHAR_P (c)) c 1795 src/syntax.c c = BYTE8_TO_CHAR (i + 0200); c 1799 src/syntax.c char_ranges[n_char_ranges++] = c; c 1801 src/syntax.c leading_code = CHAR_LEADING_CODE (c); c 1836 src/syntax.c c = string_char_and_length (str + i_byte, &len); c 1863 src/syntax.c if (c > c2) c 1865 src/syntax.c if (ASCII_CHAR_P (c)) c 1867 src/syntax.c while (c <= c2 && c < 0x80) c 1868 src/syntax.c fastmap[c++] = 1; c 1869 src/syntax.c leading_code = CHAR_LEADING_CODE (c); c 1871 src/syntax.c if (! ASCII_CHAR_P (c)) c 1876 src/syntax.c if (c <= c2) c 1878 src/syntax.c char_ranges[n_char_ranges++] = c; c 1885 src/syntax.c if (ASCII_CHAR_P (c)) c 1886 src/syntax.c fastmap[c] = 1; c 1890 src/syntax.c char_ranges[n_char_ranges++] = c; c 1891 src/syntax.c char_ranges[n_char_ranges++] = c; c 1971 src/syntax.c c = string_char_and_length (p, &nbytes); c 1972 src/syntax.c if (! NILP (iso_classes) && in_classes (c, iso_classes)) c 1982 src/syntax.c if (! ASCII_CHAR_P (c)) c 1993 src/syntax.c if (c >= char_ranges[i] && c <= char_ranges[i + 1]) c 2045 src/syntax.c c = STRING_CHAR (p); c 2047 src/syntax.c if (! NILP (iso_classes) && in_classes (c, iso_classes)) c 2057 src/syntax.c if (! ASCII_CHAR_P (c)) c 2061 src/syntax.c if (c >= char_ranges[i] && c <= char_ranges[i + 1]) c 2108 src/syntax.c int c; c 2156 src/syntax.c c = str[i_byte++]; c 2157 src/syntax.c fastmap[syntax_spec_code[c]] = 1; c 2193 src/syntax.c c = string_char_and_length (p, &nbytes); c 2195 src/syntax.c c = *p, nbytes = 1; c 2196 src/syntax.c if (! fastmap[SYNTAX (c)]) c 2232 src/syntax.c c = STRING_CHAR (p); c 2233 src/syntax.c if (! fastmap[SYNTAX (c)]) c 2271 src/syntax.c in_classes (int c, Lisp_Object iso_classes) c 2281 src/syntax.c if (re_iswctype (c, XFIXNAT (elt))) c 2323 src/syntax.c int c, c1; c 2350 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 2351 src/syntax.c syntax = SYNTAX_WITH_FLAGS (c); c 2444 src/syntax.c int c, c1; c 2475 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 2476 src/syntax.c syntax = SYNTAX_WITH_FLAGS (c); c 2477 src/syntax.c code = SYNTAX (c); c 2501 src/syntax.c while (code == Swhitespace || (code == Sendcomment && c == '\n')); c 2539 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 2540 src/syntax.c int syntax = SYNTAX_WITH_FLAGS (c); c 2541 src/syntax.c code = SYNTAX (c); c 2576 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 2577 src/syntax.c if (SYNTAX (c) == Scomment_fence c 2605 src/syntax.c if (c == '\n') c 2614 src/syntax.c if (SYNTAX (c) != code) c 2649 src/syntax.c syntax_multibyte (int c, bool multibyte_symbol_p) c 2651 src/syntax.c return ASCII_CHAR_P (c) || !multibyte_symbol_p ? SYNTAX (c) : Ssymbol; c 2659 src/syntax.c int c, c1; c 2694 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 2695 src/syntax.c syntax = SYNTAX_WITH_FLAGS (c); c 2696 src/syntax.c code = syntax_multibyte (c, multibyte_symbol_p); c 2706 src/syntax.c && (c = FETCH_CHAR_AS_MULTIBYTE (from_byte), c 2707 src/syntax.c other_syntax = SYNTAX_WITH_FLAGS (c), c 2743 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 2744 src/syntax.c switch (syntax_multibyte (c, multibyte_symbol_p)) c 2788 src/syntax.c if (from != stop && c == FETCH_CHAR_AS_MULTIBYTE (from_byte)) c 2822 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 2823 src/syntax.c c_code = syntax_multibyte (c, multibyte_symbol_p); c 2825 src/syntax.c ? c == stringterm && c_code == Sstring c 2861 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 2862 src/syntax.c int syntax = SYNTAX_WITH_FLAGS (c); c 2863 src/syntax.c code = syntax_multibyte (c, multibyte_symbol_p); c 2941 src/syntax.c if (from != stop && c == FETCH_CHAR_AS_MULTIBYTE (temp_pos)) c 2989 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 2990 src/syntax.c if (syntax_multibyte (c, multibyte_symbol_p) == code) c 3008 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 3009 src/syntax.c if (c == stringterm c 3010 src/syntax.c && (syntax_multibyte (c, multibyte_symbol_p) c 3103 src/syntax.c int c; c 3118 src/syntax.c && ((c = FETCH_CHAR_AS_MULTIBYTE (pos_byte), SYNTAX (c) == Squote) c 3119 src/syntax.c || syntax_prefix_flag_p (c))) c 3407 src/syntax.c int c; c 3411 src/syntax.c c = FETCH_CHAR_AS_MULTIBYTE (from_byte); c 3412 src/syntax.c c_code = SYNTAX (c); c 3417 src/syntax.c if (nofence && c == state->instring && c_code == Sstring) c 3654 src/syntax.c register int i, c; c 3718 src/syntax.c c = "_-+*/&|<>="[i]; c 3719 src/syntax.c SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, c, temp); c 3725 src/syntax.c c = ".,;:?!#@~^'`"[i]; c 3726 src/syntax.c SET_RAW_SYNTAX_ENTRY (Vstandard_syntax_table, c, temp); c 100 src/syntax.h syntax_property_entry (int c, bool via_property) c 105 src/syntax.h : CHAR_TABLE_REF (gl_state.current_syntax_table, c)); c 106 src/syntax.h return CHAR_TABLE_REF (BVAR (current_buffer, syntax_table), c); c 109 src/syntax.h SYNTAX_ENTRY (int c) c 111 src/syntax.h return syntax_property_entry (c, false); c 118 src/syntax.h syntax_property_with_flags (int c, bool via_property) c 120 src/syntax.h Lisp_Object ent = syntax_property_entry (c, via_property); c 124 src/syntax.h SYNTAX_WITH_FLAGS (int c) c 126 src/syntax.h return syntax_property_with_flags (c, false); c 130 src/syntax.h syntax_property (int c, bool via_property) c 132 src/syntax.h return syntax_property_with_flags (c, via_property) & 0xff; c 135 src/syntax.h SYNTAX (int c) c 137 src/syntax.h return syntax_property (c, false); c 142 src/syntax.h extern bool syntax_prefix_flag_p (int c); c 397 src/sysdep.c stuff_char (char c) c 406 src/sysdep.c ioctl (fileno (CURTTY()->input), TIOCSTI, &c); c 2715 src/sysdep.c errputc (int c) c 2717 src/sysdep.c fputc_unlocked (c, errstream ()); c 2722 src/sysdep.c if (c == '\n') c 3308 src/sysdep.c int c; c 3327 src/sysdep.c while ((c = getc (fmem)) != EOF && c != '\n') c 3329 src/sysdep.c done = c == EOF; c 3361 src/sysdep.c char c; c 3437 src/sysdep.c &c, &ppid, &pgrp, &sess, &tty, &tpgid, c 3444 src/sysdep.c state_str[0] = c; c 3554 src/sysdep.c char c = *--p; c 3555 src/sysdep.c *--q = c ? c : ' '; c 3556 src/sysdep.c if (c_isspace (c) || c == '\\') c 52 src/systhread.c sys_cond_init (sys_cond_t *c) c 54 src/systhread.c *c = 0; c 58 src/systhread.c sys_cond_wait (sys_cond_t *c, sys_mutex_t *m) c 63 src/systhread.c sys_cond_signal (sys_cond_t *c) c 68 src/systhread.c sys_cond_broadcast (sys_cond_t *c) c 73 src/systhread.c sys_cond_destroy (sys_cond_t *c) c 583 src/term.c int c = LGLYPH_CHAR (g); c 585 src/term.c if (! char_charset (c, charset_list, NULL)) c 586 src/term.c c = '?'; c 587 src/term.c buf += CHAR_STRING (c, buf); c 593 src/term.c int c = COMPOSITION_GLYPH (cmp, i); c 597 src/term.c if (c == '\t') c 599 src/term.c if (char_charset (c, charset_list, NULL)) c 601 src/term.c if (CHARACTER_WIDTH (c) == 0 c 610 src/term.c c = '?'; c 611 src/term.c buf += CHAR_STRING (c, buf); c 619 src/term.c int c UNINIT; c 628 src/term.c c = src->u.ch; c 639 src/term.c c = GLYPH_CHAR (g); c 655 src/term.c if (CHAR_BYTE8_P (c) c 656 src/term.c || char_charset (c, charset_list, NULL)) c 659 src/term.c buf += CHAR_STRING (c, buf); c 1849 src/term.c len = CHARACTER_WIDTH (it->c); c 1862 src/term.c acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c); c 1888 src/term.c (it->c < 0x10000 ? "\\u%04X" c 1889 src/term.c : it->c <= MAX_UNICODE_CHAR ? "\\U%06X" c 1891 src/term.c it->c + 0u); c 145 src/termcap.c register int c; c 158 src/termcap.c while ((c = *p++) && c != ':' && c != '\n') c 169 src/termcap.c while ((c = *p++) && c != ':' && c != '\n') c 171 src/termcap.c if (c == '^') c 173 src/termcap.c c = *p++; c 174 src/termcap.c if (c == '?') c 175 src/termcap.c c = 0177; c 177 src/termcap.c c &= 037; c 179 src/termcap.c else if (c == '\\') c 181 src/termcap.c c = *p++; c 182 src/termcap.c if (c >= '0' && c <= '7') c 184 src/termcap.c c -= '0'; c 189 src/termcap.c c *= 8; c 190 src/termcap.c c += c1 - '0'; c 195 src/termcap.c else if (c >= 0200 && c < 0360) c 197 src/termcap.c c1 = esctab[(c & ~0100) - 0200]; c 199 src/termcap.c c = c1; c 202 src/termcap.c else if (c >= 0100 && c < 0200) c 204 src/termcap.c c1 = esctab[(c & ~040) - 0100]; c 206 src/termcap.c c = c1; c 210 src/termcap.c *r++ = c; c 355 src/termcap.c int c; c 473 src/termcap.c while ((*bp1++ = c = *termcap_name++) && c != '\n') c 475 src/termcap.c if (c == '\\' && *termcap_name == '\n') c 754 src/thread.c char c; c 769 src/thread.c self->m_stack_bottom = self->stack_top = &stack_pos.c; c 782 src/thread.c struct handler *c = push_handler (Qunbound, CATCHER); c 783 src/thread.c eassert (c == handlerlist_sentinel); c 798 src/thread.c struct handler *c, *c_next; c 799 src/thread.c for (c = handlerlist_sentinel; c; c = c_next) c 801 src/thread.c c_next = c->nextfree; c 802 src/thread.c xfree (c); c 72 src/tparam.c register int c; c 111 src/tparam.c c = *p++; c 112 src/tparam.c if (!c) c 114 src/tparam.c if (c == '%') c 116 src/tparam.c c = *p++; c 121 src/tparam.c switch (c) c 261 src/tparam.c *op++ = c; c 1299 src/unexmacosx.c char c[8]; c 370 src/w16select.c register unsigned char c = _farnspeekb (xbuf_addr++); c 372 src/w16select.c if (*lcdp == c) c 375 src/w16select.c if ((*dp++ = c) == '\r' && !Raw && _farnspeekb (xbuf_addr) == '\n') c 387 src/w16select.c else if (c == '\0') c 3312 src/w32.c #define DRIVE_INDEX( c ) ( (c) <= 'Z' ? (c) - 'A' : (c) - 'a' ) c 3523 src/w32.c char c; c 3544 src/w32.c while ((c = *name++)) c 3546 src/w32.c switch ( c ) c 3551 src/w32.c *str++ = (c == ':' ? ':' : '\\'); c 3592 src/w32.c str[-1] = c; /* replace last character of part */ c 3596 src/w32.c if ( left && 'A' <= c && c <= 'Z' ) c 3598 src/w32.c *str++ = tolower (c); /* map to lower case (looks nicer) */ c 565 src/w32console.c evalcost (int c) c 567 src/w32console.c return c; c 573 src/w32console.c cmputc (int c) c 575 src/w32console.c return c; c 3609 src/w32fns.c int c = wParam; c 3610 src/w32fns.c if (isalpha (c) && wmsg.dwModifiers == ctrl_modifier) c 3611 src/w32fns.c c = make_ctrl_char (c) & 0377; c 3612 src/w32fns.c if (c == quit_char c 8574 src/w32fns.c register Lisp_Object c; c 8586 src/w32fns.c c = AREF (key, 0); c 8588 src/w32fns.c if (CONSP (c) && lucid_event_type_list_p (c)) c 8589 src/w32fns.c c = Fevent_convert_list (c); c 8591 src/w32fns.c if (! FIXNUMP (c) && ! SYMBOLP (c)) c 8595 src/w32fns.c if (SYMBOLP (c)) c 8597 src/w32fns.c c = parse_modifiers (c); c 8598 src/w32fns.c lisp_modifiers = XFIXNUM (Fcar (Fcdr (c))); c 8599 src/w32fns.c c = Fcar (c); c 8600 src/w32fns.c if (!SYMBOLP (c)) c 8602 src/w32fns.c vkname = SSDATA (SYMBOL_NAME (c)); c 8609 src/w32fns.c else if (FIXNUMP (c)) c 8611 src/w32fns.c lisp_modifiers = XFIXNUM (c) & ~CHARACTERBITS; c 8613 src/w32fns.c vk_code = XFIXNUM (c) & CHARACTERBITS; c 372 src/w32font.c w32font_has_char (Lisp_Object entity, int c) c 395 src/w32font.c script = CHAR_TABLE_REF (Vchar_script_table, c); c 421 src/w32font.c w32font_encode_char (struct font *font, int c) c 425 src/w32font.c if (c < w32_font->metrics.tmFirstChar c 426 src/w32font.c || c > w32_font->metrics.tmLastChar) c 429 src/w32font.c return c; c 710 src/w32font.c WCHAR c = s->char2b[from + i] & 0xFFFF; c 711 src/w32font.c ExtTextOutW (s->hdc, x + i, y, options, NULL, &c, 1, NULL); c 76 src/w32font.h int w32font_has_char (Lisp_Object entity, int c); c 598 src/w32uniscribe.c uniscribe_encode_char (struct font *font, int c) c 611 src/w32uniscribe.c if (c < 0x10000) c 613 src/w32uniscribe.c ch[0] = (wchar_t) c; c 618 src/w32uniscribe.c DWORD surrogate = c - 0x10000; c 1338 src/w32uniscribe.c w32hb_encode_char (struct font *font, int c) c 1359 src/w32uniscribe.c if (hb_font_get_nominal_glyph (hb_font, c, &glyph)) c 1398 src/w32uniscribe.c w32hb_get_variation_glyphs (struct font *font, int c, unsigned variations[256]) c 1418 src/w32uniscribe.c if (hb_font_get_variation_glyph (hb_font, c, 0xFE00 + i, &variations[i])) c 1425 src/w32uniscribe.c if (hb_font_get_variation_glyph (hb_font, c, 0xE0100 + (i - 16), c 2550 src/window.c struct window *w, *p, *c; c 2566 src/window.c c = XWINDOW (child); c 2574 src/window.c wset_prev (c, w->prev); c 2578 src/window.c while (c) c 2580 src/window.c wset_parent (c, parent); c 2584 src/window.c (c, make_float ((double) c->pixel_width c 2588 src/window.c (c, make_float ((double) c->pixel_height c 2591 src/window.c if (NILP (c->next)) c 2595 src/window.c wset_next (c, w->next); c 2596 src/window.c wset_prev (XWINDOW (c->next), child); c 2599 src/window.c c = 0; c 2603 src/window.c child = c->next; c 2604 src/window.c c = XWINDOW (child); c 4493 src/window.c struct window *c; c 4498 src/window.c c = XWINDOW (w->contents); c 4502 src/window.c while (c) c 4504 src/window.c if (XFIXNUM (c->new_pixel) != XFIXNUM (w->new_pixel) c 4505 src/window.c || !window_resize_check (c, horflag)) c 4508 src/window.c c = NILP (c->next) ? 0 : XWINDOW (c->next); c 4519 src/window.c while (c) c 4521 src/window.c if (!window_resize_check (c, horflag)) c 4524 src/window.c remaining_pixels -= XFIXNUM (c->new_pixel); c 4527 src/window.c c = NILP (c->next) ? 0 : XWINDOW (c->next); c 4536 src/window.c c = XWINDOW (w->contents); c 4543 src/window.c while (c) c 4545 src/window.c if (!window_resize_check (c, horflag)) c 4548 src/window.c remaining_pixels -= XFIXNUM (c->new_pixel); c 4551 src/window.c c = NILP (c->next) ? 0 : XWINDOW (c->next); c 4559 src/window.c while (c) c 4561 src/window.c if (XFIXNUM (c->new_pixel) != XFIXNUM (w->new_pixel) c 4562 src/window.c || !window_resize_check (c, horflag)) c 4565 src/window.c c = NILP (c->next) ? 0 : XWINDOW (c->next); c 4591 src/window.c struct window *c; c 4621 src/window.c c = XWINDOW (w->contents); c 4622 src/window.c while (c) c 4626 src/window.c c->pixel_left = edge; c 4627 src/window.c c->left_col = edge / unit; c 4631 src/window.c c->pixel_top = edge; c 4632 src/window.c c->top_line = edge / unit; c 4634 src/window.c window_resize_apply (c, horflag); c 4636 src/window.c edge = edge + c->pixel_height; c 4638 src/window.c c = NILP (c->next) ? 0 : XWINDOW (c->next); c 4644 src/window.c c = XWINDOW (w->contents); c 4645 src/window.c while (c) c 4649 src/window.c c->pixel_left = edge; c 4650 src/window.c c->left_col = edge / unit; c 4654 src/window.c c->pixel_top = edge; c 4655 src/window.c c->top_line = edge / unit; c 4658 src/window.c window_resize_apply (c, horflag); c 4660 src/window.c edge = edge + c->pixel_width; c 4662 src/window.c c = NILP (c->next) ? 0 : XWINDOW (c->next); c 4681 src/window.c struct window *c; c 4700 src/window.c c = XWINDOW (w->contents); c 4701 src/window.c while (c) c 4704 src/window.c c->left_col = edge; c 4706 src/window.c c->top_line = edge; c 4708 src/window.c window_resize_apply_total (c, horflag); c 4710 src/window.c edge = edge + c->total_lines; c 4712 src/window.c c = NILP (c->next) ? 0 : XWINDOW (c->next); c 4718 src/window.c c = XWINDOW (w->contents); c 4719 src/window.c while (c) c 4722 src/window.c c->left_col = edge; c 4724 src/window.c c->top_line = edge; c 4726 src/window.c window_resize_apply_total (c, horflag); c 4728 src/window.c edge = edge + c->total_cols; c 4730 src/window.c c = NILP (c->next) ? 0 : XWINDOW (c->next); c 4946 src/window.c struct window *o, *p, *n, *r, *c; c 5095 src/window.c c = XWINDOW (p->contents); c 5096 src/window.c while (c) c 5098 src/window.c if (c != n) c 5099 src/window.c sum = sum + XFIXNUM (c->new_total); c 5100 src/window.c c = NILP (c->next) ? 0 : XWINDOW (c->next); c 535 src/xdisp.c ((it->what == IT_CHARACTER && (it->c == ' ' || it->c == '\t')) \ c 557 src/xdisp.c ch = it->c; c 1523 src/xdisp.c it->c = ' '; c 1947 src/xdisp.c && (it3.c == '\n' c 2150 src/xdisp.c int c = string_char_and_length (str, len); c 2151 src/xdisp.c if (!CHAR_VALID_P (c)) c 2155 src/xdisp.c c = '?'; c 2157 src/xdisp.c return c; c 3798 src/xdisp.c && it->c != '\n') c 4932 src/xdisp.c int len, c = check_char_and_length (p, &len); c 4933 src/xdisp.c face_id = FACE_FOR_CHAR (it->f, face, c, charpos, it->string); c 5026 src/xdisp.c int c = FETCH_MULTIBYTE_CHAR (BYTEPOS (pos)); c 5028 src/xdisp.c face_id = FACE_FOR_CHAR (it->f, face, c, CHARPOS (pos), Qnil); c 6477 src/xdisp.c it->c = STRING_CHAR (s); c 6479 src/xdisp.c it->c = *s; c 6486 src/xdisp.c it->c = FETCH_CHAR (pos_byte); c 7293 src/xdisp.c && it->c == '\n' c 7299 src/xdisp.c it->c = 0; c 7319 src/xdisp.c newline_found_p = it->what == IT_CHARACTER && it->c == '\n'; c 7938 src/xdisp.c lookup_glyphless_char_display (int c, struct it *it) c 7945 src/xdisp.c if (c >= 0) c 7946 src/xdisp.c glyphless_method = CHAR_TABLE_REF (Vglyphless_char_display, c); c 7959 src/xdisp.c if (c >= 0) c 7967 src/xdisp.c if (c >= 0) c 8077 src/xdisp.c it->c = bidi_mirror_char (it->c); c 8093 src/xdisp.c int c = it->c; /* This is the character to display. */ c 8095 src/xdisp.c if (! it->multibyte_p && ! ASCII_CHAR_P (c)) c 8097 src/xdisp.c eassert (SINGLE_BYTE_CHAR_P (c)); c 8100 src/xdisp.c c = DECODE_CHAR (unibyte, c); c 8101 src/xdisp.c if (c < 0) c 8102 src/xdisp.c c = BYTE8_TO_CHAR (it->c); c 8105 src/xdisp.c c = BYTE8_TO_CHAR (it->c); c 8109 src/xdisp.c && (dv = DISP_CHAR_VECTOR (it->dp, c), c 8135 src/xdisp.c if (! NILP (lookup_glyphless_char_display (c, it))) c 8146 src/xdisp.c if (! ASCII_CHAR_P (c) && ! NILP (Vnobreak_char_display)) c 8148 src/xdisp.c if (blankp (c)) c 8150 src/xdisp.c else if (c == SOFT_HYPHEN || c == HYPHEN c 8151 src/xdisp.c || c == NON_BREAKING_HYPHEN) c 8166 src/xdisp.c if (((c < ' ' || c == 127) /* ASCII control chars. */ c 8169 src/xdisp.c || (c != '\t' c 8172 src/xdisp.c || (c != '\n' && c != '\t')) c 8175 src/xdisp.c || CHAR_BYTE8_P (c) c 8176 src/xdisp.c || ! CHAR_PRINTABLE_P (c)))) c 8192 src/xdisp.c if (ASCII_CHAR_P (c) && it->ctl_arrow_p) c 8210 src/xdisp.c XSETINT (it->ctl_chars[1], c ^ 0100); c 8224 src/xdisp.c nobreak_char_ascii_display ? ' ' : it->c); c 8238 src/xdisp.c nobreak_char_ascii_display ? '-' : it->c); c 8273 src/xdisp.c if (CHAR_BYTE8_P (c)) c 8275 src/xdisp.c c = CHAR_TO_BYTE8 (c); c 8279 src/xdisp.c len = sprintf (str, format_string, c + 0u); c 8299 src/xdisp.c it->char_to_display = c; c 8303 src/xdisp.c it->char_to_display = it->c; c 8337 src/xdisp.c int c; c 8340 src/xdisp.c c = it->char_to_display; c 8346 src/xdisp.c c = ' '; c 8350 src/xdisp.c if ((c = COMPOSITION_GLYPH (cmp, i)) != '\t') c 8353 src/xdisp.c it->face_id = FACE_FOR_CHAR (it->f, face, c, pos, it->string); c 8886 src/xdisp.c it->c = GLYPH_CODE_CHAR (gc); c 8887 src/xdisp.c it->len = CHAR_BYTES (it->c); c 8939 src/xdisp.c it->c = ' ', it->len = 1; c 9164 src/xdisp.c it->c = check_char_and_length (s, &it->len); c 9168 src/xdisp.c it->c = SREF (it->string, IT_STRING_BYTEPOS (*it)); c 9186 src/xdisp.c it->c = ' ', it->len = 1; c 9202 src/xdisp.c it->c = check_char_and_length (s, &it->len); c 9206 src/xdisp.c it->c = SREF (it->string, IT_STRING_BYTEPOS (*it)); c 9256 src/xdisp.c it->c = ' ', it->len = 1; c 9260 src/xdisp.c it->c = check_char_and_length (it->s + IT_BYTEPOS (*it), &it->len); c 9262 src/xdisp.c it->c = it->s[IT_BYTEPOS (*it)], it->len = 1; c 9564 src/xdisp.c it->c = string_char_and_length (p, &it->len); c 9566 src/xdisp.c it->c = *p, it->len = 1; c 9577 src/xdisp.c if (it->c == '\n') c 9591 src/xdisp.c else if (it->c == '\r' && it->selective == -1) c 9620 src/xdisp.c if (it->c < 0) c 9628 src/xdisp.c it->c = composition_update_it (&it->cmp_it, IT_STRING_CHARPOS (*it), c 9633 src/xdisp.c if (it->c < 0) c 9651 src/xdisp.c it->c = composition_update_it (&it->cmp_it, IT_CHARPOS (*it), c 10681 src/xdisp.c if (it->c == '\t') c 10762 src/xdisp.c && it->c != '\n' c 10763 src/xdisp.c && it->c != '\t' c 11261 src/xdisp.c int c, max_x = 0, max_y = 0, x = 0, y = 0, vertical_offset = 0, doff = 0; c 11274 src/xdisp.c c = FETCH_BYTE (bpos); c 11275 src/xdisp.c if (!(c == ' ' || c == '\t' || c == '\n' || c == '\r')) c 11282 src/xdisp.c c = FETCH_BYTE (bpos); c 11283 src/xdisp.c if (!(c == ' ' || c == '\t')) c 11311 src/xdisp.c c = FETCH_BYTE (bpos); c 11312 src/xdisp.c if (!(c == ' ' || c == '\t' || c == '\n' || c == '\r')) c 11320 src/xdisp.c c = fetch_char_advance (&end, &bpos); c 11321 src/xdisp.c if (!(c == ' ' || c == '\t')) c 11873 src/xdisp.c int char_bytes, c = check_char_and_length (msg + i, &char_bytes); c 11874 src/xdisp.c char work = CHAR_TO_BYTE8 (c); c 11886 src/xdisp.c int c = make_char_multibyte (msg[i]); c 11888 src/xdisp.c int char_bytes = CHAR_STRING (c, str); c 13482 src/xdisp.c store_mode_line_noprop_char (char c) c 13496 src/xdisp.c *mode_line_noprop_ptr++ = c; c 17517 src/xdisp.c disp_char_vector (struct Lisp_Char_Table *dp, int c) c 17521 src/xdisp.c if (ASCII_CHAR_P (c)) c 17525 src/xdisp.c val = XSUB_CHAR_TABLE (val)->contents[c]; c 17532 src/xdisp.c val = char_table_ref (table, c); c 22858 src/xdisp.c it.c = it.char_to_display = check_char_and_length (p, &it.len); c 22861 src/xdisp.c it.c = it.char_to_display = *p, it.len = 1; c 22862 src/xdisp.c if (! ASCII_CHAR_P (it.c)) c 22863 src/xdisp.c it.char_to_display = BYTE8_TO_CHAR (it.c); c 23188 src/xdisp.c int saved_c = it->c, saved_len = it->len; c 23240 src/xdisp.c it->c = it->char_to_display c 23249 src/xdisp.c it->c = it->char_to_display = ' '; c 23362 src/xdisp.c it->c = saved_c; c 23450 src/xdisp.c if (!ASCII_CHAR_P (it->c)) c 23656 src/xdisp.c it->c = it->char_to_display = ' '; c 23720 src/xdisp.c it->c = it->char_to_display c 23726 src/xdisp.c it->c = it->char_to_display = ' '; c 23774 src/xdisp.c int c = 0; c 23777 src/xdisp.c && (c = FETCH_BYTE (bytepos), c 23778 src/xdisp.c c == ' ' || c == '\t')) c 23781 src/xdisp.c if (bytepos >= ZV_BYTE || c == '\n' || c == '\r') c 24564 src/xdisp.c tem_it.c = tem_it.char_to_display = ' '; c 24566 src/xdisp.c tem_it.c = tem_it.char_to_display = *p; c 25227 src/xdisp.c && it->c == '\t' && FRAME_WINDOW_P (it->f)) c 25707 src/xdisp.c int c; c 25722 src/xdisp.c while ((c = FETCH_BYTE (bytepos)) == '\n' c 25723 src/xdisp.c || c == ' ' || c == '\t' || c == '\f') c 26929 src/xdisp.c int c = fetch_string_char_advance (mode_string, &i, &i_byte); c 26930 src/xdisp.c if (c == ' ' && prev == ' ') c 26938 src/xdisp.c while (c == ' ' && i < SCHARS (mode_string)) c 26939 src/xdisp.c c = fetch_string_char_advance (mode_string, &i, &i_byte); c 26942 src/xdisp.c prev = c; c 27080 src/xdisp.c unsigned char c; c 27190 src/xdisp.c while ((c = SREF (elt, offset++)) != '\0' && c != '%') c 27247 src/xdisp.c while ((c = SREF (elt, offset++)) >= '0' && c <= '9') c 27248 src/xdisp.c field = field * 10 + c - '0'; c 27257 src/xdisp.c if (c == 'M') c 27261 src/xdisp.c else if (c != 0) c 27272 src/xdisp.c spec = decode_mode_spec (it->w, c, field, &string); c 27935 src/xdisp.c int c = XFIXNAT (eoltype); c 27936 src/xdisp.c return buf + CHAR_STRING (c, (unsigned char *) buf); c 27971 src/xdisp.c decode_mode_spec (struct window *w, register int c, int field_width, c 27988 src/xdisp.c switch (c) c 28078 src/xdisp.c int disp_col = (c == 'C') ? col + 1 : col; c 28381 src/xdisp.c bool eol_flag = (c == 'Z'); c 29328 src/xdisp.c get_char_face_and_encoding (struct frame *f, int c, int face_id, c 29336 src/xdisp.c code = face->font->driver->encode_char (face->font, c); c 29395 src/xdisp.c get_char_glyph_code (int c, struct font *font, unsigned *char2b) c 29399 src/xdisp.c if (CHAR_BYTE8_P (c)) c 29400 src/xdisp.c code = CHAR_TO_BYTE8 (c); c 29402 src/xdisp.c code = font->driver->encode_char (font, c); c 29440 src/xdisp.c int c = COMPOSITION_GLYPH (s->cmp, i); c 29444 src/xdisp.c if (c != '\t') c 29446 src/xdisp.c int face_id = FACE_FOR_CHAR (s->f, base_face->ascii_face, c, c 29449 src/xdisp.c face = get_char_face_and_encoding (s->f, c, face_id, c 29478 src/xdisp.c int c = COMPOSITION_GLYPH (s->cmp, 0); c 29484 src/xdisp.c s->face = FACE_FROM_ID (s->f, FACE_FOR_CHAR (s->f, s->face, c, -1, Qnil)); c 29835 src/xdisp.c normal_char_ascent_descent (struct font *font, int c, int *ascent, int *descent) c 29846 src/xdisp.c if (get_char_glyph_code (c >= 0 ? c : '{', font, &char2b)) c 29869 src/xdisp.c normal_char_height (struct font *font, int c) c 29873 src/xdisp.c normal_char_ascent_descent (font, c, &ascent, &descent); c 31361 src/xdisp.c it2.c = it2.char_to_display = string_char_and_length (p, &it2.len); c 31363 src/xdisp.c if (FRAME_WINDOW_P (it->f) && ! ASCII_CHAR_P (it2.c)) c 31364 src/xdisp.c it2.face_id = FACE_FOR_CHAR (it->f, face, it2.c, c 31371 src/xdisp.c it2.c = it2.char_to_display = *p, it2.len = 1; c 31372 src/xdisp.c if (! ASCII_CHAR_P (it2.c)) c 31373 src/xdisp.c it2.char_to_display = BYTE8_TO_CHAR (it2.c); c 31600 src/xdisp.c temp_it.c = temp_it.char_to_display = GLYPH_CHAR (glyph); c 31602 src/xdisp.c temp_it.len = CHAR_BYTES (temp_it.c); c 31736 src/xdisp.c glyph->u.glyphless.ch = it->c; c 31816 src/xdisp.c width = CHARACTER_WIDTH (it->c); c 31841 src/xdisp.c acronym = CHAR_TABLE_REF (Vglyphless_char_display, it->c); c 31849 src/xdisp.c sprintf (buf, "%0*X", it->c < 0x10000 ? 4 : 6, it->c + 0u); c 32340 src/xdisp.c int c; c 32347 src/xdisp.c c = COMPOSITION_GLYPH (cmp, glyph_len - 1); c 32348 src/xdisp.c while (c == '\t' && 0 < --glyph_len); c 32353 src/xdisp.c c = COMPOSITION_GLYPH (cmp, i); c 32354 src/xdisp.c if (c != '\t') c 32382 src/xdisp.c get_char_face_and_encoding (it->f, c, it->face_id, c 4188 src/xfaces.c struct face_cache *c = FRAME_FACE_CACHE (f); c 4191 src/xfaces.c c ? FACE_FROM_ID_OR_NULL (f, DEFAULT_FACE_ID) : NULL; c 4203 src/xfaces.c newface = realize_face (c, lvec, DEFAULT_FACE_ID); c 4656 src/xfaces.c struct face_cache *c = xmalloc (sizeof *c); c 4658 src/xfaces.c c->buckets = xzalloc (FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets); c 4659 src/xfaces.c c->size = 50; c 4660 src/xfaces.c c->used = 0; c 4661 src/xfaces.c c->faces_by_id = xmalloc (c->size * sizeof *c->faces_by_id); c 4662 src/xfaces.c c->f = f; c 4663 src/xfaces.c c->menu_face_changed_p = menu_face_changed_default; c 4664 src/xfaces.c return c; c 4674 src/xfaces.c clear_face_gcs (struct face_cache *c) c 4676 src/xfaces.c if (c && FRAME_WINDOW_P (c->f)) c 4679 src/xfaces.c for (i = BASIC_FACE_ID_SENTINEL; i < c->used; ++i) c 4681 src/xfaces.c struct face *face = c->faces_by_id[i]; c 4686 src/xfaces.c font_done_for_face (c->f, face); c 4687 src/xfaces.c x_free_gc (c->f, face->gc); c 4703 src/xfaces.c free_realized_faces (struct face_cache *c) c 4705 src/xfaces.c if (c && c->used) c 4708 src/xfaces.c struct frame *f = c->f; c 4715 src/xfaces.c for (i = 0; i < c->used; ++i) c 4717 src/xfaces.c free_realized_face (f, c->faces_by_id[i]); c 4718 src/xfaces.c c->faces_by_id[i] = NULL; c 4723 src/xfaces.c c->used = 0; c 4724 src/xfaces.c size = FACE_CACHE_BUCKETS_SIZE * sizeof *c->buckets; c 4725 src/xfaces.c memset (c->buckets, 0, size); c 4764 src/xfaces.c free_face_cache (struct face_cache *c) c 4766 src/xfaces.c if (c) c 4768 src/xfaces.c free_realized_faces (c); c 4769 src/xfaces.c xfree (c->buckets); c 4770 src/xfaces.c xfree (c->faces_by_id); c 4771 src/xfaces.c xfree (c); c 4784 src/xfaces.c cache_face (struct face_cache *c, struct face *face, uintptr_t hash) c 4792 src/xfaces.c struct face *last = c->buckets[i]; c 4803 src/xfaces.c c->buckets[i] = face; c 4810 src/xfaces.c face->next = c->buckets[i]; c 4813 src/xfaces.c c->buckets[i] = face; c 4818 src/xfaces.c for (i = 0; i < c->used; ++i) c 4819 src/xfaces.c if (c->faces_by_id[i] == NULL) c 4830 src/xfaces.c for (face1 = c->buckets[j]; face1; face1 = face1->next) c 4839 src/xfaces.c if (i == c->used) c 4841 src/xfaces.c if (c->used == c->size) c 4842 src/xfaces.c c->faces_by_id = xpalloc (c->faces_by_id, &c->size, 1, MAX_FACE_ID, c 4843 src/xfaces.c sizeof *c->faces_by_id); c 4844 src/xfaces.c c->used++; c 4847 src/xfaces.c c->faces_by_id[i] = face; c 4854 src/xfaces.c uncache_face (struct face_cache *c, struct face *face) c 4861 src/xfaces.c c->buckets[i] = face->next; c 4866 src/xfaces.c c->faces_by_id[face->id] = NULL; c 4867 src/xfaces.c if (face->id == c->used) c 4868 src/xfaces.c --c->used; c 5784 src/xfaces.c struct face_cache *c = FRAME_FACE_CACHE (f); c 5879 src/xfaces.c struct face *face = realize_face (c, attrs, DEFAULT_FACE_ID); c 5909 src/xfaces.c struct face_cache *c = FRAME_FACE_CACHE (f); c 5940 src/xfaces.c realize_face (c, attrs, id); c 143 src/xfont.c int c; c 147 src/xfont.c c = *(unsigned char *) p0++; c 148 src/xfont.c p1 += CHAR_STRING (c, (unsigned char *) p1); c 169 src/xfont.c int c = string_char_advance (&p0); c 171 src/xfont.c if (c >= 0x100) c 173 src/xfont.c *p1++ = c; c 195 src/xfont.c int c = XFIXNUM (XCAR (chars)); c 196 src/xfont.c unsigned code = ENCODE_CHAR (charset, c); c 215 src/xfont.c int c = XFIXNUM (AREF (chars, i)); c 216 src/xfont.c unsigned code = ENCODE_CHAR (charset, c); c 899 src/xfont.c xfont_has_char (Lisp_Object font, int c) c 920 src/xfont.c if (ASCII_CHAR_P (c) && encoding->ascii_compatible_p) c 924 src/xfont.c return (ENCODE_CHAR (repertory, c) != CHARSET_INVALID_CODE (repertory)); c 928 src/xfont.c xfont_encode_char (struct font *font, int c) c 935 src/xfont.c code = ENCODE_CHAR (charset, c); c 941 src/xfont.c return (ENCODE_CHAR (charset, c) != CHARSET_INVALID_CODE (charset) c 431 src/xftfont.c xftfont_has_char (Lisp_Object font, int c) c 443 src/xftfont.c return (ENCODE_CHAR (cs, c) != CHARSET_INVALID_CODE (cs)); c 446 src/xftfont.c return ftfont_has_char (font, c); c 449 src/xftfont.c (FcChar32) c) == FcTrue); c 453 src/xftfont.c xftfont_encode_char (struct font *font, int c) c 457 src/xftfont.c (FcChar32) c); c 5375 src/xterm.c int actual_valuator_count, c; c 5467 src/xterm.c for (c = 0; c < device->num_classes; ++c) c 5469 src/xterm.c switch (device->classes[c]->type) c 5473 src/xterm.c info = (XIScrollClassInfo *) device->classes[c]; c 5481 src/xterm.c valuator_info = (XIValuatorClassInfo *) device->classes[c]; c 5506 src/xterm.c touch_info = (XITouchClassInfo *) device->classes[c]; c 5523 src/xterm.c for (c = 0; c < xi_device->scroll_valuator_count; ++c) c 5525 src/xterm.c if (xi_device->valuators[c].number == tem->number) c 5527 src/xterm.c xi_device->valuators[c].invalid_p = false; c 5528 src/xterm.c xi_device->valuators[c].current_value c 5530 src/xterm.c xi_device->valuators[c].emacs_value = 0.0; c 11608 src/xterm.c Cursor c; c 11610 src/xterm.c c = None; c 11622 src/xterm.c c = pixc; c 11628 src/xterm.c return c; c 19728 src/xterm.c Lisp_Object c; c 19934 src/xterm.c && (c = Fgethash (make_fixnum (keysym), c 19937 src/xterm.c FIXNATP (c))) c 19939 src/xterm.c inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFIXNAT (c)) c 19942 src/xterm.c inev.ie.code = XFIXNAT (c); c 23319 src/xterm.c Lisp_Object c; c 23654 src/xterm.c && (c = Fgethash (make_fixnum (keysym), c 23657 src/xterm.c FIXNATP (c))) c 23659 src/xterm.c inev.ie.kind = (SINGLE_BYTE_CHAR_P (XFIXNAT (c)) c 23662 src/xterm.c inev.ie.code = XFIXNAT (c); c 175 test/lisp/cedet/semantic-utest-ia-resources/testusing.cpp alias_for_somestuff::OneClass c; c 176 test/lisp/cedet/semantic-utest-ia-resources/testusing.cpp c.//-11- c 9 test/lisp/progmodes/flymake-resources/errors-and-warnings.c char c = 1000; /* a note and a warning */ c 11 test/lisp/progmodes/flymake-resources/errors-and-warnings.c char c; if (bla == (void*)3); /* an error, and two warnings */ c 12 test/lisp/progmodes/flymake-resources/errors-and-warnings.c return c; c 3 test/lisp/progmodes/flymake-resources/test.c char c = 1000; c 4 test/lisp/progmodes/flymake-resources/test.c return c; c 275 test/manual/etags/c-src/abbrev.c register int c = FETCH_BYTE (idx); c 276 test/manual/etags/c-src/abbrev.c if (UPPERCASEP (c)) c 277 test/manual/etags/c-src/abbrev.c c = DOWNCASE (c), uccount++; c 278 test/manual/etags/c-src/abbrev.c else if (! NOCASEP (c)) c 280 test/manual/etags/c-src/abbrev.c *p++ = c; c 70 test/manual/etags/c-src/c.c char a, b, c, d; c 125 test/manual/etags/c-src/c.c b c; c 128 test/manual/etags/c-src/c.c (a,b,c,d) {}; c 137 test/manual/etags/c-src/c.c c,d) {}; c 153 test/manual/etags/c-src/c.c caccacacca (a,b,c,d,e,f,g) c 443 test/manual/etags/c-src/emacs/src/keyboard.c echo_add_key (Lisp_Object c) c 455 test/manual/etags/c-src/emacs/src/keyboard.c c = EVENT_HEAD (c); c 457 test/manual/etags/c-src/emacs/src/keyboard.c if (INTEGERP (c)) c 458 test/manual/etags/c-src/emacs/src/keyboard.c ptr = push_key_description (XINT (c), ptr); c 459 test/manual/etags/c-src/emacs/src/keyboard.c else if (SYMBOLP (c)) c 461 test/manual/etags/c-src/emacs/src/keyboard.c Lisp_Object name = SYMBOL_NAME (c); c 477 test/manual/etags/c-src/emacs/src/keyboard.c && help_char_p (c)) c 527 test/manual/etags/c-src/emacs/src/keyboard.c echo_char (Lisp_Object c) c 531 test/manual/etags/c-src/emacs/src/keyboard.c echo_add_key (c); c 595 test/manual/etags/c-src/emacs/src/keyboard.c Lisp_Object c; c 603 test/manual/etags/c-src/emacs/src/keyboard.c c = AREF (this_command_keys, i); c 604 test/manual/etags/c-src/emacs/src/keyboard.c if (! (EVENT_HAS_PARAMETERS (c) c 605 test/manual/etags/c-src/emacs/src/keyboard.c && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement))) c 606 test/manual/etags/c-src/emacs/src/keyboard.c echo_char (c); c 2048 test/manual/etags/c-src/emacs/src/keyboard.c make_ctrl_char (int c) c 2051 test/manual/etags/c-src/emacs/src/keyboard.c int upper = c & ~0177; c 2053 test/manual/etags/c-src/emacs/src/keyboard.c if (! ASCII_CHAR_P (c)) c 2054 test/manual/etags/c-src/emacs/src/keyboard.c return c |= ctrl_modifier; c 2056 test/manual/etags/c-src/emacs/src/keyboard.c c &= 0177; c 2060 test/manual/etags/c-src/emacs/src/keyboard.c if (c >= 0100 && c < 0140) c 2062 test/manual/etags/c-src/emacs/src/keyboard.c int oc = c; c 2063 test/manual/etags/c-src/emacs/src/keyboard.c c &= ~0140; c 2067 test/manual/etags/c-src/emacs/src/keyboard.c c |= shift_modifier; c 2071 test/manual/etags/c-src/emacs/src/keyboard.c else if (c >= 'a' && c <= 'z') c 2072 test/manual/etags/c-src/emacs/src/keyboard.c c &= ~0140; c 2076 test/manual/etags/c-src/emacs/src/keyboard.c else if (c >= ' ') c 2077 test/manual/etags/c-src/emacs/src/keyboard.c c |= ctrl_modifier; c 2080 test/manual/etags/c-src/emacs/src/keyboard.c c |= (upper & ~ctrl_modifier); c 2082 test/manual/etags/c-src/emacs/src/keyboard.c return c; c 2154 test/manual/etags/c-src/emacs/src/keyboard.c static void record_char (Lisp_Object c); c 2179 test/manual/etags/c-src/emacs/src/keyboard.c Lisp_Object c = Qnil; c 2189 test/manual/etags/c-src/emacs/src/keyboard.c return c; c 2196 test/manual/etags/c-src/emacs/src/keyboard.c c = kbd_buffer_get_event (&kb, used_mouse_menu, end_time); c 2199 test/manual/etags/c-src/emacs/src/keyboard.c if (! NILP (c) && (kb != current_kboard)) c 2210 test/manual/etags/c-src/emacs/src/keyboard.c kset_kbd_queue (kb, list1 (c)); c 2212 test/manual/etags/c-src/emacs/src/keyboard.c XSETCDR (last, list1 (c)); c 2214 test/manual/etags/c-src/emacs/src/keyboard.c c = Qnil; c 2224 test/manual/etags/c-src/emacs/src/keyboard.c if (noninteractive && INTEGERP (c) && XINT (c) < 0) c 2227 test/manual/etags/c-src/emacs/src/keyboard.c if (INTEGERP (c)) c 2233 test/manual/etags/c-src/emacs/src/keyboard.c XSETINT (c, make_ctrl_char (XINT (c))); c 2238 test/manual/etags/c-src/emacs/src/keyboard.c XSETINT (c, XINT (c) | (extra_keyboard_modifiers & ~0xff7f & ~CHAR_CTL)); c 2241 test/manual/etags/c-src/emacs/src/keyboard.c return c; c 2380 test/manual/etags/c-src/emacs/src/keyboard.c Lisp_Object c; c 2398 test/manual/etags/c-src/emacs/src/keyboard.c c = Qnil; c 2401 test/manual/etags/c-src/emacs/src/keyboard.c GCPRO2 (c, previous_echo_area_message); c 2407 test/manual/etags/c-src/emacs/src/keyboard.c c = XCAR (Vunread_post_input_method_events); c 2413 test/manual/etags/c-src/emacs/src/keyboard.c if (CONSP (c) c 2414 test/manual/etags/c-src/emacs/src/keyboard.c && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))) c 2415 test/manual/etags/c-src/emacs/src/keyboard.c && NILP (XCDR (c))) c 2416 test/manual/etags/c-src/emacs/src/keyboard.c c = XCAR (c); c 2429 test/manual/etags/c-src/emacs/src/keyboard.c c = XCAR (Vunread_command_events); c 2435 test/manual/etags/c-src/emacs/src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qt)) c 2436 test/manual/etags/c-src/emacs/src/keyboard.c c = XCDR (c); c 2442 test/manual/etags/c-src/emacs/src/keyboard.c if (CONSP (c) c 2443 test/manual/etags/c-src/emacs/src/keyboard.c && EQ (XCDR (c), Qdisabled) c 2444 test/manual/etags/c-src/emacs/src/keyboard.c && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c)))) c 2447 test/manual/etags/c-src/emacs/src/keyboard.c c = XCAR (c); c 2455 test/manual/etags/c-src/emacs/src/keyboard.c && (EQ (c, Qtool_bar) || EQ (c, Qmenu_bar) || was_disabled)) c 2463 test/manual/etags/c-src/emacs/src/keyboard.c c = XCAR (Vunread_input_method_events); c 2468 test/manual/etags/c-src/emacs/src/keyboard.c if (CONSP (c) c 2469 test/manual/etags/c-src/emacs/src/keyboard.c && (SYMBOLP (XCAR (c)) || INTEGERP (XCAR (c))) c 2470 test/manual/etags/c-src/emacs/src/keyboard.c && NILP (XCDR (c))) c 2471 test/manual/etags/c-src/emacs/src/keyboard.c c = XCAR (c); c 2498 test/manual/etags/c-src/emacs/src/keyboard.c XSETINT (c, -1); c 2502 test/manual/etags/c-src/emacs/src/keyboard.c c = Faref (Vexecuting_kbd_macro, make_number (executing_kbd_macro_index)); c 2504 test/manual/etags/c-src/emacs/src/keyboard.c && (XFASTINT (c) & 0x80) && (XFASTINT (c) <= 0xff)) c 2505 test/manual/etags/c-src/emacs/src/keyboard.c XSETFASTINT (c, CHAR_META | (XFASTINT (c) & ~0x80)); c 2514 test/manual/etags/c-src/emacs/src/keyboard.c c = unread_switch_frame; c 2600 test/manual/etags/c-src/emacs/src/keyboard.c c = Qnil; c 2607 test/manual/etags/c-src/emacs/src/keyboard.c c = read_char_minibuf_menu_prompt (commandflag, map); c 2609 test/manual/etags/c-src/emacs/src/keyboard.c if (INTEGERP (c) && XINT (c) == -2) c 2610 test/manual/etags/c-src/emacs/src/keyboard.c return c; /* wrong_kboard_jmpbuf */ c 2612 test/manual/etags/c-src/emacs/src/keyboard.c if (! NILP (c)) c 2631 test/manual/etags/c-src/emacs/src/keyboard.c XSETINT (c, quit_char); c 2655 test/manual/etags/c-src/emacs/src/keyboard.c kset_kbd_queue (kb, list1 (c)); c 2657 test/manual/etags/c-src/emacs/src/keyboard.c XSETCDR (last, list1 (c)); c 2739 test/manual/etags/c-src/emacs/src/keyboard.c c = read_char_x_menu_prompt (map, prev_event, used_mouse_menu); c 2750 test/manual/etags/c-src/emacs/src/keyboard.c if (INTERACTIVE && NILP (c)) c 2803 test/manual/etags/c-src/emacs/src/keyboard.c if (NILP (c) && current_kboard != orig_kboard) c 2813 test/manual/etags/c-src/emacs/src/keyboard.c c = XCAR (Vunread_command_events); c 2816 test/manual/etags/c-src/emacs/src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qt)) c 2817 test/manual/etags/c-src/emacs/src/keyboard.c c = XCDR (c); c 2824 test/manual/etags/c-src/emacs/src/keyboard.c if (NILP (c)) c 2830 test/manual/etags/c-src/emacs/src/keyboard.c c = XCAR (KVAR (current_kboard, kbd_queue)); c 2836 test/manual/etags/c-src/emacs/src/keyboard.c if (EVENT_HAS_PARAMETERS (c) c 2837 test/manual/etags/c-src/emacs/src/keyboard.c && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qswitch_frame)) c 2838 test/manual/etags/c-src/emacs/src/keyboard.c internal_last_event_frame = XCAR (XCDR (c)); c 2851 test/manual/etags/c-src/emacs/src/keyboard.c if (NILP (c) && !single_kboard) c 2869 test/manual/etags/c-src/emacs/src/keyboard.c if (NILP (c)) c 2871 test/manual/etags/c-src/emacs/src/keyboard.c c = read_decoded_event_from_main_queue (end_time, local_getcjmp, c 2873 test/manual/etags/c-src/emacs/src/keyboard.c if (NILP (c) && end_time c 2879 test/manual/etags/c-src/emacs/src/keyboard.c if (EQ (c, make_number (-2))) c 2884 test/manual/etags/c-src/emacs/src/keyboard.c return c; c 2894 test/manual/etags/c-src/emacs/src/keyboard.c if (NILP (c)) c 2906 test/manual/etags/c-src/emacs/src/keyboard.c if (BUFFERP (c)) c 2913 test/manual/etags/c-src/emacs/src/keyboard.c tem = access_keymap (get_keymap (Vspecial_event_map, 0, 1), c, 0, 0, 1); c 2919 test/manual/etags/c-src/emacs/src/keyboard.c last_input_event = c; c 2922 test/manual/etags/c-src/emacs/src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qselect_window) && !end_time) c 2934 test/manual/etags/c-src/emacs/src/keyboard.c c = make_number (-2); c 2942 test/manual/etags/c-src/emacs/src/keyboard.c if (INTEGERP (c)) c 2945 test/manual/etags/c-src/emacs/src/keyboard.c if (XINT (c) == -1) c 2949 test/manual/etags/c-src/emacs/src/keyboard.c && UNSIGNED_CMP (XFASTINT (c), <, c 2953 test/manual/etags/c-src/emacs/src/keyboard.c && UNSIGNED_CMP (XFASTINT (c), <, c 2957 test/manual/etags/c-src/emacs/src/keyboard.c && CHARACTERP (c))) c 2960 test/manual/etags/c-src/emacs/src/keyboard.c d = Faref (KVAR (current_kboard, Vkeyboard_translate_table), c); c 2963 test/manual/etags/c-src/emacs/src/keyboard.c c = d; c 2970 test/manual/etags/c-src/emacs/src/keyboard.c if (EVENT_HAS_PARAMETERS (c) c 2971 test/manual/etags/c-src/emacs/src/keyboard.c && CONSP (XCDR (c)) c 2972 test/manual/etags/c-src/emacs/src/keyboard.c && CONSP (EVENT_START (c)) c 2973 test/manual/etags/c-src/emacs/src/keyboard.c && CONSP (XCDR (EVENT_START (c)))) c 2977 test/manual/etags/c-src/emacs/src/keyboard.c posn = POSN_POSN (EVENT_START (c)); c 2983 test/manual/etags/c-src/emacs/src/keyboard.c POSN_SET_POSN (EVENT_START (c), list1 (posn)); c 2985 test/manual/etags/c-src/emacs/src/keyboard.c also_record = c; c 2986 test/manual/etags/c-src/emacs/src/keyboard.c Vunread_command_events = Fcons (c, Vunread_command_events); c 2987 test/manual/etags/c-src/emacs/src/keyboard.c c = posn; c 2993 test/manual/etags/c-src/emacs/src/keyboard.c record_char (c); c 3000 test/manual/etags/c-src/emacs/src/keyboard.c if (INTEGERP (c) c 3002 test/manual/etags/c-src/emacs/src/keyboard.c && ' ' <= XINT (c) && XINT (c) < 256 && XINT (c) != 127) c 3010 test/manual/etags/c-src/emacs/src/keyboard.c if (!CONSP (c) c 3011 test/manual/etags/c-src/emacs/src/keyboard.c || (!(EQ (Qhelp_echo, XCAR (c))) c 3012 test/manual/etags/c-src/emacs/src/keyboard.c && !(EQ (Qswitch_frame, XCAR (c))) c 3015 test/manual/etags/c-src/emacs/src/keyboard.c && !(EQ (Qselect_window, XCAR (c))))) c 3027 test/manual/etags/c-src/emacs/src/keyboard.c if (INTEGERP (c) c 3032 test/manual/etags/c-src/emacs/src/keyboard.c && ' ' <= XINT (c) && XINT (c) < 256 && XINT (c) != 127) c 3088 test/manual/etags/c-src/emacs/src/keyboard.c tem = call1 (Vinput_method_function, c); c 3125 test/manual/etags/c-src/emacs/src/keyboard.c c = XCAR (tem); c 3133 test/manual/etags/c-src/emacs/src/keyboard.c if (CONSP (c) && EQ (XCAR (c), Qhelp_echo)) c 3138 test/manual/etags/c-src/emacs/src/keyboard.c htem = Fcdr (XCDR (c)); c 3162 test/manual/etags/c-src/emacs/src/keyboard.c && ! (EVENT_HAS_PARAMETERS (c) c 3163 test/manual/etags/c-src/emacs/src/keyboard.c && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_movement))) c 3165 test/manual/etags/c-src/emacs/src/keyboard.c echo_char (c); c 3174 test/manual/etags/c-src/emacs/src/keyboard.c add_command_key (c); c 3179 test/manual/etags/c-src/emacs/src/keyboard.c last_input_event = c; c 3183 test/manual/etags/c-src/emacs/src/keyboard.c if (!NILP (Vhelp_form) && help_char_p (c)) c 3196 test/manual/etags/c-src/emacs/src/keyboard.c c = read_char (0, Qnil, Qnil, 0, NULL); c 3197 test/manual/etags/c-src/emacs/src/keyboard.c if (EVENT_HAS_PARAMETERS (c) c 3198 test/manual/etags/c-src/emacs/src/keyboard.c && EQ (EVENT_HEAD_KIND (EVENT_HEAD (c)), Qmouse_click)) c 3201 test/manual/etags/c-src/emacs/src/keyboard.c while (BUFFERP (c)); c 3206 test/manual/etags/c-src/emacs/src/keyboard.c if (EQ (c, make_number (040))) c 3210 test/manual/etags/c-src/emacs/src/keyboard.c c = read_char (0, Qnil, Qnil, 0, NULL); c 3211 test/manual/etags/c-src/emacs/src/keyboard.c while (BUFFERP (c)); c 3218 test/manual/etags/c-src/emacs/src/keyboard.c RETURN_UNGCPRO (c); c 3225 test/manual/etags/c-src/emacs/src/keyboard.c record_menu_key (Lisp_Object c) c 3230 test/manual/etags/c-src/emacs/src/keyboard.c record_char (c); c 3240 test/manual/etags/c-src/emacs/src/keyboard.c echo_char (c); c 3248 test/manual/etags/c-src/emacs/src/keyboard.c add_command_key (c); c 3251 test/manual/etags/c-src/emacs/src/keyboard.c last_input_event = c; c 3258 test/manual/etags/c-src/emacs/src/keyboard.c help_char_p (Lisp_Object c) c 3262 test/manual/etags/c-src/emacs/src/keyboard.c if (EQ (c, Vhelp_char)) c 3265 test/manual/etags/c-src/emacs/src/keyboard.c if (EQ (c, XCAR (tail))) c 3273 test/manual/etags/c-src/emacs/src/keyboard.c record_char (Lisp_Object c) c 3277 test/manual/etags/c-src/emacs/src/keyboard.c if (CONSP (c) && (EQ (XCAR (c), Qhelp_echo) || EQ (XCAR (c), Qmouse_movement))) c 3300 test/manual/etags/c-src/emacs/src/keyboard.c if (EQ (XCAR (c), Qhelp_echo)) c 3307 test/manual/etags/c-src/emacs/src/keyboard.c help = Fcar_safe (Fcdr_safe (XCDR (c))); c 3323 test/manual/etags/c-src/emacs/src/keyboard.c else if (EQ (XCAR (c), Qmouse_movement)) c 3329 test/manual/etags/c-src/emacs/src/keyboard.c window = Fcar_safe (Fcar_safe (XCDR (c))); c 3335 test/manual/etags/c-src/emacs/src/keyboard.c ASET (recent_keys, ix1, c); c 3341 test/manual/etags/c-src/emacs/src/keyboard.c store_kbd_macro_char (c); c 3346 test/manual/etags/c-src/emacs/src/keyboard.c ASET (recent_keys, recent_keys_index, c); c 3377 test/manual/etags/c-src/emacs/src/keyboard.c if (INTEGERP (c)) c 3379 test/manual/etags/c-src/emacs/src/keyboard.c if (XUINT (c) < 0x100) c 3380 test/manual/etags/c-src/emacs/src/keyboard.c putc (XUINT (c), dribble); c 3382 test/manual/etags/c-src/emacs/src/keyboard.c fprintf (dribble, " 0x%"pI"x", XUINT (c)); c 3389 test/manual/etags/c-src/emacs/src/keyboard.c dribblee = EVENT_HEAD (c); c 3561 test/manual/etags/c-src/emacs/src/keyboard.c register int c = event->code & 0377; c 3564 test/manual/etags/c-src/emacs/src/keyboard.c c = make_ctrl_char (c); c 3566 test/manual/etags/c-src/emacs/src/keyboard.c c |= (event->modifiers c 3570 test/manual/etags/c-src/emacs/src/keyboard.c if (c == quit_char) c 3579 test/manual/etags/c-src/emacs/src/keyboard.c make_number (c))); c 3620 test/manual/etags/c-src/emacs/src/keyboard.c if (c && c == stop_character) c 3858 test/manual/etags/c-src/emacs/src/keyboard.c int c = getchar (); c 3859 test/manual/etags/c-src/emacs/src/keyboard.c XSETINT (obj, c); c 5496 test/manual/etags/c-src/emacs/src/keyboard.c EMACS_INT c = event->code; c 5499 test/manual/etags/c-src/emacs/src/keyboard.c c &= 0377; c 5500 test/manual/etags/c-src/emacs/src/keyboard.c eassert (c == event->code); c 5505 test/manual/etags/c-src/emacs/src/keyboard.c c = make_ctrl_char (c); c 5512 test/manual/etags/c-src/emacs/src/keyboard.c c |= (event->modifiers c 5518 test/manual/etags/c-src/emacs/src/keyboard.c c |= shift_modifier; c 5520 test/manual/etags/c-src/emacs/src/keyboard.c XSETFASTINT (lispy_c, c); c 10403 test/manual/etags/c-src/emacs/src/keyboard.c char c; c 10451 test/manual/etags/c-src/emacs/src/keyboard.c if (((c = getchar ()) & ~040) == 'Y') c 10460 test/manual/etags/c-src/emacs/src/keyboard.c while (c != '\n') c = getchar (); c 10480 test/manual/etags/c-src/emacs/src/keyboard.c if (((c = getchar ()) & ~040) == 'Y') c 10482 test/manual/etags/c-src/emacs/src/keyboard.c while (c != '\n') c = getchar (); c 352 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_XCAR(c) XCONS (c)->car c 353 test/manual/etags/c-src/emacs/src/lisp.h #define lisp_h_XCDR(c) XCONS (c)->u.cdr c 399 test/manual/etags/c-src/emacs/src/lisp.h # define XCAR(c) lisp_h_XCAR (c) c 400 test/manual/etags/c-src/emacs/src/lisp.h # define XCDR(c) lisp_h_XCDR (c) c 1174 test/manual/etags/c-src/emacs/src/lisp.h xcar_addr (Lisp_Object c) c 1176 test/manual/etags/c-src/emacs/src/lisp.h return &XCONS (c)->car; c 1179 test/manual/etags/c-src/emacs/src/lisp.h xcdr_addr (Lisp_Object c) c 1181 test/manual/etags/c-src/emacs/src/lisp.h return &XCONS (c)->u.cdr; c 1185 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (XCAR, Lisp_Object, (Lisp_Object c), (c)) c 1186 test/manual/etags/c-src/emacs/src/lisp.h LISP_MACRO_DEFUN (XCDR, Lisp_Object, (Lisp_Object c), (c)) c 1193 test/manual/etags/c-src/emacs/src/lisp.h XSETCAR (Lisp_Object c, Lisp_Object n) c 1195 test/manual/etags/c-src/emacs/src/lisp.h *xcar_addr (c) = n; c 1198 test/manual/etags/c-src/emacs/src/lisp.h XSETCDR (Lisp_Object c, Lisp_Object n) c 1200 test/manual/etags/c-src/emacs/src/lisp.h *xcdr_addr (c) = n; c 1205 test/manual/etags/c-src/emacs/src/lisp.h CAR (Lisp_Object c) c 1207 test/manual/etags/c-src/emacs/src/lisp.h return (CONSP (c) ? XCAR (c) c 1208 test/manual/etags/c-src/emacs/src/lisp.h : NILP (c) ? Qnil c 1209 test/manual/etags/c-src/emacs/src/lisp.h : wrong_type_argument (Qlistp, c)); c 1212 test/manual/etags/c-src/emacs/src/lisp.h CDR (Lisp_Object c) c 1214 test/manual/etags/c-src/emacs/src/lisp.h return (CONSP (c) ? XCDR (c) c 1215 test/manual/etags/c-src/emacs/src/lisp.h : NILP (c) ? Qnil c 1216 test/manual/etags/c-src/emacs/src/lisp.h : wrong_type_argument (Qlistp, c)); c 1221 test/manual/etags/c-src/emacs/src/lisp.h CAR_SAFE (Lisp_Object c) c 1223 test/manual/etags/c-src/emacs/src/lisp.h return CONSP (c) ? XCAR (c) : Qnil; c 1226 test/manual/etags/c-src/emacs/src/lisp.h CDR_SAFE (Lisp_Object c) c 1228 test/manual/etags/c-src/emacs/src/lisp.h return CONSP (c) ? XCDR (c) : Qnil; c 1552 test/manual/etags/c-src/emacs/src/lisp.h #define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80) c 3053 test/manual/etags/c-src/emacs/src/lisp.h #define PUSH_HANDLER(c, tag_ch_val, handlertype) \ c 3055 test/manual/etags/c-src/emacs/src/lisp.h (c) = handlerlist->nextfree; \ c 3058 test/manual/etags/c-src/emacs/src/lisp.h (c) = xmalloc (sizeof (struct handler)); \ c 3059 test/manual/etags/c-src/emacs/src/lisp.h (c)->nextfree = NULL; \ c 3060 test/manual/etags/c-src/emacs/src/lisp.h handlerlist->nextfree = (c); \ c 3062 test/manual/etags/c-src/emacs/src/lisp.h (c)->type = (handlertype); \ c 3063 test/manual/etags/c-src/emacs/src/lisp.h (c)->tag_or_ch = (tag_ch_val); \ c 3064 test/manual/etags/c-src/emacs/src/lisp.h (c)->val = Qnil; \ c 3065 test/manual/etags/c-src/emacs/src/lisp.h (c)->next = handlerlist; \ c 3066 test/manual/etags/c-src/emacs/src/lisp.h (c)->lisp_eval_depth = lisp_eval_depth; \ c 3067 test/manual/etags/c-src/emacs/src/lisp.h (c)->pdlcount = SPECPDL_INDEX (); \ c 3068 test/manual/etags/c-src/emacs/src/lisp.h (c)->poll_suppress_count = poll_suppress_count; \ c 3069 test/manual/etags/c-src/emacs/src/lisp.h (c)->interrupt_input_blocked = interrupt_input_blocked;\ c 3070 test/manual/etags/c-src/emacs/src/lisp.h (c)->gcpro = gcprolist; \ c 3071 test/manual/etags/c-src/emacs/src/lisp.h (c)->byte_stack = byte_stack_list; \ c 3072 test/manual/etags/c-src/emacs/src/lisp.h handlerlist = (c); c 3201 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO7(a, b, c, d, e, f, g) (GCPRO6 (a, b, c, d, e, f), (void) gcpro7) c 3217 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO3(a, b, c) \ c 3220 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 3223 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO4(a, b, c, d) \ c 3226 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 3230 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO5(a, b, c, d, e) \ c 3233 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 3238 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO6(a, b, c, d, e, f) \ c 3241 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 3247 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO7(a, b, c, d, e, f, g) \ c 3250 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 3278 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO3(a, b, c) \ c 3284 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 3289 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO4(a, b, c, d) \ c 3295 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 3302 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO5(a, b, c, d, e) \ c 3308 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 3317 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO6(a, b, c, d, e, f) \ c 3323 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 3334 test/manual/etags/c-src/emacs/src/lisp.h #define GCPRO7(a, b, c, d, e, f, g) \ c 3340 test/manual/etags/c-src/emacs/src/lisp.h gcpro3.next = &gcpro2; gcpro3.var = &(c); gcpro3.nvars = 1; \ c 4358 test/manual/etags/c-src/emacs/src/lisp.h extern void stuff_char (char c); c 4716 test/manual/etags/c-src/emacs/src/lisp.h #define AUTO_LIST3(name, a, b, c) \ c 4718 test/manual/etags/c-src/emacs/src/lisp.h ? STACK_CONS (a, STACK_CONS (b, STACK_CONS (c, Qnil))) \ c 4719 test/manual/etags/c-src/emacs/src/lisp.h : list3 (a, b, c)) c 4720 test/manual/etags/c-src/emacs/src/lisp.h #define AUTO_LIST4(name, a, b, c, d) \ c 4723 test/manual/etags/c-src/emacs/src/lisp.h ? STACK_CONS (a, STACK_CONS (b, STACK_CONS (c, \ c 4725 test/manual/etags/c-src/emacs/src/lisp.h : list4 (a, b, c, d)) c 606 test/manual/etags/c-src/emacs/src/regex.h # define btowc(c) c c 159 test/manual/etags/c-src/etags.c #define iswhite(c) (_wht[CHAR (c)]) /* c is white (see white) */ c 160 test/manual/etags/c-src/etags.c #define notinname(c) (_nin[CHAR (c)]) /* c is not in a name (see nonam) */ c 161 test/manual/etags/c-src/etags.c #define begtoken(c) (_btk[CHAR (c)]) /* c can start token (see begtk) */ c 162 test/manual/etags/c-src/etags.c #define intoken(c) (_itk[CHAR (c)]) /* c can be in token (see midtk) */ c 163 test/manual/etags/c-src/etags.c #define endtoken(c) (_etk[CHAR (c)]) /* c ends tokens (see endtk) */ c 165 test/manual/etags/c-src/etags.c #define ISALNUM(c) isalnum (CHAR (c)) c 166 test/manual/etags/c-src/etags.c #define ISALPHA(c) isalpha (CHAR (c)) c 167 test/manual/etags/c-src/etags.c #define ISDIGIT(c) isdigit (CHAR (c)) c 168 test/manual/etags/c-src/etags.c #define ISLOWER(c) islower (CHAR (c)) c 170 test/manual/etags/c-src/etags.c #define lowcase(c) tolower (CHAR (c)) c 2613 test/manual/etags/c-src/etags.c consider_token (char *str, int len, int c, int *c_extp, c 2671 test/manual/etags/c-src/etags.c *is_func_or_var = (c == '('); c 2990 test/manual/etags/c-src/etags.c register char c; /* latest char read; '\0' for end of line */ c 3037 test/manual/etags/c-src/etags.c c = *lp++; c 3038 test/manual/etags/c-src/etags.c if (c == '\\') c 3049 test/manual/etags/c-src/etags.c c = ' '; c 3053 test/manual/etags/c-src/etags.c switch (c) c 3058 test/manual/etags/c-src/etags.c c = *lp++; c 3072 test/manual/etags/c-src/etags.c switch (c) c 3088 test/manual/etags/c-src/etags.c switch (c) c 3100 test/manual/etags/c-src/etags.c else switch (c) c 3138 test/manual/etags/c-src/etags.c c = ' '; c 3144 test/manual/etags/c-src/etags.c c = '\0'; c 3203 test/manual/etags/c-src/etags.c if (c == ']') c 3205 test/manual/etags/c-src/etags.c else if (c == '\0') c 3224 test/manual/etags/c-src/etags.c if (endtoken (c)) c 3226 test/manual/etags/c-src/etags.c if (c == ':' && *lp == ':' && begtoken (lp[1])) c 3235 test/manual/etags/c-src/etags.c c = lp[-1]; c 3243 test/manual/etags/c-src/etags.c || consider_token (newlb.buffer + tokoff, toklen, c, c 3256 test/manual/etags/c-src/etags.c c = *lp++; c 3364 test/manual/etags/c-src/etags.c else if (intoken (c)) c 3371 test/manual/etags/c-src/etags.c else if (begtoken (c)) c 3415 test/manual/etags/c-src/etags.c switch (c) c 4056 test/manual/etags/c-src/etags.c char c; c 4101 test/manual/etags/c-src/etags.c c = *cp; c 4104 test/manual/etags/c-src/etags.c *cp = c; c 4108 test/manual/etags/c-src/etags.c if (c == '"') c 4534 test/manual/etags/c-src/etags.c char c, *name; c 4563 test/manual/etags/c-src/etags.c c = *dbp++; c 4564 test/manual/etags/c-src/etags.c if (c == '\0') /* if end of line */ c 4572 test/manual/etags/c-src/etags.c c = *dbp++; /* only if don't need *dbp pointing c 4578 test/manual/etags/c-src/etags.c if (c == '}') /* within { } comments */ c 4580 test/manual/etags/c-src/etags.c else if (c == '*' && *dbp == ')') /* within (* *) comments */ c 4589 test/manual/etags/c-src/etags.c if (c == '\'') c 4594 test/manual/etags/c-src/etags.c switch (c) c 4683 test/manual/etags/c-src/etags.c switch (lowcase (c)) c 4994 test/manual/etags/c-src/etags.c int c; c 4996 test/manual/etags/c-src/etags.c while ((c = getc (inf)) != EOF) c 4999 test/manual/etags/c-src/etags.c if (c == '%') c 5000 test/manual/etags/c-src/etags.c while (c != '\n' && c != EOF) c 5001 test/manual/etags/c-src/etags.c c = getc (inf); c 5002 test/manual/etags/c-src/etags.c else if (c == TEX_LESC || c == TEX_SESC ) c 5006 test/manual/etags/c-src/etags.c if (c == TEX_LESC) c 5970 test/manual/etags/c-src/etags.c register int c = getc (stream); c 5980 test/manual/etags/c-src/etags.c if (c == EOF) c 5986 test/manual/etags/c-src/etags.c if (c == '\n') c 6009 test/manual/etags/c-src/etags.c *p++ = c; c 6491 test/manual/etags/c-src/etags.c # define ISUPPER(c) isupper (CHAR (c)) c 82 test/manual/etags/cp-src/MDiagArray2.h MDiagArray2 (T *d, int r, int c) : DiagArray2<T> (d, r, c) { } c 87 test/manual/etags/cp-src/MDiagArray2.h MDiagArray2 (int r, int c) : DiagArray2<T> (r, c) { } c 88 test/manual/etags/cp-src/MDiagArray2.h MDiagArray2 (int r, int c, const T& val) : DiagArray2<T> (r, c, val) { } c 69 test/manual/etags/cp-src/conway.cpp int i, j, c; c 85 test/manual/etags/cp-src/conway.cpp if ((c = getch()) == 'q') { clear_screen(); return; } c 86 test/manual/etags/cp-src/conway.cpp if (c == 'i') c 124 test/manual/etags/cp-src/functions.cpp ostream& operator << ( ostream &c, Date d ) { c 126 test/manual/etags/cp-src/functions.cpp c << "Null"; c 128 test/manual/etags/cp-src/functions.cpp c << d.date->tm_mday << ":" << d.date->tm_mon + 1 << ":" << d.date->tm_year + 1900 ; c 129 test/manual/etags/cp-src/functions.cpp return ( c ); c 55 test/manual/etags/cp-src/screen.cpp void write_xyc(int x, int y, char c) c 60 test/manual/etags/cp-src/screen.cpp *p++ = c; c 39 test/manual/etags/cp-src/screen.hpp void write_xyc(int x, int y, char c); c 1542 test/manual/etags/y-src/cccp.c register int c; c 1550 test/manual/etags/y-src/cccp.c for (c = 0; c < len; c++) c 1551 test/manual/etags/y-src/cccp.c if (p[c] == '.') { c 1570 test/manual/etags/y-src/cccp.c c = *p++; c 1572 test/manual/etags/y-src/cccp.c if (c >= '0' && c <= '9') c 1573 test/manual/etags/y-src/cccp.c digit = c - '0'; c 1574 test/manual/etags/y-src/cccp.c else if (base == 16 && c >= 'a' && c <= 'f') c 1575 test/manual/etags/y-src/cccp.c digit = c - 'a' + 10; c 1576 test/manual/etags/y-src/cccp.c else if (base == 16 && c >= 'A' && c <= 'F') c 1577 test/manual/etags/y-src/cccp.c digit = c - 'A' + 10; c 1581 test/manual/etags/y-src/cccp.c if (c == 'l' || c == 'L') c 1587 test/manual/etags/y-src/cccp.c else if (c == 'u' || c == 'U') c 1598 test/manual/etags/y-src/cccp.c c = *p++; c 1658 test/manual/etags/y-src/cccp.c register int c; c 1667 test/manual/etags/y-src/cccp.c c = *tokstart; c 1671 test/manual/etags/y-src/cccp.c if (c == *toktab->operator && tokstart[1] == toktab->operator[1]) { c 1682 test/manual/etags/y-src/cccp.c switch (c) { c 1716 test/manual/etags/y-src/cccp.c c = *lexptr++; c 1717 test/manual/etags/y-src/cccp.c if (c == '\\') c 1718 test/manual/etags/y-src/cccp.c c = parse_escape (&lexptr); c 1719 test/manual/etags/y-src/cccp.c else if (c == '\'') c 1753 test/manual/etags/y-src/cccp.c c = *lexptr++; c 1755 test/manual/etags/y-src/cccp.c if (c == '\'' || c == EOF) c 1758 test/manual/etags/y-src/cccp.c if (c == '\\') c 1760 test/manual/etags/y-src/cccp.c c = parse_escape (&lexptr); c 1762 test/manual/etags/y-src/cccp.c && (unsigned) c >= (1 << width)) c 1772 test/manual/etags/y-src/cccp.c result = (result << width) | (c & ((1 << width) - 1)); c 1774 test/manual/etags/y-src/cccp.c result = c; c 1775 test/manual/etags/y-src/cccp.c token_buffer[num_chars - 1] = c; c 1781 test/manual/etags/y-src/cccp.c if (c != '\'') c 1863 test/manual/etags/y-src/cccp.c return c; c 1871 test/manual/etags/y-src/cccp.c c = *lexptr++; c 1872 test/manual/etags/y-src/cccp.c if (c == '\\') c 1873 test/manual/etags/y-src/cccp.c c = parse_escape (&lexptr); c 1874 test/manual/etags/y-src/cccp.c else if (c == '"') c 1885 test/manual/etags/y-src/cccp.c if (c >= '0' && c <= '9' && !keyword_parsing) { c 1888 test/manual/etags/y-src/cccp.c c = tokstart[namelen], is_idchar[c] || c == '.'; c 1906 test/manual/etags/y-src/cccp.c if (!is_idstart[c]) { c 1940 test/manual/etags/y-src/cccp.c register int c = *(*string_ptr)++; c 1941 test/manual/etags/y-src/cccp.c switch (c) c 1950 test/manual/etags/y-src/cccp.c pedwarn ("non-ANSI-standard escape sequence, `\\%c'", c); c 1977 test/manual/etags/y-src/cccp.c register int i = c - '0'; c 1981 test/manual/etags/y-src/cccp.c c = *(*string_ptr)++; c 1982 test/manual/etags/y-src/cccp.c if (c >= '0' && c <= '7') c 1983 test/manual/etags/y-src/cccp.c i = (i << 3) + c - '0'; c 2002 test/manual/etags/y-src/cccp.c c = *(*string_ptr)++; c 2003 test/manual/etags/y-src/cccp.c if (c >= '0' && c <= '9') c 2004 test/manual/etags/y-src/cccp.c digit = c - '0'; c 2005 test/manual/etags/y-src/cccp.c else if (c >= 'a' && c <= 'f') c 2006 test/manual/etags/y-src/cccp.c digit = c - 'a' + 10; c 2007 test/manual/etags/y-src/cccp.c else if (c >= 'A' && c <= 'F') c 2008 test/manual/etags/y-src/cccp.c digit = c - 'A' + 10; c 2028 test/manual/etags/y-src/cccp.c return c; c 2122 test/manual/etags/y-src/cccp.c int n, c; c 345 test/manual/etags/y-src/cccp.y register int c; c 353 test/manual/etags/y-src/cccp.y for (c = 0; c < len; c++) c 354 test/manual/etags/y-src/cccp.y if (p[c] == '.') { c 373 test/manual/etags/y-src/cccp.y c = *p++; c 375 test/manual/etags/y-src/cccp.y if (c >= '0' && c <= '9') c 376 test/manual/etags/y-src/cccp.y digit = c - '0'; c 377 test/manual/etags/y-src/cccp.y else if (base == 16 && c >= 'a' && c <= 'f') c 378 test/manual/etags/y-src/cccp.y digit = c - 'a' + 10; c 379 test/manual/etags/y-src/cccp.y else if (base == 16 && c >= 'A' && c <= 'F') c 380 test/manual/etags/y-src/cccp.y digit = c - 'A' + 10; c 384 test/manual/etags/y-src/cccp.y if (c == 'l' || c == 'L') c 390 test/manual/etags/y-src/cccp.y else if (c == 'u' || c == 'U') c 401 test/manual/etags/y-src/cccp.y c = *p++; c 461 test/manual/etags/y-src/cccp.y register int c; c 470 test/manual/etags/y-src/cccp.y c = *tokstart; c 474 test/manual/etags/y-src/cccp.y if (c == *toktab->operator && tokstart[1] == toktab->operator[1]) { c 485 test/manual/etags/y-src/cccp.y switch (c) { c 519 test/manual/etags/y-src/cccp.y c = *lexptr++; c 520 test/manual/etags/y-src/cccp.y if (c == '\\') c 521 test/manual/etags/y-src/cccp.y c = parse_escape (&lexptr); c 522 test/manual/etags/y-src/cccp.y else if (c == '\'') c 556 test/manual/etags/y-src/cccp.y c = *lexptr++; c 558 test/manual/etags/y-src/cccp.y if (c == '\'' || c == EOF) c 561 test/manual/etags/y-src/cccp.y if (c == '\\') c 563 test/manual/etags/y-src/cccp.y c = parse_escape (&lexptr); c 565 test/manual/etags/y-src/cccp.y && (unsigned) c >= (1 << width)) c 575 test/manual/etags/y-src/cccp.y result = (result << width) | (c & ((1 << width) - 1)); c 577 test/manual/etags/y-src/cccp.y result = c; c 578 test/manual/etags/y-src/cccp.y token_buffer[num_chars - 1] = c; c 584 test/manual/etags/y-src/cccp.y if (c != '\'') c 666 test/manual/etags/y-src/cccp.y return c; c 674 test/manual/etags/y-src/cccp.y c = *lexptr++; c 675 test/manual/etags/y-src/cccp.y if (c == '\\') c 676 test/manual/etags/y-src/cccp.y c = parse_escape (&lexptr); c 677 test/manual/etags/y-src/cccp.y else if (c == '"') c 688 test/manual/etags/y-src/cccp.y if (c >= '0' && c <= '9' && !keyword_parsing) { c 691 test/manual/etags/y-src/cccp.y c = tokstart[namelen], is_idchar[c] || c == '.'; c 709 test/manual/etags/y-src/cccp.y if (!is_idstart[c]) { c 743 test/manual/etags/y-src/cccp.y register int c = *(*string_ptr)++; c 744 test/manual/etags/y-src/cccp.y switch (c) c 753 test/manual/etags/y-src/cccp.y pedwarn ("non-ANSI-standard escape sequence, `\\%c'", c); c 780 test/manual/etags/y-src/cccp.y register int i = c - '0'; c 784 test/manual/etags/y-src/cccp.y c = *(*string_ptr)++; c 785 test/manual/etags/y-src/cccp.y if (c >= '0' && c <= '7') c 786 test/manual/etags/y-src/cccp.y i = (i << 3) + c - '0'; c 805 test/manual/etags/y-src/cccp.y c = *(*string_ptr)++; c 806 test/manual/etags/y-src/cccp.y if (c >= '0' && c <= '9') c 807 test/manual/etags/y-src/cccp.y digit = c - '0'; c 808 test/manual/etags/y-src/cccp.y else if (c >= 'a' && c <= 'f') c 809 test/manual/etags/y-src/cccp.y digit = c - 'a' + 10; c 810 test/manual/etags/y-src/cccp.y else if (c >= 'A' && c <= 'F') c 811 test/manual/etags/y-src/cccp.y digit = c - 'A' + 10; c 831 test/manual/etags/y-src/cccp.y return c; c 925 test/manual/etags/y-src/cccp.y int n, c; c 2211 test/manual/etags/y-src/parse.c char c,cc,ccc; c 2217 test/manual/etags/y-src/parse.c c=str[0][0]; c 2220 test/manual/etags/y-src/parse.c return MIN_COL + (isupper(c) ? c-'A' : c-'a'); c 2224 test/manual/etags/y-src/parse.c return MIN_COL+26 + (isupper(c) ? c-'A' : c-'a')*26 + (isupper(cc) ? cc-'A' : cc-'a'); c 2229 test/manual/etags/y-src/parse.c return MIN_COL+702 + (isupper(c) ? c-'A' : c-'a')*26*26 + (isupper(cc) ? cc-'A' : cc-'a')*26 + (isupper(ccc) ? ccc-'A' : ccc-'a'); c 2233 test/manual/etags/y-src/parse.c return MIN_COL+18278 + (isupper(c) ? c-'A' : c-'a')*26*26*26 + (isupper(cc) ? cc-'A' : cc-'a')*26*26 + (isupper(ccc) ? ccc-'A' : ccc-'a')*26 + (isupper(cccc) ? cccc-'A' : cccc-'a'); c 850 test/manual/etags/y-src/parse.y char c,cc,ccc; c 856 test/manual/etags/y-src/parse.y c=str[0][0]; c 859 test/manual/etags/y-src/parse.y return MIN_COL + (isupper(c) ? c-'A' : c-'a'); c 863 test/manual/etags/y-src/parse.y return MIN_COL+26 + (isupper(c) ? c-'A' : c-'a')*26 + (isupper(cc) ? cc-'A' : cc-'a'); c 868 test/manual/etags/y-src/parse.y return MIN_COL+702 + (isupper(c) ? c-'A' : c-'a')*26*26 + (isupper(cc) ? cc-'A' : cc-'a')*26 + (isupper(ccc) ? ccc-'A' : ccc-'a'); c 872 test/manual/etags/y-src/parse.y return MIN_COL+18278 + (isupper(c) ? c-'A' : c-'a')*26*26*26 + (isupper(cc) ? cc-'A' : cc-'a')*26*26 + (isupper(ccc) ? ccc-'A' : ccc-'a')*26 + (isupper(cccc) ? cccc-'A' : cccc-'a');