| /freebsd-13-stable/contrib/tcsh/ |
| HD | sh.char.h | 151 # define cmap(c, bits) \ argument 155 # define cmap(c, bits) \ argument 159 # define cmap(c, bits) \ argument 163 #define isglob(c) cmap((c), _GLOB) argument 164 #define isspc(c) cmap((c), _SP) argument 165 #define ismeta(c) cmap((c), _META) argument 166 #define iscmdmeta(c) cmap((c), _CMD) argument 168 #define letter(c) (((c) & QUOTE) ? 0 : \ argument 170 #define alnum(c) (((c) & QUOTE) ? 0 : \ argument 173 #define letter(c) (((Char)(c) & QUOTE) ? 0 : \ argument [all …]
|
| HD | ed.chared.c | 1388 v_cmd_mode(Char c) in v_cmd_mode() 1416 e_unassigned(Char c) in e_unassigned() 1426 e_insert_str(Char *c) in e_insert_str() 1447 e_insert(Char c) in e_insert() 1522 e_digit(Char c) /* gray magic here */ in e_digit() 1555 e_argdigit(Char c) /* for ESC-n */ in e_argdigit() 1579 v_zero(Char c) /* command mode 0 for vi */ in v_zero() 1600 e_newline(Char c) in e_newline() 1621 e_newline_hold(Char c) in e_newline_hold() 1633 e_newline_down_hist(Char c) in e_newline_down_hist() [all …]
|
| /freebsd-13-stable/include/ |
| HD | ctype.h | 89 #define isalnum(c) __sbistype((c), _CTYPE_A|_CTYPE_D|_CTYPE_N) argument 90 #define isalpha(c) __sbistype((c), _CTYPE_A) argument 91 #define iscntrl(c) __sbistype((c), _CTYPE_C) argument 92 #define isdigit(c) __sbistype((c), _CTYPE_D) argument 93 #define isgraph(c) __sbistype((c), _CTYPE_G) argument 94 #define islower(c) __sbistype((c), _CTYPE_L) argument 95 #define isprint(c) __sbistype((c), _CTYPE_R) argument 96 #define ispunct(c) __sbistype((c), _CTYPE_P) argument 97 #define isspace(c) __sbistype((c), _CTYPE_S) argument 98 #define isupper(c) __sbistype((c), _CTYPE_U) argument [all …]
|
| /freebsd-13-stable/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 …]
|
| /freebsd-13-stable/contrib/libedit/ |
| HD | vi.c | 67 cv_action(EditLine *el, wint_t c) in cv_action() 99 cv_paste(EditLine *el, wint_t c) in cv_paste() 132 vi_paste_next(EditLine *el, wint_t c __attribute__((__unused__))) in vi_paste_next() 145 vi_paste_prev(EditLine *el, wint_t c __attribute__((__unused__))) in vi_paste_prev() 158 vi_prev_big_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_prev_big_word() 183 vi_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_prev_word() 208 vi_next_big_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_next_big_word() 232 vi_next_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_next_word() 255 vi_change_case(EditLine *el, wint_t c) in vi_change_case() 287 vi_change_meta(EditLine *el, wint_t c __attribute__((__unused__))) in vi_change_meta() [all …]
|
| HD | common.c | 62 ed_end_of_file(EditLine *el, wint_t c __attribute__((__unused__))) in ed_end_of_file() 76 ed_insert(EditLine *el, wint_t c) in ed_insert() 119 ed_delete_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in ed_delete_prev_word() 147 ed_delete_next_char(EditLine *el, wint_t c __attribute__((__unused__))) in ed_delete_next_char() 194 ed_kill_line(EditLine *el, wint_t c __attribute__((__unused__))) in ed_kill_line() 215 ed_move_to_end(EditLine *el, wint_t c __attribute__((__unused__))) in ed_move_to_end() 238 ed_move_to_beg(EditLine *el, wint_t c __attribute__((__unused__))) in ed_move_to_beg() 261 ed_transpose_chars(EditLine *el, wint_t c) in ed_transpose_chars() 287 ed_next_char(EditLine *el, wint_t c __attribute__((__unused__))) in ed_next_char() 316 ed_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in ed_prev_word() [all …]
|
| HD | emacs.c | 59 em_delete_or_list(EditLine *el, wint_t c) in em_delete_or_list() 95 em_delete_next_word(EditLine *el, wint_t c __attribute__((__unused__))) in em_delete_next_word() 124 em_yank(EditLine *el, wint_t c __attribute__((__unused__))) in em_yank() 160 em_kill_line(EditLine *el, wint_t c __attribute__((__unused__))) in em_kill_line() 182 em_kill_region(EditLine *el, wint_t c __attribute__((__unused__))) in em_kill_region() 215 em_copy_region(EditLine *el, wint_t c __attribute__((__unused__))) in em_copy_region() 244 em_gosmacs_transpose(EditLine *el, wint_t c) in em_gosmacs_transpose() 264 em_next_word(EditLine *el, wint_t c __attribute__((__unused__))) in em_next_word() 289 em_upper_case(EditLine *el, wint_t c __attribute__((__unused__))) in em_upper_case() 313 em_capitol_case(EditLine *el, wint_t c __attribute__((__unused__))) in em_capitol_case() [all …]
|
| /freebsd-13-stable/sys/contrib/ncsw/inc/ |
| HD | ctype_ext.h | 56 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) argument 57 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) argument 58 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) argument 59 #define isdigit(c) ((__ismask(c)&(_D)) != 0) argument 60 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) argument 61 #define islower(c) ((__ismask(c)&(_L)) != 0) argument 62 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) argument 63 #define ispunct(c) ((__ismask(c)&(_P)) != 0) argument 64 #define isspace(c) ((__ismask(c)&(_S)) != 0) argument 65 #define isupper(c) ((__ismask(c)&(_U)) != 0) argument [all …]
|
| /freebsd-13-stable/crypto/openssl/include/crypto/ |
| HD | ctype.h | 53 # define ossl_toascii(c) (c) argument 54 # define ossl_fromascii(c) (c) argument 62 # define ossl_isalnum(c) (ossl_ctype_check((c), CTYPE_MASK_alnum)) argument 63 # define ossl_isalpha(c) (ossl_ctype_check((c), CTYPE_MASK_alpha)) argument 65 # define ossl_isascii(c) (ossl_ctype_check((c), CTYPE_MASK_ascii)) argument 67 # define ossl_isascii(c) (((c) & ~127) == 0) argument 69 # define ossl_isblank(c) (ossl_ctype_check((c), CTYPE_MASK_blank)) argument 70 # define ossl_iscntrl(c) (ossl_ctype_check((c), CTYPE_MASK_cntrl)) argument 71 # define ossl_isdigit(c) (ossl_ctype_check((c), CTYPE_MASK_digit)) argument 72 # define ossl_isgraph(c) (ossl_ctype_check((c), CTYPE_MASK_graph)) argument [all …]
|
| /freebsd-13-stable/sys/contrib/openzfs/module/lua/ |
| HD | lctype.h | 51 #define testprop(c,p) (luai_ctype_[(lu_byte)(c)+1] & (p)) argument 56 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) argument 57 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) argument 58 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) argument 59 #define lisspace(c) testprop(c, MASK(SPACEBIT)) argument 60 #define lisprint(c) testprop(c, MASK(PRINTBIT)) argument 61 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT)) argument 66 #define ltolower(c) ((c) | ('A' ^ 'a')) argument 82 #define lislalpha(c) (isalpha(c) || (c) == '_') argument 83 #define lislalnum(c) (isalnum(c) || (c) == '_') argument [all …]
|
| /freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/ |
| HD | CharInfo.h | 41 LLVM_READNONE inline bool isASCII(char c) { in isASCII() 45 LLVM_READNONE inline bool isASCII(unsigned char c) { return c <= 127; } in isASCII() 48 LLVM_READNONE inline bool isASCII(uint32_t c) { return c <= 127; } in isASCII() 49 LLVM_READNONE inline bool isASCII(int64_t c) { return 0 <= c && c <= 127; } in isASCII() 61 LLVM_READONLY inline bool isAsciiIdentifierContinue(unsigned char c) { in isAsciiIdentifierContinue() 80 LLVM_READONLY inline bool isAsciiIdentifierContinue(unsigned char c, in isAsciiIdentifierContinue() 91 LLVM_READONLY inline bool isHorizontalWhitespace(unsigned char c) { in isHorizontalWhitespace() 99 LLVM_READONLY inline bool isVerticalWhitespace(unsigned char c) { in isVerticalWhitespace() 108 LLVM_READONLY inline bool isWhitespace(unsigned char c) { in isWhitespace() 114 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() [all …]
|
| /freebsd-13-stable/crypto/openssh/ |
| HD | nchan.c | 93 chan_set_istate(Channel *c, u_int next) in chan_set_istate() 103 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate() 113 chan_read_failed(struct ssh *ssh, Channel *c) in chan_read_failed() 129 chan_ibuf_empty(struct ssh *ssh, Channel *c) in chan_ibuf_empty() 151 chan_obuf_empty(struct ssh *ssh, Channel *c) in chan_obuf_empty() 172 chan_rcvd_eow(struct ssh *ssh, Channel *c) in chan_rcvd_eow() 184 chan_send_eof2(struct ssh *ssh, Channel *c) in chan_send_eof2() 207 chan_send_close2(struct ssh *ssh, Channel *c) in chan_send_close2() 232 chan_send_eow2(struct ssh *ssh, Channel *c) in chan_send_eow2() 257 chan_rcvd_ieof(struct ssh *ssh, Channel *c) in chan_rcvd_ieof() [all …]
|
| /freebsd-13-stable/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 …]
|
| /freebsd-13-stable/sys/sys/ |
| HD | ctype.h | 43 isspace(int c) in isspace() 49 isascii(int c) in isascii() 55 isupper(int c) in isupper() 61 islower(int c) in islower() 67 isalpha(int c) in isalpha() 73 isdigit(int c) in isdigit() 79 isxdigit(int c) in isxdigit() 85 isprint(int c) in isprint() 91 toupper(int c) in toupper() 97 tolower(int c) in tolower()
|
| HD | callout.h | 84 #define callout_active(c) ((c)->c_flags & CALLOUT_ACTIVE) argument 85 #define callout_deactivate(c) ((c)->c_flags &= ~CALLOUT_ACTIVE) argument 86 #define callout_drain(c) _callout_stop_safe(c, CS_DRAIN, NULL) argument 89 #define callout_init_mtx(c, mtx, flags) \ argument 92 #define callout_init_rm(c, rm, flags) \ argument 95 #define callout_init_rw(c, rw, flags) \ argument 98 #define callout_pending(c) ((c)->c_iflags & CALLOUT_PENDING) argument 101 #define callout_reset_sbt(c, sbt, pr, fn, arg, flags) \ argument 103 #define callout_reset_sbt_curcpu(c, sbt, pr, fn, arg, flags) \ argument 106 #define callout_reset_on(c, to_ticks, fn, arg, cpu) \ argument [all …]
|
| /freebsd-13-stable/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 …]
|
| /freebsd-13-stable/sys/compat/linuxkpi/common/include/linux/ |
| HD | completion.h | 38 #define INIT_COMPLETION(c) \ argument 40 #define init_completion(c) \ argument 42 #define reinit_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_interruptible(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 [all …]
|
| /freebsd-13-stable/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
|
| /freebsd-13-stable/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 …]
|
| /freebsd-13-stable/contrib/libfido2/regress/ |
| HD | cred.c | 1427 fido_cred_t *c; in alloc_cred() local 1436 free_cred(fido_cred_t *c) in free_cred() 1463 fido_cred_t *c; in empty_cred() local 1517 fido_cred_t *c; in valid_cred() local 1543 fido_cred_t *c; in no_cdh() local 1567 fido_cred_t *c; in no_rp_id() local 1591 fido_cred_t *c; in no_rp_name() local 1616 fido_cred_t *c; in no_authdata() local 1645 fido_cred_t *c; in no_x509() local 1669 fido_cred_t *c; in no_sig() local [all …]
|
| /freebsd-13-stable/contrib/tcpdump/ |
| HD | netdissect-ctype.h | 38 #define ND_ISASCII(c) (!((c) & 0x80)) /* value is an ASCII code point */ argument 39 #define ND_ASCII_ISPRINT(c) ((c) >= 0x20 && (c) <= 0x7E) argument 40 #define ND_ASCII_ISGRAPH(c) ((c) > 0x20 && (c) <= 0x7E) argument 41 #define ND_ASCII_ISDIGIT(c) ((c) >= '0' && (c) <= '9') argument 42 #define ND_TOASCII(c) ((c) & 0x7F) argument 52 #define ND_ASCII_TOLOWER(c) (((c) >= 'A' && (c) <= 'Z') ? (c) - 'A' + 'a' : (c)) argument 53 #define ND_ASCII_TOUPPER(c) (((c) >= 'a' && (c) <= 'z') ? (c) - 'a' + 'A' : (c)) argument
|
| /freebsd-13-stable/sys/dev/ce/ |
| HD | ceddk.c | 25 # define CE_DDK_DEBUG(b,c,s) \ argument 35 # define CE_DDK_DEBUG(b,c,s) do {} while (0) argument 38 # define CE_DDK_DEBUG(b,c,s) do {} while (0) argument 88 #define CE_PREREQUEST(b,c,list,item) \ argument 199 void ce_set_dtr (ce_chan_t *c, int on) in ce_set_dtr() 204 void ce_set_rts (ce_chan_t *c, int on) in ce_set_rts() 213 ce_chan_t *c; in ce_on_receive() local 275 ce_chan_t *c; in ce_on_transmit() local 309 int ce_transmit_space (ce_chan_t *c) in ce_transmit_space() 314 int ce_send_packet (ce_chan_t *c, unsigned char *buf, int len, void *tag) in ce_send_packet() [all …]
|
| /freebsd-13-stable/sys/powerpc/include/ |
| HD | pio.h | 181 __outsb(volatile u_int8_t *a, const u_int8_t *s, size_t c) in __outsb() 189 __outsw(volatile u_int16_t *a, const u_int16_t *s, size_t c) in __outsw() 197 __outsl(volatile u_int32_t *a, const u_int32_t *s, size_t c) in __outsl() 205 __outsll(volatile u_int64_t *a, const u_int64_t *s, size_t c) in __outsll() 213 __outswrb(volatile u_int16_t *a, const u_int16_t *s, size_t c) in __outswrb() 221 __outslrb(volatile u_int32_t *a, const u_int32_t *s, size_t c) in __outslrb() 229 __insb(volatile u_int8_t *a, u_int8_t *d, size_t c) in __insb() 237 __insw(volatile u_int16_t *a, u_int16_t *d, size_t c) in __insw() 245 __insl(volatile u_int32_t *a, u_int32_t *d, size_t c) in __insl() 253 __insll(volatile u_int64_t *a, u_int64_t *d, size_t c) in __insll() [all …]
|
| /freebsd-13-stable/contrib/lua/src/ |
| HD | lctype.h | 52 #define testprop(c,p) (luai_ctype_[(c)+1] & (p)) argument 57 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) argument 58 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) argument 59 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) argument 60 #define lisspace(c) testprop(c, MASK(SPACEBIT)) argument 61 #define lisprint(c) testprop(c, MASK(PRINTBIT)) argument 62 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT)) argument 71 #define ltolower(c) \ argument
|
| /freebsd-13-stable/sys/mips/include/ |
| HD | _stdint.h | 47 #define INT8_C(c) (c) argument 48 #define INT16_C(c) (c) argument 49 #define INT32_C(c) (c) argument 51 #define UINT8_C(c) (c) argument 52 #define UINT16_C(c) (c) argument 53 #define UINT32_C(c) (c ## U) argument 56 #define INT64_C(c) (c ## L) argument 57 #define UINT64_C(c) (c ## UL) argument 59 #define INT64_C(c) (c ## LL) argument 60 #define UINT64_C(c) (c ## ULL) argument [all …]
|