Home
last modified time | relevance | path

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

12345678910>>...138

/freebsd-src/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
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 …]
H A Ded.chared.c1388 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-src/include/
H A Dctype.h87 #define isalnum(c) __sbistype((c), _CTYPE_A|_CTYPE_D|_CTYPE_N) argument
88 #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
93 #define isprint(c) __sbistype((c), _CTYPE_R) argument
94 #define ispunct(c) __sbistype((c), _CTYPE_P) argument
95 #define isspace(c) __sbistype((c), _CTYPE_S) argument
96 #define isupper(c) __sbistype((c), _CTYPE_U) argument
[all …]
/freebsd-src/lib/libc/locale/
H A Disctype.c44 digittoint(int c) in digittoint()
51 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()
100 ishexnumber(int c) in ishexnumber()
107 isideogram(int c) in isideogram()
[all …]
/freebsd-src/sys/contrib/ncsw/inc/
H A Dctype_ext.h56 #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-src/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()
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 …]
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()
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 …]
H A Demacs.c59 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-src/sys/contrib/openzfs/module/lua/
H A Dlctype.h50 #define testprop(c,p) (luai_ctype_[(lu_byte)(c)+1] & (p)) argument
55 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) argument
56 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) 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
60 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT)) argument
65 #define ltolower(c) ((c) | ('A' ^ 'a')) argument
81 #define lislalpha(c) (isalpha(c) || (c) == '_') argument
82 #define lislalnum(c) (isalnum(c) || (c) == '_') argument
[all …]
/freebsd-src/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-src/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-src/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
83 #define callout_deactivate(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
89 callout_init_rm(c,rm,flags) global() argument
91 callout_init_rw(c,rw,flags) global() argument
93 callout_pending(c) global() argument
96 callout_reset_sbt(c,sbt,pr,fn,arg,flags) global() argument
98 callout_reset_sbt_curcpu(c,sbt,pr,fn,arg,flags) global() argument
101 callout_reset_on(c,to_ticks,fn,arg,cpu) global() argument
104 callout_reset(c,on_tick,fn,arg) global() argument
106 callout_reset_curcpu(c,on_tick,fn,arg) global() argument
108 callout_schedule_sbt_on(c,sbt,pr,cpu,flags) global() argument
111 callout_schedule_sbt(c,sbt,pr,flags) global() argument
113 callout_schedule_sbt_curcpu(c,sbt,pr,flags) global() argument
117 callout_schedule_curcpu(c,on_tick) global() argument
119 callout_stop(c) global() argument
[all...]
/freebsd-src/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-src/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) argument
15 IS_UTF8_LEAD5(c) global() argument
16 IS_UTF8_LEAD6(c) global() argument
17 IS_UTF8_INVALID(c) global() argument
18 IS_UTF8_LEAD(c) global() argument
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DCharInfo.h42 return static_cast<unsigned char>(c) <= 127; in isASCII() argument
49 LLVM_READNONE inline bool isASCII(int64_t c) { return 0 <= c && c <= 127; } in isASCII() argument
46 isASCII(unsigned char c) isASCII() argument
50 isASCII(int64_t c) isASCII() argument
76 isHorizontalWhitespace(unsigned char c) isHorizontalWhitespace() argument
84 isVerticalWhitespace(unsigned char c) isVerticalWhitespace() argument
93 isWhitespace(unsigned char c) isWhitespace() argument
99 isDigit(unsigned char c) isDigit() argument
105 isLowercase(unsigned char c) isLowercase() argument
111 isUppercase(unsigned char c) isUppercase() argument
117 isLetter(unsigned char c) isLetter() argument
123 isAlphanumeric(unsigned char c) isAlphanumeric() argument
129 isHexDigit(unsigned char c) isHexDigit() argument
137 isPunctuation(unsigned char c) isPunctuation() argument
145 isPrintable(unsigned char c) isPrintable() argument
153 isPreprocessingNumberBody(unsigned char c) isPreprocessingNumberBody() argument
160 isRawStringDelimBody(unsigned char c) isRawStringDelimBody() argument
208 toLowercase(char c) toLowercase() argument
217 toUppercase(char c) toUppercase() argument
[all...]
/freebsd-src/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
267 #define ASCII_IS_LOWER(c) (c >= 0x61 && c <= 0x7A) 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()
[all …]
/freebsd-src/contrib/libfido2/regress/
H A Dcred.c1429 fido_cred_t *c; in alloc_cred() local
1438 free_cred(fido_cred_t *c) in free_cred()
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
[all …]
/freebsd-src/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-src/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-src/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-src/sys/powerpc/include/
H A Dpio.h181 __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 …]
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-src/sys/dev/sound/pcm/
H A Dchannel.c128 struct pcm_channel *c; in chn_vpc_proc() local
221 chn_lockinit(struct pcm_channel * c,int dir) chn_lockinit() argument
249 chn_lockdestroy(struct pcm_channel * c) chn_lockdestroy() argument
269 chn_polltrigger(struct pcm_channel * c) chn_polltrigger() argument
292 chn_pollreset(struct pcm_channel * c) chn_pollreset() argument
300 chn_wakeup(struct pcm_channel * c) chn_wakeup() argument
330 chn_sleep(struct pcm_channel * c,int timeout) chn_sleep() argument
354 chn_dmaupdate(struct pcm_channel * c) chn_dmaupdate() argument
390 chn_wrfeed(struct pcm_channel * c) chn_wrfeed() argument
437 chn_wrintr(struct pcm_channel * c) chn_wrintr() argument
457 chn_write(struct pcm_channel * c,struct uio * buf) chn_write() argument
524 chn_rdfeed(struct pcm_channel * c) chn_rdfeed() argument
567 chn_rdintr(struct pcm_channel * c) chn_rdintr() argument
587 chn_read(struct pcm_channel * c,struct uio * buf) chn_read() argument
644 chn_intr_locked(struct pcm_channel * c) chn_intr_locked() argument
658 chn_intr(struct pcm_channel * c) chn_intr() argument
672 chn_start(struct pcm_channel * c,int force) chn_start() argument
748 chn_resetbuf(struct pcm_channel * c) chn_resetbuf() argument
764 chn_sync(struct pcm_channel * c,int threshold) chn_sync() argument
895 chn_poll(struct pcm_channel * c,int ev,struct thread * td) chn_poll() argument
925 chn_abort(struct pcm_channel * c) chn_abort() argument
960 chn_flush(struct pcm_channel * c) chn_flush() argument
1127 chn_reset(struct pcm_channel * c,uint32_t fmt,uint32_t spd) chn_reset() argument
1164 struct pcm_channel *c; chn_init() local
1396 chn_kill(struct pcm_channel * c) chn_kill() argument
1422 chn_shutdown(struct pcm_channel * c) chn_shutdown() argument
1432 chn_release(struct pcm_channel * c) chn_release() argument
1446 chn_ref(struct pcm_channel * c,int ref) chn_ref() argument
1459 chn_setvolume_multi(struct pcm_channel * c,int vc,int left,int right,int center) chn_setvolume_multi() argument
1479 chn_setvolume_matrix(struct pcm_channel * c,int vc,int vt,int val) chn_setvolume_matrix() argument
1524 chn_getvolume_matrix(struct pcm_channel * c,int vc,int vt) chn_getvolume_matrix() argument
1537 chn_setmute_multi(struct pcm_channel * c,int vc,int mute) chn_setmute_multi() argument
1555 chn_setmute_matrix(struct pcm_channel * c,int vc,int vt,int mute) chn_setmute_matrix() argument
1593 chn_getmute_matrix(struct pcm_channel * c,int vc,int vt) chn_getmute_matrix() argument
1606 chn_getmatrix(struct pcm_channel * c) chn_getmatrix() argument
1619 chn_setmatrix(struct pcm_channel * c,struct pcmchan_matrix * m) chn_setmatrix() argument
1639 chn_oss_getorder(struct pcm_channel * c,unsigned long long * map) chn_oss_getorder() argument
1653 chn_oss_setorder(struct pcm_channel * c,unsigned long long * map) chn_oss_setorder() argument
1679 chn_oss_getmask(struct pcm_channel * c,uint32_t * retmask) chn_oss_getmask() argument
1721 chn_vpc_reset(struct pcm_channel * c,int vc,int force) chn_vpc_reset() argument
1915 chn_resizebuf(struct pcm_channel * c,int latency,int blkcnt,int blksz) chn_resizebuf() argument
2112 chn_setlatency(struct pcm_channel * c,int latency) chn_setlatency() argument
2120 chn_setblocksize(struct pcm_channel * c,int blkcnt,int blksz) chn_setblocksize() argument
2128 chn_setparam(struct pcm_channel * c,uint32_t format,uint32_t speed) chn_setparam() argument
2169 chn_setspeed(struct pcm_channel * c,uint32_t speed) chn_setspeed() argument
2198 chn_setformat(struct pcm_channel * c,uint32_t format) chn_setformat() argument
2227 chn_syncstate(struct pcm_channel * c) chn_syncstate() argument
2329 chn_trigger(struct pcm_channel * c,int go) chn_trigger() argument
2397 chn_getptr(struct pcm_channel * c) chn_getptr() argument
2407 chn_getcaps(struct pcm_channel * c) chn_getcaps() argument
2414 chn_getformats(struct pcm_channel * c) chn_getformats() argument
2432 chn_notify(struct pcm_channel * c,u_int32_t flags) chn_notify() argument
2659 chn_getrates(struct pcm_channel * c,int ** rates) chn_getrates() argument
2684 chn_syncdestroy(struct pcm_channel * c) chn_syncdestroy() argument
2716 chn_getpeaks(struct pcm_channel * c,int * lpeak,int * rpeak) chn_getpeaks() argument
[all...]
/freebsd-src/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>>...138