| /NextBSD/contrib/tcsh/ |
| HD | sh.char.h | 152 # define cmap(c, bits) \ argument 156 # define cmap(c, bits) \ argument 160 # define cmap(c, bits) \ argument 164 #define isglob(c) cmap((c), _GLOB) argument 165 #define isspc(c) cmap((c), _SP) argument 166 #define ismeta(c) cmap((c), _META) argument 167 #define iscmdmeta(c) cmap((c), _CMD) argument 169 #define letter(c) (((c) & QUOTE) ? 0 : \ argument 171 #define alnum(c) (((c) & QUOTE) ? 0 : \ argument 174 #define letter(c) (((Char)(c) & QUOTE) ? 0 : \ argument [all …]
|
| HD | ed.chared.c | 1384 v_cmd_mode(Char c) in v_cmd_mode() 1412 e_unassigned(Char c) in e_unassigned() 1422 e_insert_str(Char *c) in e_insert_str() 1443 e_insert(Char c) in e_insert() 1518 e_digit(Char c) /* gray magic here */ in e_digit() 1551 e_argdigit(Char c) /* for ESC-n */ in e_argdigit() 1575 v_zero(Char c) /* command mode 0 for vi */ in v_zero() 1596 e_newline(Char c) in e_newline() 1617 e_newline_hold(Char c) in e_newline_hold() 1629 e_newline_down_hist(Char c) in e_newline_down_hist() [all …]
|
| /NextBSD/include/ |
| HD | ctype.h | 88 #define isalnum(c) __sbistype((c), _CTYPE_A|_CTYPE_D|_CTYPE_N) argument 89 #define isalpha(c) __sbistype((c), _CTYPE_A) argument 90 #define iscntrl(c) __sbistype((c), _CTYPE_C) argument 91 #define isdigit(c) __sbistype((c), _CTYPE_D) argument 92 #define isgraph(c) __sbistype((c), _CTYPE_G) argument 93 #define islower(c) __sbistype((c), _CTYPE_L) argument 94 #define isprint(c) __sbistype((c), _CTYPE_R) argument 95 #define ispunct(c) __sbistype((c), _CTYPE_P) argument 96 #define isspace(c) __sbistype((c), _CTYPE_S) argument 97 #define isupper(c) __sbistype((c), _CTYPE_U) argument [all …]
|
| /NextBSD/lib/libc/locale/ |
| HD | isctype.c | 48 digittoint(int c) in digittoint() 55 isalnum(int c) in isalnum() 62 isalpha(int c) in isalpha() 69 isascii(int c) in isascii() 76 isblank(int c) in isblank() 83 iscntrl(int c) in iscntrl() 90 isdigit(int c) in isdigit() 97 isgraph(int c) in isgraph() 104 ishexnumber(int c) in ishexnumber() 111 isideogram(int c) in isideogram() [all …]
|
| /NextBSD/crypto/openssh/ |
| HD | nchan.c | 91 chan_set_istate(Channel *c, u_int next) in chan_set_istate() 100 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate() 114 chan_rcvd_oclose1(Channel *c) in chan_rcvd_oclose1() 138 chan_read_failed(Channel *c) in chan_read_failed() 153 chan_ibuf_empty(Channel *c) in chan_ibuf_empty() 179 chan_rcvd_ieof1(Channel *c) in chan_rcvd_ieof1() 196 chan_write_failed1(Channel *c) in chan_write_failed1() 217 chan_obuf_empty(Channel *c) in chan_obuf_empty() 239 chan_send_ieof1(Channel *c) in chan_send_ieof1() 256 chan_send_oclose1(Channel *c) in chan_send_oclose1() [all …]
|
| /NextBSD/contrib/libreadline/ |
| HD | chardefs.h | 43 #define whitespace(c) (((c) == ' ') || ((c) == '\t')) argument 61 #define CTRL_CHAR(c) ((c) < control_character_threshold && (((c) & 0x80) == 0)) argument 62 #define META_CHAR(c) ((c) > meta_character_threshold && (c) <= largest_char) argument 64 #define CTRL(c) ((c) & control_character_mask) argument 65 #define META(c) ((c) | meta_character_bit) argument 67 #define UNMETA(c) ((c) & (~meta_character_bit)) argument 68 #define UNCTRL(c) _rl_to_upper(((c)|control_character_bit)) argument 71 # define IN_CTYPE_DOMAIN(c) 1 argument 73 # define IN_CTYPE_DOMAIN(c) isascii(c) argument 77 # define isxdigit(c) (isdigit((c)) || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' && (c) <= 'F')) argument [all …]
|
| /NextBSD/lib/libedit/ |
| HD | vi.c | 63 cv_action(EditLine *el, Int c) in cv_action() 95 cv_paste(EditLine *el, Int c) in cv_paste() 127 vi_paste_next(EditLine *el, Int c __attribute__((__unused__))) in vi_paste_next() 140 vi_paste_prev(EditLine *el, Int c __attribute__((__unused__))) in vi_paste_prev() 153 vi_prev_big_word(EditLine *el, Int c __attribute__((__unused__))) in vi_prev_big_word() 178 vi_prev_word(EditLine *el, Int c __attribute__((__unused__))) in vi_prev_word() 203 vi_next_big_word(EditLine *el, Int c __attribute__((__unused__))) in vi_next_big_word() 227 vi_next_word(EditLine *el, Int c __attribute__((__unused__))) in vi_next_word() 250 vi_change_case(EditLine *el, Int c) in vi_change_case() 282 vi_change_meta(EditLine *el, Int c __attribute__((__unused__))) in vi_change_meta() [all …]
|
| HD | common.c | 57 ed_end_of_file(EditLine *el, Int c __attribute__((__unused__))) in ed_end_of_file() 71 ed_insert(EditLine *el, Int c) in ed_insert() 114 ed_delete_prev_word(EditLine *el, Int c __attribute__((__unused__))) in ed_delete_prev_word() 142 ed_delete_next_char(EditLine *el, Int c __attribute__((__unused__))) in ed_delete_next_char() 189 ed_kill_line(EditLine *el, Int c __attribute__((__unused__))) in ed_kill_line() 210 ed_move_to_end(EditLine *el, Int c __attribute__((__unused__))) in ed_move_to_end() 233 ed_move_to_beg(EditLine *el, Int c __attribute__((__unused__))) in ed_move_to_beg() 256 ed_transpose_chars(EditLine *el, Int c) in ed_transpose_chars() 282 ed_next_char(EditLine *el, Int c __attribute__((__unused__))) in ed_next_char() 311 ed_prev_word(EditLine *el, Int c __attribute__((__unused__))) in ed_prev_word() [all …]
|
| HD | emacs.c | 57 em_delete_or_list(EditLine *el, Int c) in em_delete_or_list() 93 em_delete_next_word(EditLine *el, Int c __attribute__((__unused__))) in em_delete_next_word() 122 em_yank(EditLine *el, Int c __attribute__((__unused__))) in em_yank() 158 em_kill_line(EditLine *el, Int c __attribute__((__unused__))) in em_kill_line() 180 em_kill_region(EditLine *el, Int c __attribute__((__unused__))) in em_kill_region() 213 em_copy_region(EditLine *el, Int c __attribute__((__unused__))) in em_copy_region() 242 em_gosmacs_transpose(EditLine *el, Int c) in em_gosmacs_transpose() 262 em_next_word(EditLine *el, Int c __attribute__((__unused__))) in em_next_word() 287 em_upper_case(EditLine *el, Int c __attribute__((__unused__))) in em_upper_case() 311 em_capitol_case(EditLine *el, Int c __attribute__((__unused__))) in em_capitol_case() [all …]
|
| /NextBSD/contrib/binutils/include/ |
| HD | safe-ctype.h | 91 #define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit)) argument 93 #define ISALPHA(c) _sch_test(c, _sch_isalpha) argument 94 #define ISALNUM(c) _sch_test(c, _sch_isalnum) argument 95 #define ISBLANK(c) _sch_test(c, _sch_isblank) argument 96 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl) argument 97 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) argument 98 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) argument 99 #define ISLOWER(c) _sch_test(c, _sch_islower) argument 100 #define ISPRINT(c) _sch_test(c, _sch_isprint) argument 101 #define ISPUNCT(c) _sch_test(c, _sch_ispunct) argument [all …]
|
| /NextBSD/contrib/gcclibs/include/ |
| HD | safe-ctype.h | 91 #define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit)) argument 93 #define ISALPHA(c) _sch_test(c, _sch_isalpha) argument 94 #define ISALNUM(c) _sch_test(c, _sch_isalnum) argument 95 #define ISBLANK(c) _sch_test(c, _sch_isblank) argument 96 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl) argument 97 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) argument 98 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) argument 99 #define ISLOWER(c) _sch_test(c, _sch_islower) argument 100 #define ISPRINT(c) _sch_test(c, _sch_isprint) argument 101 #define ISPUNCT(c) _sch_test(c, _sch_ispunct) argument [all …]
|
| /NextBSD/contrib/gdb/include/ |
| HD | safe-ctype.h | 91 #define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit)) argument 93 #define ISALPHA(c) _sch_test(c, _sch_isalpha) argument 94 #define ISALNUM(c) _sch_test(c, _sch_isalnum) argument 95 #define ISBLANK(c) _sch_test(c, _sch_isblank) argument 96 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl) argument 97 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) argument 98 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) argument 99 #define ISLOWER(c) _sch_test(c, _sch_islower) argument 100 #define ISPRINT(c) _sch_test(c, _sch_isprint) argument 101 #define ISPUNCT(c) _sch_test(c, _sch_ispunct) argument [all …]
|
| /NextBSD/sys/dev/cx/ |
| HD | cxddk.c | 39 static int cx_compute_buf_len (cx_chan_t *c) in cx_compute_buf_len() 73 cx_chan_t *c; in cx_open_board() local 110 void cx_start_chan (cx_chan_t *c, cx_buf_t *cb, unsigned long phys) in cx_start_chan() 195 void cx_enable_receive (cx_chan_t *c, int on) in cx_enable_receive() 220 void cx_enable_transmit (cx_chan_t *c, int on) in cx_enable_transmit() 236 int cx_receive_enabled (cx_chan_t *c) in cx_receive_enabled() 242 int cx_transmit_enabled (cx_chan_t *c) in cx_transmit_enabled() 248 unsigned long cx_get_baud (cx_chan_t *c) in cx_get_baud() 253 int cx_get_loop (cx_chan_t *c) in cx_get_loop() 258 int cx_get_nrzi (cx_chan_t *c) in cx_get_nrzi() [all …]
|
| /NextBSD/crypto/openssl/crypto/conf/ |
| HD | conf_def.h | 82 #define KEYTYPES(c) ((unsigned short *)((c)->meth_data)) argument 84 # define IS_COMMENT(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_COMMENT) argument 85 # define IS_FCOMMENT(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_FCOMMENT) argument 86 # define IS_EOF(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_EOF) argument 87 # define IS_ESC(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_ESC) argument 88 # define IS_NUMBER(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_NUMBER) argument 89 # define IS_WS(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_WS) argument 90 # define IS_ALPHA_NUMERIC(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_ALPHA_NUMERIC) argument 91 # define IS_ALPHA_NUMERIC_PUNCT(c,a) \ argument 93 # define IS_QUOTE(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_QUOTE) argument [all …]
|
| /NextBSD/contrib/apr/include/ |
| HD | apr_lib.h | 203 #define apr_isalnum(c) (isalnum(((unsigned char)(c)))) argument 205 #define apr_isalpha(c) (isalpha(((unsigned char)(c)))) argument 207 #define apr_iscntrl(c) (iscntrl(((unsigned char)(c)))) argument 209 #define apr_isdigit(c) (isdigit(((unsigned char)(c)))) argument 211 #define apr_isgraph(c) (isgraph(((unsigned char)(c)))) argument 213 #define apr_islower(c) (islower(((unsigned char)(c)))) argument 216 #define apr_isascii(c) (isascii(((unsigned char)(c)))) argument 218 #define apr_isascii(c) (((c) & ~0x7f)==0) argument 221 #define apr_isprint(c) (isprint(((unsigned char)(c)))) argument 223 #define apr_ispunct(c) (ispunct(((unsigned char)(c)))) argument [all …]
|
| /NextBSD/sys/sys/ |
| HD | ctype.h | 42 #define isspace(c) ((c) == ' ' || ((c) >= '\t' && (c) <= '\r')) argument 43 #define isascii(c) (((c) & ~0x7f) == 0) argument 44 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') argument 45 #define islower(c) ((c) >= 'a' && (c) <= 'z') argument 46 #define isalpha(c) (isupper(c) || islower(c)) argument 47 #define isdigit(c) ((c) >= '0' && (c) <= '9') argument 48 #define isxdigit(c) (isdigit(c) \ argument 51 #define isprint(c) ((c) >= ' ' && (c) <= '~') argument 53 #define toupper(c) ((c) - 0x20 * (((c) >= 'a') && ((c) <= 'z'))) argument 54 #define tolower(c) ((c) + 0x20 * (((c) >= 'A') && ((c) <= 'Z'))) argument
|
| /NextBSD/contrib/subversion/subversion/include/ |
| HD | svn_ctype.h | 48 #define svn_ctype_test(c, flags) \ argument 81 #define svn_ctype_iscntrl(c) svn_ctype_test((c), SVN_CTYPE_CNTRL) argument 84 #define svn_ctype_isspace(c) svn_ctype_test((c), SVN_CTYPE_SPACE) argument 87 #define svn_ctype_isdigit(c) svn_ctype_test((c), SVN_CTYPE_DIGIT) argument 90 #define svn_ctype_isupper(c) svn_ctype_test((c), SVN_CTYPE_UPPER) argument 93 #define svn_ctype_islower(c) svn_ctype_test((c), SVN_CTYPE_LOWER) argument 96 #define svn_ctype_ispunct(c) svn_ctype_test((c), SVN_CTYPE_PUNCT) argument 99 #define svn_ctype_isascii(c) svn_ctype_test((c), SVN_CTYPE_ASCII) argument 102 #define svn_ctype_isalpha(c) svn_ctype_test((c), SVN_CTYPE_ALPHA) argument 105 #define svn_ctype_isalnum(c) svn_ctype_test((c), SVN_CTYPE_ALNUM) argument [all …]
|
| /NextBSD/contrib/less/ |
| HD | charset.h | 10 #define IS_ASCII_OCTET(c) (((c) & 0x80) == 0) argument 11 #define IS_UTF8_TRAIL(c) (((c) & 0xC0) == 0x80) argument 12 #define IS_UTF8_LEAD2(c) (((c) & 0xE0) == 0xC0) argument 13 #define IS_UTF8_LEAD3(c) (((c) & 0xF0) == 0xE0) argument 14 #define IS_UTF8_LEAD4(c) (((c) & 0xF8) == 0xF0) argument 15 #define IS_UTF8_LEAD5(c) (((c) & 0xFC) == 0xF8) argument 16 #define IS_UTF8_LEAD6(c) (((c) & 0xFE) == 0xFC) argument 17 #define IS_UTF8_INVALID(c) (((c) & 0xFE) == 0xFE) argument 18 #define IS_UTF8_LEAD(c) (((c) & 0xC0) == 0xC0 && !IS_UTF8_INVALID(c)) argument
|
| /NextBSD/sys/dev/ctau/ |
| HD | ctddk.c | 67 ct_chan_t *c; in ct_open_board() local 144 static void ct_g703_rate (ct_chan_t *c, unsigned long rate) in ct_g703_rate() 153 static void ct_chan_baud (ct_chan_t *c, unsigned long baud) in ct_chan_baud() 165 void ct_set_baud (ct_chan_t *c, unsigned long baud) in ct_set_baud() 231 int ct_set_clk (ct_chan_t *c, int clk) in ct_set_clk() 247 int ct_get_clk (ct_chan_t *c) in ct_get_clk() 252 int ct_set_ts (ct_chan_t *c, unsigned long ts) in ct_set_ts() 273 int ct_set_higain (ct_chan_t *c, int on) in ct_set_higain() 285 void ct_start_scc (ct_chan_t *c, char *rxbuf, char *txbuf) in ct_start_scc() 303 void ct_start_chan (ct_chan_t *c, ct_buf_t *cb, unsigned long phys) in ct_start_chan() [all …]
|
| /NextBSD/sys/contrib/ngatm/netnatm/sig/ |
| HD | sig_call.c | 94 set_call_state(struct call *c, enum call_state state) in set_call_state() 125 struct call *c; in uni_find_call() local 135 struct call *c; in uni_find_callx() local 149 struct call *c; in uni_create_call() local 190 struct call *c; in uni_create_new_call() local 213 uni_destroy_call(struct call *c, int really) in uni_destroy_call() 254 allocate_epref(struct call *c, struct uni_ie_epref *epref) in allocate_epref() 278 reset_all_timers(struct call *c) in reset_all_timers() 304 clear_callD(struct call *c) in clear_callD() 360 un0_setup(struct call *c, struct uni_msg *m, struct uni_all *u, in un0_setup() [all …]
|
| /NextBSD/sys/compat/linuxkpi/common/include/linux/ |
| HD | completion.h | 40 #define INIT_COMPLETION(c) \ argument 42 #define init_completion(c) \ argument 44 #define complete(c) \ argument 46 #define complete_all(c) \ argument 48 #define wait_for_completion(c) \ argument 50 #define wait_for_completion_interuptible(c) \ argument 52 #define wait_for_completion_timeout(c, timeout) \ argument 54 #define wait_for_completion_interruptible_timeout(c, timeout) \ argument 56 #define try_wait_for_completion(c) \ argument 58 #define completion_done(c) \ argument
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Basic/ |
| HD | CharInfo.h | 43 LLVM_READNONE static inline bool isASCII(char c) { in isASCII() 71 LLVM_READONLY static inline bool isHorizontalWhitespace(unsigned char c) { in isHorizontalWhitespace() 79 LLVM_READONLY static inline bool isVerticalWhitespace(unsigned char c) { in isVerticalWhitespace() 88 LLVM_READONLY static inline bool isWhitespace(unsigned char c) { in isWhitespace() 94 LLVM_READONLY static inline bool isDigit(unsigned char c) { in isDigit() 100 LLVM_READONLY static inline bool isLowercase(unsigned char c) { in isLowercase() 106 LLVM_READONLY static inline bool isUppercase(unsigned char c) { in isUppercase() 112 LLVM_READONLY static inline bool isLetter(unsigned char c) { in isLetter() 118 LLVM_READONLY static inline bool isAlphanumeric(unsigned char c) { in isAlphanumeric() 124 LLVM_READONLY static inline bool isHexDigit(unsigned char c) { in isHexDigit() [all …]
|
| /NextBSD/contrib/binutils/bfd/ |
| HD | rs6000-core.c | 132 # define CORE_NEW(c) (!(c).old.c_entries) argument 134 # define CORE_NEW(c) 0 argument 140 # define CNEW_STACKORG(c) (c).c_stackorg argument 142 # define CNEW_STACKORG(c) 0 argument 148 # define CNEW_LOADER(c) (c).c_loader argument 150 # define CNEW_LOADER(c) 0 argument 155 #define COLD_LOADER(c) (c).c_tab argument 160 # define CNEW_LSIZE(c) (c).c_lsize argument 162 # define CNEW_LSIZE(c) 0 argument 168 # define CNEW_DATAORG(c) (c).c_dataorg argument [all …]
|
| /NextBSD/crypto/openssl/crypto/ |
| HD | md32_common.h | 211 # define HOST_c2l(c,l) ({ unsigned int r=*((const unsigned int *)(c)); \ argument 214 # define HOST_l2c(l,c) ({ unsigned int r=(l); \ argument 221 # define HOST_c2l(c,l) ({ unsigned int r; \ argument 226 # define HOST_l2c(l,c) ({ unsigned int r; \ argument 232 # define HOST_c2l(c,l) ((l)=*((const unsigned int *)(c)), (c)+=4, (l)) argument 233 # define HOST_l2c(l,c) (*((unsigned int *)(c))=(l), (c)+=4, (l)) argument 239 # define HOST_c2l(c,l) ((l)=*((const unsigned int *)(c)), (c)+=4, (l)) argument 240 # define HOST_l2c(l,c) (*((unsigned int *)(c))=(l), (c)+=4, (l)) argument 245 # define HOST_c2l(c,l) (l =(((unsigned long)(*((c)++)))<<24), \ argument 251 # define HOST_l2c(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \ argument [all …]
|
| /NextBSD/sys/dev/isp/ |
| HD | ispreg.h | 789 #define ISPBSMX(c, byte, shift, mask) \ argument 802 #define ISP_NVRAM_VERSION(c) (c)[4] argument 803 #define ISP_NVRAM_FIFO_THRESHOLD(c) ISPBSMX(c, 5, 0, 0x03) argument 804 #define ISP_NVRAM_BIOS_DISABLE(c) ISPBSMX(c, 5, 2, 0x01) argument 805 #define ISP_NVRAM_HBA_ENABLE(c) ISPBSMX(c, 5, 3, 0x01) argument 806 #define ISP_NVRAM_INITIATOR_ID(c) ISPBSMX(c, 5, 4, 0x0f) argument 807 #define ISP_NVRAM_BUS_RESET_DELAY(c) (c)[6] argument 808 #define ISP_NVRAM_BUS_RETRY_COUNT(c) (c)[7] argument 809 #define ISP_NVRAM_BUS_RETRY_DELAY(c) (c)[8] argument 810 #define ISP_NVRAM_ASYNC_DATA_SETUP_TIME(c) ISPBSMX(c, 9, 0, 0x0f) argument [all …]
|