Home
last modified time | relevance | path

Searched defs:c (Results 1 – 25 of 1444) sorted by relevance

12345678910>>...58

/original-bsd/bin/csh/
H A Dchar.h35 #define cmap(c, bits) \ argument
38 #define isglob(c) cmap(c, _GLOB) argument
39 #define isspc(c) cmap(c, _SP) argument
40 #define ismeta(c) cmap(c, _META) argument
41 #define iscmdmeta(c) cmap(c, _CMD) argument
42 #define letter(c) (((c) & QUOTE) ? 0 : \ argument
44 #define alnum(c) (((c) & QUOTE) ? 0 : \ argument
59 #define Isspace(c) cmap(c, _SP|_NL) argument
60 #define Isdigit(c) cmap(c, _DIG) argument
64 #define Tolower(c) (_cmap_lower[(unsigned char)(c)]) argument
[all …]
/original-bsd/lib/libc/locale/
H A Disctype.c25 isalnum(c) in isalnum() argument
33 isalpha(c) in isalpha() argument
41 isascii(c) in isascii() argument
49 isblank(c) in isblank() argument
57 iscntrl(c) in iscntrl() argument
65 isdigit(c) in isdigit() argument
73 isgraph(c) in isgraph() argument
81 islower(c) in islower() argument
89 isprint(c) in isprint() argument
97 ispunct(c) in ispunct() argument
[all …]
/original-bsd/include/
H A Dctype.h51 #define isascii(c) ((c & ~0x7F) == 0) argument
52 #define toascii(c) ((c) & 0x7F) argument
53 #define digittoint(c) __istype((c), 0xFF) argument
54 #define isideogram(c) __istype((c), _I) argument
55 #define isphonogram(c) __istype((c), _T) argument
56 #define isspecial(c) __istype((c), _Q) argument
57 #define isblank(c) __istype((c), _B) argument
59 #define isnumber(c) __istype((c), _D) argument
60 #define ishexnumber(c) __istype((c), _X) argument
97 toupper(_BSD_RUNE_T_ c) in toupper()
[all …]
/original-bsd/lib/libedit/
H A Dvi.c27 cv_action(el, c) in cv_action() argument
81 cv_paste(el, c) in cv_paste() argument
112 vi_paste_next(el, c) in vi_paste_next() argument
126 vi_paste_prev(el, c) in vi_paste_prev() argument
167 vi_prev_word(el, c) in vi_prev_word() argument
221 vi_next_word(el, c) in vi_next_word() argument
401 vi_insert(el, c) in vi_insert() argument
421 vi_add(el, c) in vi_add() argument
485 vi_end_word(el, c) in vi_end_word() argument
537 vi_undo(el, c) in vi_undo() argument
[all …]
H A Dcommon.c27 ed_end_of_file(el, c) in ed_end_of_file() argument
42 ed_insert(el, c) in ed_insert() argument
179 ed_kill_line(el, c) in ed_kill_line() argument
278 ed_next_char(el, c) in ed_next_char() argument
305 ed_prev_word(el, c) in ed_prev_word() argument
332 ed_prev_char(el, c) in ed_prev_char() argument
381 ed_digit(el, c) in ed_digit() argument
484 ed_tty_dsusp(el, c) in ed_tty_dsusp() argument
568 ed_newline(el, c) in ed_newline() argument
624 ed_redisplay(el, c) in ed_redisplay() argument
[all …]
H A Demacs.c27 em_delete_or_list(el, c) in em_delete_or_list() argument
92 em_yank(el, c) in em_yank() argument
129 em_kill_line(el, c) in em_kill_line() argument
152 em_kill_region(el, c) in em_kill_region() argument
188 em_copy_region(el, c) in em_copy_region() argument
243 em_next_word(el, c) in em_next_word() argument
269 em_upper_case(el, c) in em_upper_case() argument
295 em_capitol_case(el, c) in em_capitol_case() argument
328 em_lower_case(el, c) in em_lower_case() argument
354 em_set_mark(el, c) in em_set_mark() argument
[all …]
/original-bsd/usr.bin/tn3270/api/
H A Ddctype.h19 #define Disalpha(c) (dctype[(c)]&(D_UPPER|D_LOWER)) argument
20 #define Disupper(c) (dctype[(c)]&D_UPPER) argument
21 #define Dislower(c) (dctype[(c)]&D_LOWER) argument
22 #define Disdigit(c) (dctype[(c)]&D_DIGIT) argument
23 #define Disalnum(c) (dctype[(c)]&(D_UPPER|D_LOWER|D_DIGIT)) argument
24 #define Disspace(c) (dctype[(c)]&D_SPACE) /* blank or null */ argument
25 #define Dispunct(c) (dctype[(c)]&D_PUNCT) argument
26 #define Disprint(c) (dctype[(c)]&D_PRINT) argument
/original-bsd/usr.bin/tn3270/tools/mkdctype/
H A Dectype.h19 #define Eisalpha(c) (ectype[(c)&0xff]&(E_UPPER|E_LOWER)) argument
20 #define Eisupper(c) (ectype[(c)&0xff]&E_UPPER) argument
21 #define Eislower(c) (ectype[(c)&0xff]&E_LOWER) argument
22 #define Eisdigit(c) (ectype[(c)&0xff]&E_DIGIT) argument
23 #define Eisalnum(c) (ectype[(c)&0xff]&(E_UPPER|E_LOWER|E_DIGIT)) argument
24 #define Eisspace(c) (ectype[(c)&0xff]&E_SPACE) /* blank or null */ argument
25 #define Eispunct(c) (ectype[(c)&0xff]&E_PUNCT) argument
26 #define Eisprint(c) (ectype[(c)&0xff]&E_PRINT) argument
/original-bsd/local/toolchest/ksh/shlib/
H A Dshtype.h91 #define isspace(c) (_ctype1[c]&(T_SPC)) argument
92 #define ismeta(c) (_ctype1[c]&(_META)) argument
94 #define qotchar(c) (_ctype1[c]&(T_QOT)) argument
95 #define eolchar(c) (_ctype1[c]&(T_EOR)) argument
96 #define dipchar(c) (_ctype1[c]&(T_DIP)) argument
98 #define escchar(c) (_ctype1[c]&(T_ESC)) argument
100 #define isexp(c) (_ctype1[c]&T_EXP) argument
105 #define isdigit(c) (_ctype2[c]&(T_DIG)) argument
107 #define defchar(c) (_ctype2[c]&(T_DEF)) argument
115 #define toupper(c) ((c) + 'A' - 'a') argument
[all …]
/original-bsd/local/toolchest/ksh/sh/
H A Dshtype.h91 #define isspace(c) (_ctype1[c]&(T_SPC)) argument
92 #define ismeta(c) (_ctype1[c]&(_META)) argument
94 #define qotchar(c) (_ctype1[c]&(T_QOT)) argument
95 #define eolchar(c) (_ctype1[c]&(T_EOR)) argument
96 #define dipchar(c) (_ctype1[c]&(T_DIP)) argument
98 #define escchar(c) (_ctype1[c]&(T_ESC)) argument
100 #define isexp(c) (_ctype1[c]&T_EXP) argument
105 #define isdigit(c) (_ctype2[c]&(T_DIG)) argument
107 #define defchar(c) (_ctype2[c]&(T_DEF)) argument
115 #define toupper(c) ((c) + 'A' - 'a') argument
[all …]
/original-bsd/usr.bin/window/
H A Dchar.h28 #define ctrl(c) (c & 0x1f) argument
29 #define unctrl(c) (_unctrl[(unsigned char) (c)]) argument
33 #define isctrl(c) (_cmap[(unsigned char) (c)] & _C) argument
34 #define isprt(c) (_cmap[(unsigned char) (c)] & _P) argument
35 #define isunctrl(c) (_cmap[(unsigned char) (c)] & _U) argument
H A Dscanner.c22 register c; in s_getc() local
43 s_ungetc(c) in s_ungetc() argument
64 register c; in s_gettok() local
508 register c; in s_gettok1() local
/original-bsd/usr.bin/diction/style3/
H A Dpscan.c11 #define isadv(c) (c == ADV || c == ADJ_ADV) argument
12 #define isadj(c) (c == ADJ || c == NOUN_ADJ || c == ADJ_ADV || c == UNK) argument
13 #define notnoun(c) (c != NOUN && c != UNK && c != NOUN_VERB && c != NV_PL && c != PNOUN) argument
14 #define issing(c) (c == UNK || c == NOUN_VERB || c == NOUN || c == NOM || c == NOUN_ADJ) argument
15 #define isnoun(c) (c == NOUN || c == NOUN_VERB || c == NV_PL || c == UNK || c == PNOUN) argument
16 #define nounnom(c) (c == NOUN || c == NOM) argument
24 char c; local
390 char c; local
491 char c; local
569 char c; local
[all …]
/original-bsd/sys/hp300/hp300/
H A Dconf.c35 #define dev_init(c,n,t) \ argument
46 #define bdev_disk_init(c,n) { \ argument
52 #define bdev_ldisk_init(c,n) { \ argument
57 #define bdev_tape_init(c,n) { \ argument
115 #define cdev_disk_init(c,n) { \ argument
136 #define cdev_tty_init(c,n) { \ argument
153 #define cdev_cn_init(c,n) { \ argument
170 #define cdev_mm_init(c,n) { \ argument
191 #define cdev_ptc_init(c,n) { \ argument
256 #define cdev_vn_init(c,n) { \ argument
[all …]
/original-bsd/old/sh/
H A Dctype.h74 #define space(c) (((c)&QUOTE)==0 ANDF _ctype1[c]&(T_SPC)) argument
76 #define qotchar(c) (((c)&QUOTE)==0 ANDF _ctype1[c]&(T_QOT)) argument
78 #define dipchar(c) (((c)&QUOTE)==0 ANDF _ctype1[c]&(T_DIP)) argument
80 #define escchar(c) (((c)&QUOTE)==0 ANDF _ctype1[c]&(T_ESC)) argument
84 #define digit(c) (((c)&QUOTE)==0 ANDF _ctype2[c]&(T_DIG)) argument
85 #define fngchar(c) (((c)&QUOTE)==0 ANDF _ctype2[c]&(T_FNG)) argument
87 #define defchar(c) (((c)&QUOTE)==0 ANDF _ctype2[c]&(T_DEF)) argument
88 #define setchar(c) (((c)&QUOTE)==0 ANDF _ctype2[c]&(T_SET)) argument
90 #define letter(c) (((c)&QUOTE)==0 ANDF _ctype2[c]&(T_IDC)) argument
91 #define alphanum(c) (((c)&QUOTE)==0 ANDF _ctype2[c]&(_IDCH)) argument
[all …]
/original-bsd/sys/luna68k/luna68k/
H A Dconf.c38 #define dev_init(c,n,t) \ argument
49 #define bdev_disk_init(c,n) { \ argument
55 #define bdev_ldisk_init(c,n) { \ argument
60 #define bdev_tape_init(c,n) { \ argument
113 #define cdev_disk_init(c,n) { \ argument
134 #define cdev_tty_init(c,n) { \ argument
151 #define cdev_cn_init(c,n) { \ argument
168 #define cdev_mm_init(c,n) { \ argument
208 #define cdev_fb_init(c,n) { \ argument
232 #define cdev_vn_init(c,n) { \ argument
[all …]
/original-bsd/sys/pmax/pmax/
H A Dconf.c38 #define dev_init(c,n,t) \ argument
48 #define bdev_disk_init(c,n) { \ argument
53 #define bdev_tape_init(c,n) { \ argument
98 #define cdev_disk_init(c,n) { \ argument
105 #define cdev_tape_init(c,n) { \ argument
112 #define cdev_tty_init(c,n) { \ argument
119 #define cdev_cn_init(c,n) { \ argument
146 #define cdev_mm_init(c,n) { \ argument
183 #define cdev_fd_init(c,n) { \ argument
192 #define cdev_pm_init(c,n) { \ argument
[all …]
/original-bsd/sys/sparc/sparc/
H A Dconf.c55 #define dev_init(c,n,t) \ argument
65 #define bdev_disk_init(c,n) { \ argument
70 #define bdev_tape_init(c,n) { \ argument
129 #define cdev_tty_init(c,n) { \ argument
135 #define cdev_gen_init(c,n) { \ argument
141 #define cdev_fb_init(c,n) { \ argument
154 #define cdev_cn_init(c,n) { \ argument
168 #define cdev_mm_init(c,n) { \ argument
186 #define cdev_ptc_init(c,n) { \ argument
193 #define cdev_log_init(c,n) { \ argument
[all …]
/original-bsd/sys/hp300/stand/
H A Dprf.c17 register int c; in scankbd() local
30 register int c; in getchar() local
46 putchar(c) in putchar() argument
/original-bsd/games/atc/
H A Dinput.c356 turn(c) in turn() argument
364 circle(c) in circle() argument
373 left(c) in left() argument
383 right(c) in right() argument
393 Left(c) in Left() argument
402 Right(c) in Right() argument
411 delayb(c) in delayb() argument
463 ex_it(c) in ex_it() argument
477 climb(c) in climb() argument
524 benum(c) in benum() argument
[all …]
/original-bsd/usr.bin/struct/struct/
H A D4.form.c20 null(c) in null() argument
28 int c, blank, first,count; in comprint() local
86 charout(c) in charout() argument
105 static int c; in input2() local
115 unput2(c) in unput2() argument
H A D1.form.c26 uptolow(c) /*translates upper to lower case */ in uptolow() argument
38 int c; variable
48 int c; variable
58 int c; variable
90 int c; variable
175 int c; local
229 unchar(c) in unchar() argument
/original-bsd/sys/i386/i386/
H A Dconf.c38 #define dev_init(c,n,t) \ argument
48 #define bdev_disk_init(c,n) { \ argument
53 #define bdev_tape_init(c,n) { \ argument
104 #define cdev_disk_init(c,n) { \ argument
111 #define cdev_tape_init(c,n) { \ argument
118 #define cdev_tty_init(c,n) { \ argument
135 #define cdev_cn_init(c,n) { \ argument
151 #define cdev_mm_init(c,n) { \ argument
172 #define cdev_ptc_init(c,n) { \ argument
180 #define cdev_log_init(c,n) { \ argument
[all …]
/original-bsd/usr.bin/ctags/
H A DC.c30 int c; /* current character */ in c_entries() local
219 int c; /* current character */ in func_entry() local
283 int c; /* character read */ in hash_entry() local
334 str_entry(c) in str_entry() argument
382 int c; /* character read */ in skip_comment() local
412 int c, local
438 int c, local
/original-bsd/sys/news3400/news3400/
H A Dconf.c38 #define dev_init(c,n,t) \ argument
48 #define bdev_disk_init(c,n) { \ argument
53 #define bdev_tape_init(c,n) { \ argument
125 #define cdev_tty_init(c,n) { \ argument
139 #define cdev_vc_init(c,n) { \ argument
164 #define cdev_mm_init(c,n) { \ argument
217 #define cdev_kb_init(c,n) { \ argument
228 #define cdev_ms_init(c,n) { \ argument
237 #define cdev_fb_init(c,n) { \ argument
255 #define cdev_ir_init(c,n) { \ argument
[all …]

12345678910>>...58