Home
last modified time | relevance | path

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

12345678910>>...113

/freebsd/contrib/tcsh/
H A Dsh.char.h151 # 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
170 #define alnum(c) (((c) & QUOTE) ? 0 : \ argument
285 # define Isspace(c) cmap((c), _SP|_NL) argument
286 # define Isdigit(c) cmap((c), _DIG) argument
[all …]
H A Ded.chared.c2096 e_which(Char c) in e_which()
2556 e_toend(Char c) in e_toend()
2571 e_tobeg(Char c) in e_tobeg()
2672 Char c; in e_charswitch() local
2694 Char c; in e_gcharswitch() local
2951 v_action(int c) in v_action()
3128 e_quote(Char c) in e_quote()
3253 v_add(Char c) in v_add()
3292 Char c; in v_change_case() local
3623 v_eword(Char c) in v_eword()
[all …]
/freebsd/include/
H A Dctype.h88 #define isalpha(c) __sbistype((c), _CTYPE_A) argument
89 #define iscntrl(c) __sbistype((c), _CTYPE_C) argument
90 #define isdigit(c) __sbistype((c), _CTYPE_D) argument
91 #define isgraph(c) __sbistype((c), _CTYPE_G) argument
92 #define islower(c) __sbistype((c), _CTYPE_L) argument
98 #define tolower(c) __sbtolower(c) argument
99 #define toupper(c) __sbtoupper(c) argument
114 #define _tolower(c) __sbtolower(c) argument
115 #define _toupper(c) __sbtoupper(c) argument
116 #define isascii(c) (((c) & ~0x7F) == 0) argument
[all …]
/freebsd/lib/libc/locale/
H A Disctype.c51 isalnum(int c) in isalnum()
58 isalpha(int c) in isalpha()
65 isascii(int c) in isascii()
72 isblank(int c) in isblank()
79 iscntrl(int c) in iscntrl()
86 isdigit(int c) in isdigit()
93 isgraph(int c) in isgraph()
114 islower(int c) in islower()
135 isprint(int c) in isprint()
142 ispunct(int c) in ispunct()
[all …]
/freebsd/sys/contrib/ncsw/inc/
H A Dctype_ext.h57 #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
61 #define islower(c) ((__ismask(c)&(_L)) != 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
68 #define isascii(c) (((unsigned char)(c))<=0x7f) argument
69 #define toascii(c) (((unsigned char)(c))&0x7f) argument
85 #define tolower(c) __tolower(c) argument
[all …]
/freebsd/contrib/libedit/
H A Dvi.c67 cv_action(EditLine *el, wint_t c) in cv_action()
99 cv_paste(EditLine *el, wint_t c) in cv_paste()
255 vi_change_case(EditLine *el, wint_t c) in vi_change_case()
406 vi_insert(EditLine *el, wint_t c __attribute__((__unused__))) in vi_insert()
421 vi_add(EditLine *el, wint_t c __attribute__((__unused__))) in vi_add()
523 vi_undo(EditLine *el, wint_t c __attribute__((__unused__))) in vi_undo()
574 vi_zero(EditLine *el, wint_t c) in vi_zero()
613 vi_list_or_eof(EditLine *el, wint_t c) in vi_list_or_eof()
811 vi_match(EditLine *el, wint_t c __attribute__((__unused__))) in vi_match()
900 vi_yank(EditLine *el, wint_t c __attribute__((__unused__))) in vi_yank()
[all …]
H A Dcommon.c62 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()
194 ed_kill_line(EditLine *el, wint_t c __attribute__((__unused__))) in ed_kill_line()
261 ed_transpose_chars(EditLine *el, wint_t c) in ed_transpose_chars()
386 ed_digit(EditLine *el, wint_t c) in ed_digit()
414 ed_argument_digit(EditLine *el, wint_t c) in ed_argument_digit()
440 wint_t c __attribute__((__unused__))) in ed_unassigned()
454 wint_t c __attribute__((__unused__))) in ed_ignore()
467 ed_newline(EditLine *el, wint_t c __attribute__((__unused__))) in ed_newline()
519 wint_t c __attribute__((__unused__))) in ed_redisplay()
[all …]
H A Demacs.c59 em_delete_or_list(EditLine *el, wint_t c) in em_delete_or_list()
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()
345 em_lower_case(EditLine *el, wint_t c __attribute__((__unused__))) in em_lower_case()
369 em_set_mark(EditLine *el, wint_t c __attribute__((__unused__))) in em_set_mark()
[all …]
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlctype.h55 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) argument
57 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) argument
58 #define lisspace(c) testprop(c, MASK(SPACEBIT)) argument
59 #define lisprint(c) testprop(c, MASK(PRINTBIT)) argument
65 #define ltolower(c) ((c) | ('A' ^ 'a')) argument
81 #define lislalpha(c) (isalpha(c) || (c) == '_') argument
83 #define lisdigit(c) (isdigit(c)) argument
84 #define lisspace(c) (isspace(c)) argument
85 #define lisprint(c) (isprint(c)) argument
86 #define lisxdigit(c) (isxdigit(c)) argument
[all …]
/freebsd/crypto/openssh/
H A Dnchan.c93 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()
230 chan_send_eow2(struct ssh *ssh, Channel *c) in chan_send_eow2()
255 chan_rcvd_ieof(struct ssh *ssh, Channel *c) in chan_rcvd_ieof()
[all …]
/freebsd/crypto/openssl/include/crypto/
H A Dctype.h56 # define ossl_toascii(c) (c) argument
57 # define ossl_fromascii(c) (c) argument
70 # define ossl_isalnum(c) (ossl_ctype_check((c), CTYPE_MASK_alnum)) argument
71 # define ossl_isalpha(c) (ossl_ctype_check((c), CTYPE_MASK_alpha)) argument
73 # define ossl_isascii(c) (ossl_ctype_check((c), CTYPE_MASK_ascii)) argument
75 # define ossl_isascii(c) (((c) & ~127) == 0) argument
77 # define ossl_isblank(c) (ossl_ctype_check((c), CTYPE_MASK_blank)) argument
78 # define ossl_iscntrl(c) (ossl_ctype_check((c), CTYPE_MASK_cntrl)) argument
79 # define ossl_isgraph(c) (ossl_ctype_check((c), CTYPE_MASK_graph)) argument
80 # define ossl_isprint(c) (ossl_ctype_check((c), CTYPE_MASK_print)) argument
[all …]
/freebsd/sys/sys/
H A Dctype.h43 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()
H A Dcallout.h82 #define callout_active(c) ((c)->c_flags & CALLOUT_ACTIVE) argument
84 #define callout_drain(c) _callout_stop_safe(c, CS_DRAIN) argument
87 #define callout_init_mtx(c, mtx, flags) \ argument
90 #define callout_init_rm(c, rm, flags) \ argument
93 #define callout_init_rw(c, rw, flags) \ argument
104 #define callout_reset_on(c, to_ticks, fn, arg, cpu) \ argument
107 #define callout_reset(c, on_tick, fn, arg) \ argument
109 #define callout_reset_curcpu(c, on_tick, fn, arg) \ argument
114 #define callout_schedule_sbt(c, sbt, pr, flags) \ argument
120 #define callout_schedule_curcpu(c, on_tick) \ argument
[all …]
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Dcompletion.h38 #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/contrib/less/
H A Dcharset.h10 #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/contrib/llvm-project/clang/include/clang/Basic/
H A DCharInfo.h42 LLVM_READNONE inline bool isASCII(char c) { in isASCII()
93 LLVM_READONLY inline bool isWhitespace(unsigned char c) { in isWhitespace()
99 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit()
105 LLVM_READONLY inline bool isLowercase(unsigned char c) { in isLowercase()
111 LLVM_READONLY inline bool isUppercase(unsigned char c) { in isUppercase()
117 LLVM_READONLY inline bool isLetter(unsigned char c) { in isLetter()
129 LLVM_READONLY inline bool isHexDigit(unsigned char c) { in isHexDigit()
137 LLVM_READONLY inline bool isPunctuation(unsigned char c) { in isPunctuation()
145 LLVM_READONLY inline bool isPrintable(unsigned char c) { in isPrintable()
208 LLVM_READONLY inline char toLowercase(char c) { in toLowercase()
[all …]
/freebsd/crypto/openssl/crypto/
H A Dctype.c227 int ossl_toascii(int c) in ossl_toascii()
242 int ossl_fromascii(int c) in ossl_fromascii()
252 int ossl_ctype_check(int c, unsigned int mask) in ossl_ctype_check()
265 #define ASCII_IS_DIGIT(c) (c >= 0x30 && c <= 0x39) argument
266 #define ASCII_IS_UPPER(c) (c >= 0x41 && c <= 0x5A) argument
269 int ossl_isdigit(int c) in ossl_isdigit()
276 int ossl_isupper(int c) in ossl_isupper()
283 int ossl_islower(int c) in ossl_islower()
296 int ossl_tolower(int c) in ossl_tolower()
303 int ossl_toupper(int c) in ossl_toupper()
[all …]
/freebsd/contrib/libfido2/regress/
H A Dcred.c1429 fido_cred_t *c; in alloc_cred() local
1465 fido_cred_t *c; in empty_cred() local
1519 fido_cred_t *c; in valid_cred() local
1545 fido_cred_t *c; in no_cdh() local
1569 fido_cred_t *c; in no_rp_id() local
1593 fido_cred_t *c; in no_rp_name() local
1618 fido_cred_t *c; in no_authdata() local
1647 fido_cred_t *c; in no_x509() local
1671 fido_cred_t *c; in no_sig() local
1695 fido_cred_t *c; in no_fmt() local
[all …]
/freebsd/contrib/tcpdump/
H A Dnetdissect-ctype.h38 #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/contrib/lua/src/
H A Dlctype.h52 #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/crypto/openssl/crypto/conf/
H A Dconf_def.h30 #define IS_COMMENT(conf,c) is_keytype(conf, c, CONF_COMMENT) argument
31 #define IS_FCOMMENT(conf,c) is_keytype(conf, c, CONF_FCOMMENT) argument
32 #define IS_EOF(conf,c) is_keytype(conf, c, CONF_EOF) argument
33 #define IS_ESC(conf,c) is_keytype(conf, c, CONF_ESC) argument
34 #define IS_NUMBER(conf,c) is_keytype(conf, c, CONF_NUMBER) argument
35 #define IS_WS(conf,c) is_keytype(conf, c, CONF_WS) argument
36 #define IS_ALNUM(conf,c) is_keytype(conf, c, CONF_ALNUM) argument
37 #define IS_ALNUM_PUNCT(conf,c) is_keytype(conf, c, CONF_ALNUM_PUNCT) argument
38 #define IS_QUOTE(conf,c) is_keytype(conf, c, CONF_QUOTE) argument
39 #define IS_DQUOTE(conf,c) is_keytype(conf, c, CONF_DQUOTE) argument
[all …]
/freebsd/sys/powerpc/include/
H A Dpio.h277 #define outs8(a,s,c) outsb(a,s,c) argument
279 #define outs16(a,s,c) outsw(a,s,c) argument
281 #define outs32(a,s,c) outsl(a,s,c) argument
283 #define outs64(a,s,c) outsll(a,s,c) argument
285 #define ins8(a,d,c) insb(a,d,c) argument
287 #define ins16(a,d,c) insw(a,d,c) argument
289 #define ins32(a,d,c) insl(a,d,c) argument
291 #define ins64(a,d,c) insll(a,d,c) argument
293 #define outs8rb(a,s,c) outsb(a,s,c) argument
298 #define ins8rb(a,d,c) insb(a,d,c) argument
[all …]
H A D_stdint.h45 #define INT8_C(c) (c) argument
46 #define INT16_C(c) (c) argument
47 #define INT32_C(c) (c) argument
49 #define UINT8_C(c) (c) argument
50 #define UINT16_C(c) (c) argument
51 #define UINT32_C(c) (c ## U) argument
54 #define INT64_C(c) (c ## L) argument
55 #define UINT64_C(c) (c ## UL) argument
57 #define INT64_C(c) (c ## LL) argument
58 #define UINT64_C(c) (c ## ULL) argument
[all …]
/freebsd/sys/dev/sound/pcm/
H A Dchannel.c128 struct pcm_channel *c; in chn_vpc_proc() local
300 chn_wakeup(struct pcm_channel *c) in chn_wakeup()
390 chn_wrfeed(struct pcm_channel *c) in chn_wrfeed()
437 chn_wrintr(struct pcm_channel *c) in chn_wrintr()
524 chn_rdfeed(struct pcm_channel *c) in chn_rdfeed()
567 chn_rdintr(struct pcm_channel *c) in chn_rdintr()
658 chn_intr(struct pcm_channel *c) in chn_intr()
925 chn_abort(struct pcm_channel *c) in chn_abort()
960 chn_flush(struct pcm_channel *c) in chn_flush()
1164 struct pcm_channel *c; in chn_init() local
[all …]
/freebsd/contrib/ntp/include/
H A Dntp_md5.h16 # define MD5Init(c) isc_md5_init(c) argument
17 # define MD5Update(c, p, s) isc_md5_update(c, (const void *)p, s) argument
18 # define MD5Final(d, c) isc_md5_final((c), (d)) /* swapped */ argument
40 # define EVP_MD_CTX_free(c) free(c) argument
44 # define EVP_MD_CTX_init(c) argument
45 # define EVP_MD_CTX_set_flags(c, f) argument
46 # define EVP_DigestInit(c, dt) (MD5Init(c), 1) argument
47 # define EVP_DigestInit_ex(c, dt, i) (MD5Init(c), 1) argument
48 # define EVP_DigestUpdate(c, p, s) MD5Update(c, (const void *)(p), \ argument
50 # define EVP_DigestFinal(c, d, pdl) \ argument

12345678910>>...113