Home
last modified time | relevance | path

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

12345678910>>...139

/openbsd-src/gnu/lib/libreadline/
H A Dchardefs.h43 #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 …]
/openbsd-src/lib/libedit/
H A Dvi.c61 cv_action(EditLine *el, wint_t c) in cv_action()
93 cv_paste(EditLine *el, wint_t c) in cv_paste()
125 vi_paste_next(EditLine *el, wint_t c __attribute__((__unused__))) in vi_paste_next()
137 vi_paste_prev(EditLine *el, wint_t c __attribute__((__unused__))) in vi_paste_prev()
149 vi_prev_big_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_prev_big_word()
173 vi_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_prev_word()
197 vi_next_big_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_next_big_word()
220 vi_next_word(EditLine *el, wint_t c __attribute__((__unused__))) in vi_next_word()
243 vi_change_case(EditLine *el, wint_t c) in vi_change_case()
274 vi_change_meta(EditLine *el, wint_t c __attribute__((__unused__))) in vi_change_meta()
[all …]
H A Dcommon.c55 ed_end_of_file(EditLine *el, wint_t c __attribute__((__unused__))) in ed_end_of_file()
69 ed_insert(EditLine *el, wint_t c) in ed_insert()
111 ed_delete_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in ed_delete_prev_word()
138 ed_delete_next_char(EditLine *el, wint_t c) in ed_delete_next_char()
187 ed_kill_line(EditLine *el, wint_t c __attribute__((__unused__))) in ed_kill_line()
207 ed_move_to_end(EditLine *el, wint_t c __attribute__((__unused__))) in ed_move_to_end()
229 ed_move_to_beg(EditLine *el, wint_t c __attribute__((__unused__))) in ed_move_to_beg()
252 ed_transpose_chars(EditLine *el, wint_t c) in ed_transpose_chars()
277 ed_next_char(EditLine *el, wint_t c __attribute__((__unused__))) in ed_next_char()
305 ed_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in ed_prev_word()
[all …]
H A Demacs.c52 em_delete_or_list(EditLine *el, wint_t c) in em_delete_or_list()
87 em_delete_next_word(EditLine *el, wint_t c __attribute__((__unused__))) in em_delete_next_word()
115 em_yank(EditLine *el, wint_t c __attribute__((__unused__))) in em_yank()
150 em_kill_line(EditLine *el, wint_t c __attribute__((__unused__))) in em_kill_line()
171 em_kill_region(EditLine *el, wint_t c __attribute__((__unused__))) in em_kill_region()
203 em_copy_region(EditLine *el, wint_t c __attribute__((__unused__))) in em_copy_region()
232 em_gosmacs_transpose(EditLine *el, wint_t c) in em_gosmacs_transpose()
251 em_next_word(EditLine *el, wint_t c __attribute__((__unused__))) in em_next_word()
275 em_upper_case(EditLine *el, wint_t c __attribute__((__unused__))) in em_upper_case()
298 em_capitol_case(EditLine *el, wint_t c __attribute__((__unused__))) in em_capitol_case()
[all …]
/openbsd-src/lib/libc/locale/
H A Diswctype.c54 __runetype_w(wint_t c) in __runetype_w()
63 __isctype_w(wint_t c, _RuneType f) in __isctype_w()
69 __toupper_w(wint_t c) in __toupper_w()
75 __tolower_w(wint_t c) in __tolower_w()
81 iswalnum(wint_t c) in iswalnum()
87 iswalpha(wint_t c) in iswalpha()
93 iswblank(wint_t c) in iswblank()
99 iswcntrl(wint_t c) in iswcntrl()
105 iswdigit(wint_t c) in iswdigit()
111 iswgraph(wint_t c) in iswgraph()
[all …]
H A Disctype_l.c28 isalnum_l(int c, locale_t locale __attribute__((__unused__))) in isalnum_l()
35 isalpha_l(int c, locale_t locale __attribute__((__unused__))) in isalpha_l()
42 isblank_l(int c, locale_t locale __attribute__((__unused__))) in isblank_l()
49 iscntrl_l(int c, locale_t locale __attribute__((__unused__))) in iscntrl_l()
56 isdigit_l(int c, locale_t locale __attribute__((__unused__))) in isdigit_l()
63 isgraph_l(int c, locale_t locale __attribute__((__unused__))) in isgraph_l()
70 islower_l(int c, locale_t locale __attribute__((__unused__))) in islower_l()
77 isprint_l(int c, locale_t locale __attribute__((__unused__))) in isprint_l()
84 ispunct_l(int c, locale_t locale __attribute__((__unused__))) in ispunct_l()
91 isspace_l(int c, locale_t locale __attribute__((__unused__))) in isspace_l()
[all …]
H A Diswctype_l.c72 __isctype_wl(wint_t c, _RuneType f, locale_t locale) in __isctype_wl()
83 iswalnum_l(wint_t c, locale_t locale) in iswalnum_l()
89 iswalpha_l(wint_t c, locale_t locale) in iswalpha_l()
95 iswblank_l(wint_t c, locale_t locale) in iswblank_l()
101 iswcntrl_l(wint_t c, locale_t locale) in iswcntrl_l()
107 iswdigit_l(wint_t c, locale_t locale) in iswdigit_l()
113 iswgraph_l(wint_t c, locale_t locale) in iswgraph_l()
119 iswlower_l(wint_t c, locale_t locale) in iswlower_l()
125 iswprint_l(wint_t c, locale_t locale) in iswprint_l()
131 iswpunct_l(wint_t c, locale_t locale) in iswpunct_l()
[all …]
/openbsd-src/lib/libc/gen/
H A Disctype.c42 isalnum(int c) in isalnum()
51 isalpha(int c) in isalpha()
60 isblank(int c) in isblank()
68 iscntrl(int c) in iscntrl()
76 isdigit(int c) in isdigit()
84 isgraph(int c) in isgraph()
93 islower(int c) in islower()
101 isprint(int c) in isprint()
110 ispunct(int c) in ispunct()
118 isspace(int c) in isspace()
[all …]
/openbsd-src/gnu/gcc/include/
H A Dsafe-ctype.h91 #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 …]
/openbsd-src/gnu/usr.bin/binutils-2.17/include/
H A Dsafe-ctype.h91 #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 …]
/openbsd-src/gnu/lib/libiberty/include/
H A Dsafe-ctype.h91 #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 …]
/openbsd-src/gnu/usr.bin/binutils/include/
H A Dsafe-ctype.h91 #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 …]
/openbsd-src/sys/sys/
H A Dconf.h75 ((c) > 0 ? __CONCAT(n,t) : (__CONCAT(dev_type_,t)((*))) enxio) argument
113 dev_init(c,n,open), dev_init(c,n,close), \ argument
107 dev_size_init(c,n) global() argument
118 bdev_swap_init(c,n) global() argument
170 cdev_disk_init(c,n) global() argument
177 cdev_tape_init(c,n) global() argument
184 cdev_tty_init(c,n) global() argument
191 cdev_mouse_init(c,n) global() argument
204 cdev_cn_init(c,n) global() argument
211 cdev_ctty_init(c,n) global() argument
218 cdev_mm_init(c,n) global() argument
225 cdev_ptc_init(c,n) global() argument
232 cdev_ptm_init(c,n) global() argument
238 cdev_log_init(c,n) global() argument
245 cdev_fd_init(c,n) global() argument
252 cdev_tun_init(c,n) global() argument
259 cdev_vscsi_init(c,n) global() argument
267 cdev_pppx_init(c,n) global() argument
274 cdev_bpf_init(c,n) global() argument
281 cdev_ch_init(c,n) global() argument
288 cdev_uk_init(c,n) global() argument
295 cdev_fb_init(c,n) global() argument
302 cdev_audio_init(c,n) global() argument
309 cdev_midi_init(c,n) global() argument
316 cdev_ksyms_init(c,n) global() argument
323 cdev_kstat_init(c,n) global() argument
330 cdev_wsdisplay_init(c,n) global() argument
337 cdev_random_init(c,n) global() argument
344 cdev_usb_init(c,n) global() argument
351 cdev_ulpt_init(c,n) global() argument
357 cdev_pf_init(c,n) global() argument
364 cdev_usbdev_init(c,n) global() argument
371 cdev_fido_init(c,n) global() argument
378 cdev_ujoy_init(c,n) global() argument
385 cdev_pci_init(c,n) global() argument
392 cdev_radio_init(c,n) global() argument
399 cdev_video_init(c,n) global() argument
406 cdev_spkr_init(c,n) global() argument
413 cdev_lpt_init(c,n) global() argument
420 cdev_bktr_init(c,n) global() argument
427 cdev_hotplug_init(c,n) global() argument
434 cdev_gpio_init(c,n) global() argument
441 cdev_bio_init(c,n) global() argument
448 cdev_drm_init(c,n) global() argument
455 cdev_amdmsr_init(c,n) global() argument
462 cdev_fuse_init(c,n) global() argument
469 cdev_pvbus_init(c,n) global() argument
478 cdev_ipmi_init(c,n) global() argument
485 cdev_efi_init(c,n) global() argument
492 cdev_kcov_init(c,n) global() argument
499 cdev_dt_init(c,n) global() argument
[all...]
/openbsd-src/bin/ksh/
H A Demacs.c53 #define is_cfs(c) (c == ' ' || c == '\t' || c == '"' || c == '\'') argument
56 #define is_mfs(c) (!(isalnum((unsigned char)c) || \ argument
269 isu8cont(unsigned char c) in isu8cont()
404 x_insert(int c) in x_insert()
423 x_ins_string(int c) in x_ins_string()
470 x_del_back(int c) in x_del_back()
488 x_del_char(int c) in x_del_char()
561 x_del_bword(int c) in x_del_bword()
568 x_mv_bword(int c) in x_mv_bword()
575 x_mv_fword(int c) in x_mv_fword()
[all …]
/openbsd-src/usr.bin/ssh/
H A Dnchan.c91 chan_set_istate(Channel *c, u_int next) in chan_set_istate() argument
101 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate() argument
111 chan_read_failed(struct ssh * ssh,Channel * c) chan_read_failed() argument
127 chan_ibuf_empty(struct ssh * ssh,Channel * c) chan_ibuf_empty() argument
149 chan_obuf_empty(struct ssh * ssh,Channel * c) chan_obuf_empty() argument
170 chan_rcvd_eow(struct ssh * ssh,Channel * c) chan_rcvd_eow() argument
182 chan_send_eof2(struct ssh * ssh,Channel * c) chan_send_eof2() argument
205 chan_send_close2(struct ssh * ssh,Channel * c) chan_send_close2() argument
228 chan_send_eow2(struct ssh * ssh,Channel * c) chan_send_eow2() argument
253 chan_rcvd_ieof(struct ssh * ssh,Channel * c) chan_rcvd_ieof() argument
266 chan_rcvd_oclose(struct ssh * ssh,Channel * c) chan_rcvd_oclose() argument
306 chan_write_failed(struct ssh * ssh,Channel * c) chan_write_failed() argument
325 chan_mark_dead(struct ssh * ssh,Channel * c) chan_mark_dead() argument
331 chan_is_dead(struct ssh * ssh,Channel * c,int do_send) chan_is_dead() argument
373 chan_shutdown_write(struct ssh * ssh,Channel * c) chan_shutdown_write() argument
398 chan_shutdown_read(struct ssh * ssh,Channel * c) chan_shutdown_read() argument
421 chan_shutdown_extended_read(struct ssh * ssh,Channel * c) chan_shutdown_extended_read() argument
[all...]
/openbsd-src/bin/csh/
H A Dchar.h55 #define cmap(c, bits) \ argument
58 #define isglob(c) cmap(c, _GLOB) argument
59 #define letter(c) (((c) & QUOTE) ? 0 : \ argument
61 #define alnum(c) (((c) & QUOTE) ? 0 : \ argument
63 #define Isspace(c) (((c) & QUOTE) ? 0 : isspace((unsigned char) (c))) argument
64 #define Isdigit(c) (((c) & QUOTE) ? 0 : isdigit((unsigned char) (c))) argument
65 #define Isalpha(c) (((c) & QUOTE) ? 0 : isalpha((unsigned char) (c))) argument
66 #define Islower(c) (((c) & QUOTE) ? 0 : islower((unsigned char) (c))) argument
67 #define Isupper(c) (((c) & QUOTE) ? 0 : isupper((unsigned char) (c))) argument
68 #define Tolower(c) (((c) & QUOTE) ? 0 : tolower((unsigned char) (c))) argument
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DCharInfo.h42 LLVM_READNONE inline bool isASCII(char c) { in isASCII()
46 LLVM_READNONE inline bool isASCII(unsigned char c) { return c <= 127; } in isASCII()
49 LLVM_READNONE inline bool isASCII(uint32_t c) { return c <= 127; } in isASCII()
50 LLVM_READNONE inline bool isASCII(int64_t c) { return 0 <= c && c <= 127; } in isASCII()
76 LLVM_READONLY inline bool isHorizontalWhitespace(unsigned char c) { in isHorizontalWhitespace()
84 LLVM_READONLY inline bool isVerticalWhitespace(unsigned char c) { in isVerticalWhitespace()
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()
[all …]
/openbsd-src/gnu/usr.bin/perl/
H A Dhandy.h743 #define memCHRs(s1,c) ((const char *) memchr(ASSERT_IS_LITERAL(s1) , c, sizeof(s1)-1)) argument
1456 FITS_IN_8_BITS(c) global() argument
1459 FITS_IN_8_BITS(c) global() argument
1467 withinCOUNT(c,l,n) global() argument
1476 withinCOUNT_KNOWN_VALID_(c,l,n) global() argument
1483 inRANGE(c,l,u) global() argument
1493 inRANGE_helper_(cast,c,l,u) global() argument
1513 isASCII(c) global() argument
1519 isOCTAL_A(c) global() argument
1623 generic_isCC_(c,classnum) global() argument
1633 generic_isCC_A_(c,classnum) global() argument
1640 isALPHA_A(c) global() argument
1641 isGRAPH_A(c) global() argument
1642 isLOWER_A(c) global() argument
1643 isPRINT_A(c) global() argument
1644 isUPPER_A(c) global() argument
1653 isALPHANUMERIC_A(c) global() argument
1654 isBLANK_A(c) global() argument
1655 isCNTRL_A(c) global() argument
1656 isDIGIT_A(c) global() argument
1657 isPUNCT_A(c) global() argument
1658 isSPACE_A(c) global() argument
1659 isWORDCHAR_A(c) global() argument
1660 isXDIGIT_A(c) global() argument
1661 isIDFIRST_A(c) global() argument
1662 isALPHA_L1(c) global() argument
1663 isALPHANUMERIC_L1(c) global() argument
1664 isBLANK_L1(c) global() argument
1667 isCHARNAME_CONT(c) global() argument
1669 isCNTRL_L1(c) global() argument
1670 isGRAPH_L1(c) global() argument
1671 isLOWER_L1(c) global() argument
1672 isPRINT_L1(c) global() argument
1673 isPSXSPC_L1(c) global() argument
1674 isPUNCT_L1(c) global() argument
1675 isSPACE_L1(c) global() argument
1676 isUPPER_L1(c) global() argument
1677 isWORDCHAR_L1(c) global() argument
1678 isIDFIRST_L1(c) global() argument
1681 isASCII(c) global() argument
1686 HAS_NONLATIN1_SIMPLE_FOLD_CLOSURE(c) global() argument
1690 IS_NON_FINAL_FOLD(c) global() argument
1691 IS_IN_SOME_FOLD_L1(c) global() argument
1695 HAS_NONLATIN1_FOLD_CLOSURE(c) global() argument
1699 _isQUOTEMETA(c) global() argument
1703 isMNEMONIC_CNTRL(c) global() argument
1845 isALPHANUMERIC(c) global() argument
1846 isALPHA(c) global() argument
1847 isASCII_A(c) global() argument
1848 isASCII_L1(c) global() argument
1849 isBLANK(c) global() argument
1850 isCNTRL(c) global() argument
1851 isDIGIT(c) global() argument
1852 isGRAPH(c) global() argument
1853 isIDFIRST(c) global() argument
1854 isLOWER(c) global() argument
1855 isPRINT(c) global() argument
1856 isPSXSPC_A(c) global() argument
1857 isPSXSPC(c) global() argument
1858 isPSXSPC_L1(c) global() argument
1859 isPUNCT(c) global() argument
1860 isSPACE(c) global() argument
1861 isUPPER(c) global() argument
1862 isWORDCHAR(c) global() argument
1863 isXDIGIT(c) global() argument
1874 toLOWER(c) global() argument
1875 toUPPER(c) global() argument
1881 toFOLD(c) global() argument
1882 toTITLE(c) global() argument
1884 toLOWER_A(c) global() argument
1885 toUPPER_A(c) global() argument
1886 toFOLD_A(c) global() argument
1887 toTITLE_A(c) global() argument
1890 toLOWER_LATIN1(c) global() argument
1893 toLOWER_L1(c) global() argument
1898 toUPPER_LATIN1_MOD(c) global() argument
1919 generic_LC_base_(c,classnum,non_utf8_func) global() argument
1929 generic_LC_(c,classnum,non_utf8_func) global() argument
1950 is_posix_ASCII(c) global() argument
1956 is_posix_BLANK(c) global() argument
1962 is_posix_CNTRL(c) global() argument
1963 is_posix_IDFIRST(c) global() argument
1964 is_posix_SPACE(c) global() argument
1965 is_posix_WORDCHAR(c) global() argument
1968 to_posix_LOWER(c) global() argument
1969 to_posix_UPPER(c) global() argument
1970 to_posix_FOLD(c) global() argument
1984 is_posix_ALPHA(c) global() argument
1986 is_posix_ALPHANUMERIC(c) global() argument
1988 is_posix_CASED(c) global() argument
1990 is_posix_DIGIT(c) global() argument
1992 is_posix_GRAPH(c) global() argument
1994 is_posix_LOWER(c) global() argument
1996 is_posix_PRINT(c) global() argument
1998 is_posix_PUNCT(c) global() argument
2000 is_posix_UPPER(c) global() argument
2002 is_posix_XDIGIT(c) global() argument
2040 WRAP_U8_LC_(c,classnum,posix) global() argument
2042 isU8_ALPHANUMERIC_LC(c) global() argument
2044 isU8_ALPHA_LC(c) global() argument
2045 isU8_ASCII_LC(c) global() argument
2046 isU8_BLANK_LC(c) global() argument
2047 isU8_CASED_LC(c) global() argument
2048 isU8_CNTRL_LC(c) global() argument
2049 isU8_DIGIT_LC(c) global() argument
2050 isU8_GRAPH_LC(c) global() argument
2051 isU8_IDFIRST_LC(c) global() argument
2052 isU8_LOWER_LC(c) global() argument
2053 isU8_PRINT_LC(c) global() argument
2054 isU8_PUNCT_LC(c) global() argument
2055 isU8_SPACE_LC(c) global() argument
2056 isU8_UPPER_LC(c) global() argument
2057 isU8_WORDCHAR_LC(c) global() argument
2058 isU8_XDIGIT_LC(c) global() argument
2060 toU8_LOWER_LC(c) global() argument
2061 toU8_UPPER_LC(c) global() argument
2062 toU8_FOLD_LC(c) global() argument
2071 isASCII_LC(c) global() argument
2072 isALPHA_LC(c) global() argument
2073 isALPHANUMERIC_LC(c) global() argument
2075 isBLANK_LC(c) global() argument
2076 isCASED_LC(c) global() argument
2077 isCNTRL_LC(c) global() argument
2078 isDIGIT_LC(c) global() argument
2079 isGRAPH_LC(c) global() argument
2080 isIDFIRST_LC(c) global() argument
2081 isLOWER_LC(c) global() argument
2082 isPRINT_LC(c) global() argument
2083 isPUNCT_LC(c) global() argument
2084 isSPACE_LC(c) global() argument
2085 isUPPER_LC(c) global() argument
2086 isWORDCHAR_LC(c) global() argument
2087 isXDIGIT_LC(c) global() argument
2090 toLOWER_LC(c) global() argument
2091 toUPPER_LC(c) global() argument
2092 toFOLD_LC(c) global() argument
2139 isIDCONT(c) global() argument
2140 isIDCONT_A(c) global() argument
2141 isIDCONT_L1(c) global() argument
2142 isIDCONT_LC(c) global() argument
2143 isPSXSPC_LC(c) global() argument
2159 generic_uvchr_(classnum,above_latin1,c) global() argument
2162 generic_invlist_uvchr_(classnum,c) global() argument
2165 isALPHA_uvchr(c) global() argument
2166 isALPHANUMERIC_uvchr(c) global() argument
2167 isASCII_uvchr(c) global() argument
2168 isBLANK_uvchr(c) global() argument
2169 isCNTRL_uvchr(c) global() argument
2170 isDIGIT_uvchr(c) global() argument
2171 isGRAPH_uvchr(c) global() argument
2172 isIDCONT_uvchr(c) global() argument
2174 isIDFIRST_uvchr(c) global() argument
2176 isLOWER_uvchr(c) global() argument
2177 isPRINT_uvchr(c) global() argument
2179 isPUNCT_uvchr(c) global() argument
2180 isSPACE_uvchr(c) global() argument
2181 isPSXSPC_uvchr(c) global() argument
2183 isUPPER_uvchr(c) global() argument
2184 isVERTWS_uvchr(c) global() argument
2185 isWORDCHAR_uvchr(c) global() argument
2186 isXDIGIT_uvchr(c) global() argument
2188 toFOLD_uvchr(c,s,l) global() argument
2189 toLOWER_uvchr(c,s,l) global() argument
2190 toTITLE_uvchr(c,s,l) global() argument
2191 toUPPER_uvchr(c,s,l) global() argument
2195 isALPHA_uni(c) global() argument
2196 isALPHANUMERIC_uni(c) global() argument
2197 isASCII_uni(c) global() argument
2198 isBLANK_uni(c) global() argument
2199 isCNTRL_uni(c) global() argument
2200 isDIGIT_uni(c) global() argument
2201 isGRAPH_uni(c) global() argument
2202 isIDCONT_uni(c) global() argument
2203 isIDFIRST_uni(c) global() argument
2204 isLOWER_uni(c) global() argument
2205 isPRINT_uni(c) global() argument
2206 isPUNCT_uni(c) global() argument
2207 isSPACE_uni(c) global() argument
2208 isPSXSPC_uni(c) global() argument
2209 isUPPER_uni(c) global() argument
2210 isVERTWS_uni(c) global() argument
2211 isWORDCHAR_uni(c) global() argument
2212 isXDIGIT_uni(c) global() argument
2213 toFOLD_uni(c,s,l) global() argument
2214 toLOWER_uni(c,s,l) global() argument
2215 toTITLE_uni(c,s,l) global() argument
2216 toUPPER_uni(c,s,l) global() argument
2223 generic_LC_uvchr_(latin1,above_latin1,c) global() argument
2225 generic_LC_invlist_uvchr_(latin1,classnum,c) global() argument
2228 isALPHA_LC_uvchr(c) global() argument
2229 isALPHANUMERIC_LC_uvchr(c) global() argument
2231 isASCII_LC_uvchr(c) global() argument
2232 isBLANK_LC_uvchr(c) global() argument
2234 isCNTRL_LC_uvchr(c) global() argument
2235 isDIGIT_LC_uvchr(c) global() argument
2236 isGRAPH_LC_uvchr(c) global() argument
2237 isIDCONT_LC_uvchr(c) global() argument
2239 isIDFIRST_LC_uvchr(c) global() argument
2241 isLOWER_LC_uvchr(c) global() argument
2242 isPRINT_LC_uvchr(c) global() argument
2243 isPSXSPC_LC_uvchr(c) global() argument
2244 isPUNCT_LC_uvchr(c) global() argument
2245 isSPACE_LC_uvchr(c) global() argument
2247 isUPPER_LC_uvchr(c) global() argument
2248 isWORDCHAR_LC_uvchr(c) global() argument
2250 isXDIGIT_LC_uvchr(c) global() argument
2253 isBLANK_LC_uni(c) global() argument
2493 isALPHAU(c) global() argument
2494 isDIGIT_L1(c) global() argument
2495 isOCTAL(c) global() argument
2496 isOCTAL_L1(c) global() argument
2497 isXDIGIT_L1(c) global() argument
2498 isALNUM(c) global() argument
2499 isALNUM_A(c) global() argument
2500 isALNUMU(c) global() argument
2501 isALNUM_LC(c) global() argument
2502 isALNUM_uni(c) global() argument
2503 isALNUM_LC_uvchr(c) global() argument
2508 isALNUMC_A(c) global() argument
2509 isALNUMC_L1(c) global() argument
2510 isALNUMC(c) global() argument
2511 isALNUMC_LC(c) global() argument
2512 isALNUMC_uni(c) global() argument
2513 isALNUMC_LC_uvchr(c) global() argument
2528 toCTRL(c) global() argument
2559 BADVERSION(a,b,c) global() argument
2574 XDIGIT_VALUE(c) global() argument
2585 OCTAL_VALUE(c) global() argument
2850 Newxc(v,n,t,c) global() argument
2856 Newc(x,v,n,t,c) global() argument
2862 Renewc(v,n,t,c) global() argument
[all...]
/openbsd-src/usr.bin/tmux/
H A Dcontrol-notify.c26 #define CONTROL_SHOULD_NOTIFY_CLIENT(c) \ argument
32 struct client *c; in control_notify_pane_mode_changed() local
45 struct client *c; in control_notify_window_layout_changed() local
82 struct client *c; in control_notify_window_pane_changed() local
96 struct client *c; in control_notify_window_unlinked() local
114 struct client *c; in control_notify_window_linked() local
132 struct client *c; in control_notify_window_renamed() local
153 struct client *c; in control_notify_client_session_changed() local
177 struct client *c; in control_notify_client_detached() local
188 struct client *c; in control_notify_session_renamed() local
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/bfd/
H A Drs6000-core.c137 # define CORE_NEW(c) (!(c).old.c_entries) argument
139 # define CORE_NEW(c) 0 argument
145 # define CNEW_STACKORG(c) (c).c_stackorg argument
147 # define CNEW_STACKORG(c) 0 argument
153 # define CNEW_LOADER(c) (c).c_loader argument
155 # define CNEW_LOADER(c) 0 argument
160 #define COLD_LOADER(c) (c).c_tab argument
165 # define CNEW_LSIZE(c) (c).c_lsize argument
167 # define CNEW_LSIZE(c) 0 argument
173 # define CNEW_DATAORG(c) (c).c_dataorg argument
[all …]
/openbsd-src/gnu/usr.bin/binutils/bfd/
H A Drs6000-core.c134 # define CORE_NEW(c) (!(c).old.c_entries) argument
136 # define CORE_NEW(c) 0 argument
142 # define CNEW_STACKORG(c) (c).c_stackorg argument
144 # define CNEW_STACKORG(c) 0 argument
150 # define CNEW_LOADER(c) (c).c_loader argument
152 # define CNEW_LOADER(c) 0 argument
157 #define COLD_LOADER(c) (c).c_tab argument
162 # define CNEW_LSIZE(c) (c).c_lsize argument
164 # define CNEW_LSIZE(c) 0 argument
170 # define CNEW_DATAORG(c) (c).c_dataorg argument
[all …]
/openbsd-src/usr.sbin/iscsid/
H A Dconnection.c57 struct connection *c; in conn_new() local
109 conn_free(struct connection * c) conn_free() argument
130 struct connection *c = arg; conn_dispatch() local
156 struct connection *c = arg; conn_write_dispatch() local
196 conn_fail(struct connection * c) conn_fail() argument
203 conn_task_ready(struct connection * c) conn_task_ready() argument
211 conn_task_issue(struct connection * c,struct task * t) conn_task_issue() argument
218 conn_task_schedule(struct connection * c) conn_task_schedule() argument
242 conn_task_cleanup(struct connection * c,struct task * t) conn_task_cleanup() argument
283 conn_parse_kvp(struct connection * c,struct kvp * kvp) conn_parse_kvp() argument
320 conn_gen_kvp(struct connection * c,struct kvp * kvp,size_t * nkvp) conn_gen_kvp() argument
358 conn_pdu_write(struct connection * c,struct pdu * p) conn_pdu_write() argument
409 conn_fsm(struct connection * c,enum c_event event) conn_fsm() argument
435 c_do_connect(struct connection * c,enum c_event ev) c_do_connect() argument
471 c_do_login(struct connection * c,enum c_event ev) c_do_login() argument
479 c_do_loggedin(struct connection * c,enum c_event ev) c_do_loggedin() argument
488 c_do_req_logout(struct connection * c,enum c_event ev) c_do_req_logout() argument
499 c_do_logout(struct connection * c,enum c_event ev) c_do_logout() argument
506 c_do_loggedout(struct connection * c,enum c_event ev) c_do_loggedout() argument
516 c_do_fail(struct connection * c,enum c_event ev) c_do_fail() argument
538 c_do_cleanup(struct connection * c,enum c_event ev) c_do_cleanup() argument
[all...]
/openbsd-src/gnu/usr.bin/texinfo/makeinfo/
H A Dmakeinfo.h242 #define coerce_to_upper(c) ((islower(c) ? toupper(c) : (c))) argument
243 #define coerce_to_lower(c) ((isupper(c) ? tolower(c) : (c))) argument
247 #define CTL(c) ((c) & (~control_character_bit)) argument
248 #define UNCTL(c) coerce_to_upper(((c)|control_character_bit)) argument
249 #define META(c) ((c) | (meta_character_bit)) argument
250 #define UNMETA(c) ((c) & (~meta_character_bit)) argument
252 #define whitespace(c) ((c) == '\t' || (c) == ' ') argument
253 #define sentence_ender(c) ((c) == '.' || (c) == '?' || (c) == '!') argument
254 #define cr_or_whitespace(c) (whitespace(c) || (c) == '\r' || (c) == '\n') argument
257 #define isletter(c) (((c) >= 'A' && (c) <= 'Z') || ((c) >= 'a' && (c) <= 'z')) argument
[all …]
/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dia64-opc-m.c52 #define OpX3X6b(a,b,c) (bOp (a) | bX3 (b) | bX6b (c)), \ argument
54 #define OpX3X6bX7(a,b,c,d) (bOp (a) | bX3 (b) | bX6b (c) | bX7 (d)), \ argument
56 #define OpX3X4(a,b,c) (bOp (a) | bX3 (b) | bX4 (c)), \ argument
58 #define OpX3X4X2(a,b,c,d) (bOp (a) | bX3 (b) | bX4 (c) | bX2 (d)), \ argument
60 #define OpX3X4X2Y(a,b,c,d,e) (bOp (a) | bX3 (b) | bX4 (c) | bX2 (d) | bY (e)), \ argument
62 #define OpX6aHint(a,b,c) (bOp (a) | bX6a (b) | bHint (c)), \ argument
64 #define OpXX6aHint(a,b,c,d) (bOp (a) | bX (b) | bX6a (c) | bHint (d)), \ argument
66 #define OpMXX6a(a,b,c,d) \ argument
68 #define OpMXX6aHint(a,b,c,d,e) \ argument
289 #define LDINCREG(c,h) M, OpMXX6aHint (4, 1, 0, c, h), {R1, MR3, R2}, POSTINC, 0, NULL argument
[all …]
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dia64-opc-m.c52 #define OpX3X6b(a,b,c) (bOp (a) | bX3 (b) | bX6b (c)), \ argument
54 #define OpX3X6bX7(a,b,c,d) (bOp (a) | bX3 (b) | bX6b (c) | bX7 (d)), \ argument
56 #define OpX3X4(a,b,c) (bOp (a) | bX3 (b) | bX4 (c)), \ argument
58 #define OpX3X4X2(a,b,c,d) (bOp (a) | bX3 (b) | bX4 (c) | bX2 (d)), \ argument
60 #define OpX3X4X2Y(a,b,c,d,e) (bOp (a) | bX3 (b) | bX4 (c) | bX2 (d) | bY (e)), \ argument
62 #define OpX6aHint(a,b,c) (bOp (a) | bX6a (b) | bHint (c)), \ argument
64 #define OpXX6aHint(a,b,c,d) (bOp (a) | bX (b) | bX6a (c) | bHint (d)), \ argument
66 #define OpMXX6a(a,b,c,d) \ argument
68 #define OpMXX6aHint(a,b,c,d,e) \ argument
296 #define LDINCREG(c,h) M, OpMXX6aHint (4, 1, 0, c, h), {R1, MR3, R2}, POSTINC, 0, NULL argument
[all …]

12345678910>>...139