| /netbsd/src/external/gpl3/binutils/dist/include/ |
| D | safe-ctype.h | 87 #define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit)) argument 89 #define ISALPHA(c) _sch_test(c, _sch_isalpha) argument 90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) argument 91 #define ISBLANK(c) _sch_test(c, _sch_isblank) argument 92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl) argument 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) argument 94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) argument 95 #define ISLOWER(c) _sch_test(c, _sch_islower) argument 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) argument 97 #define ISPUNCT(c) _sch_test(c, _sch_ispunct) argument [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/include/ |
| D | safe-ctype.h | 87 #define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit)) argument 89 #define ISALPHA(c) _sch_test(c, _sch_isalpha) argument 90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) argument 91 #define ISBLANK(c) _sch_test(c, _sch_isblank) argument 92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl) argument 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) argument 94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) argument 95 #define ISLOWER(c) _sch_test(c, _sch_islower) argument 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) argument 97 #define ISPUNCT(c) _sch_test(c, _sch_ispunct) argument [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/include/ |
| D | safe-ctype.h | 87 #define _sch_test(c, bit) (_sch_istable[(c) & 0xff] & (unsigned short)(bit)) argument 89 #define ISALPHA(c) _sch_test(c, _sch_isalpha) argument 90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) argument 91 #define ISBLANK(c) _sch_test(c, _sch_isblank) argument 92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl) argument 93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) argument 94 #define ISGRAPH(c) _sch_test(c, _sch_isgraph) argument 95 #define ISLOWER(c) _sch_test(c, _sch_islower) argument 96 #define ISPRINT(c) _sch_test(c, _sch_isprint) argument 97 #define ISPUNCT(c) _sch_test(c, _sch_ispunct) argument [all …]
|
| /netbsd/src/bin/csh/ |
| D | char.h | 63 #define cmap(c, bits) \ argument 66 #define isglob(c) cmap(c, _GLOB) argument 67 #define isspc(c) cmap(c, _SP) argument 68 #define ismeta(c) cmap(c, _META) argument 69 #define iscmdmeta(c) cmap(c, _CMD) argument 70 #define letter(c) (((c) & QUOTE) ? 0 : \ argument 72 #define alnum(c) (((c) & QUOTE) ? 0 : \ argument 75 #define Isspace(c) (((c) & QUOTE) ? 0 : isspace((unsigned char) (c))) argument 76 #define Isdigit(c) (((c) & QUOTE) ? 0 : isdigit((unsigned char) (c))) argument 77 #define Isalpha(c) (((c) & QUOTE) ? 0 : isalpha((unsigned char) (c))) argument [all …]
|
| /netbsd/src/sys/sys/ |
| D | ctype_inline.h | 48 #define isalnum(c) ((int)((_ctype_tab_ + 1)[(c)] & (_CTYPE_A|_CTYPE_D))) argument 49 #define isalpha(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_A)) argument 50 #define iscntrl(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_C)) argument 51 #define isdigit(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_D)) argument 52 #define isgraph(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_G)) argument 53 #define islower(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_L)) argument 54 #define isprint(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_R)) argument 55 #define ispunct(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_P)) argument 56 #define isspace(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_S)) argument 57 #define isupper(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_U)) argument [all …]
|
| D | common_int_const.h | 39 #define __int_join_(c,suffix) c ## suffix argument 40 #define __int_join(c,suffix) __int_join_(c,suffix) argument 47 #define INT8_C(c) __int_join(c, __INT8_C_SUFFIX__) argument 48 #define INT16_C(c) __int_join(c, __INT16_C_SUFFIX__) argument 49 #define INT32_C(c) __int_join(c, __INT32_C_SUFFIX__) argument 50 #define INT64_C(c) __int_join(c, __INT64_C_SUFFIX__) argument 52 #define UINT8_C(c) __int_join(c, __UINT8_C_SUFFIX__) argument 53 #define UINT16_C(c) __int_join(c, __UINT16_C_SUFFIX__) argument 54 #define UINT32_C(c) __int_join(c, __UINT32_C_SUFFIX__) argument 55 #define UINT64_C(c) __int_join(c, __UINT64_C_SUFFIX__) argument [all …]
|
| /netbsd/src/sys/arch/sparc/include/ |
| D | int_const.h | 44 #define INT8_C(c) c argument 45 #define INT16_C(c) c argument 46 #define INT32_C(c) c argument 48 #define INT64_C(c) c ## L argument 50 #define INT64_C(c) c ## LL argument 53 #define UINT8_C(c) c argument 54 #define UINT16_C(c) c argument 55 #define UINT32_C(c) c ## U argument 57 #define UINT64_C(c) c ## UL argument 59 #define UINT64_C(c) c ## ULL argument [all …]
|
| /netbsd/src/sys/arch/powerpc/include/ |
| D | int_const.h | 44 #define INT8_C(c) c argument 45 #define INT16_C(c) c argument 46 #define INT32_C(c) c argument 48 #define INT64_C(c) c ## L argument 50 #define INT64_C(c) c ## LL argument 53 #define UINT8_C(c) c argument 54 #define UINT16_C(c) c argument 55 #define UINT32_C(c) c ## U argument 57 #define UINT64_C(c) c ## UL argument 59 #define UINT64_C(c) c ## ULL argument [all …]
|
| /netbsd/src/sys/arch/arm/include/ |
| D | int_const.h | 44 #define INT8_C(c) c argument 45 #define INT16_C(c) c argument 46 #define INT32_C(c) c argument 48 #define INT64_C(c) c ## L argument 50 #define INT64_C(c) c ## LL argument 53 #define UINT8_C(c) c argument 54 #define UINT16_C(c) c argument 55 #define UINT32_C(c) c ## U argument 57 #define UINT64_C(c) c ## UL argument 59 #define UINT64_C(c) c ## ULL argument [all …]
|
| /netbsd/src/sys/arch/mips/include/ |
| D | int_const.h | 44 #define INT8_C(c) c argument 45 #define INT16_C(c) c argument 46 #define INT32_C(c) c argument 48 #define INT64_C(c) c ## L argument 50 #define INT64_C(c) c ## LL argument 53 #define UINT8_C(c) c argument 54 #define UINT16_C(c) c argument 55 #define UINT32_C(c) c ## U argument 57 #define UINT64_C(c) c ## UL argument 59 #define UINT64_C(c) c ## ULL argument [all …]
|
| /netbsd/src/external/lgpl3/gmp/dist/tests/cxx/ |
| D | t-binary.cc | 38 mpz_class c(a + b); ASSERT_ALWAYS(c == 3); in check_mpz() local 42 mpz_class c; in check_mpz() local 47 mpz_class c; in check_mpz() local 56 mpz_class c(a - b); ASSERT_ALWAYS(c == -2); in check_mpz() local 61 mpz_class c; in check_mpz() local 67 mpz_class c(a + b); ASSERT_ALWAYS(c == 5); in check_mpz() local 80 mpz_class c(b / a); ASSERT_ALWAYS(c == 3); in check_mpz() local 95 mpz_class c(a * (-b)); ASSERT_ALWAYS(c == -12); in check_mpz() local 102 mpz_class a(3), b(2), c(1); in check_mpz() local 113 mpz_class c((-a) << b); ASSERT_ALWAYS(c == 20); in check_mpz() local [all …]
|
| D | t-ops.cc | 98 mpz_class c; in check_mpz() local 104 mpz_class c; in check_mpz() local 110 mpz_class c; in check_mpz() local 117 mpz_class c; in check_mpz() local 124 mpz_class c; in check_mpz() local 130 mpz_class c; in check_mpz() local 137 mpz_class c; in check_mpz() local 145 mpz_class c; in check_mpz() local 151 mpz_class c; in check_mpz() local 160 mpz_class c; in check_mpz() local [all …]
|
| /netbsd/src/lib/libedit/ |
| D | 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 …]
|
| D | 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() 239 ed_move_to_beg(EditLine *el, wint_t c __attribute__((__unused__))) in ed_move_to_beg() 262 ed_transpose_chars(EditLine *el, wint_t c) in ed_transpose_chars() 288 ed_next_char(EditLine *el, wint_t c __attribute__((__unused__))) in ed_next_char() 317 ed_prev_word(EditLine *el, wint_t c __attribute__((__unused__))) in ed_prev_word() [all …]
|
| /netbsd/src/sys/arch/sh3/include/ |
| D | int_const.h | 44 #define INT8_C(c) c argument 45 #define INT16_C(c) c argument 46 #define INT32_C(c) c argument 47 #define INT64_C(c) c ## LL argument 49 #define UINT8_C(c) c argument 50 #define UINT16_C(c) c argument 51 #define UINT32_C(c) c ## U argument 52 #define UINT64_C(c) c ## ULL argument 56 #define INTMAX_C(c) c ## LL argument 57 #define UINTMAX_C(c) c ## ULL argument
|
| /netbsd/src/sys/arch/m68k/include/ |
| D | int_const.h | 44 #define INT8_C(c) c argument 45 #define INT16_C(c) c argument 46 #define INT32_C(c) c argument 47 #define INT64_C(c) c ## LL argument 49 #define UINT8_C(c) c argument 50 #define UINT16_C(c) c argument 51 #define UINT32_C(c) c ## U argument 52 #define UINT64_C(c) c ## ULL argument 56 #define INTMAX_C(c) c ## LL argument 57 #define UINTMAX_C(c) c ## ULL argument
|
| /netbsd/src/sys/arch/amd64/include/ |
| D | int_const.h | 47 #define INT8_C(c) c argument 48 #define INT16_C(c) c argument 49 #define INT32_C(c) c argument 50 #define INT64_C(c) c ## L argument 52 #define UINT8_C(c) c argument 53 #define UINT16_C(c) c argument 54 #define UINT32_C(c) c ## U argument 55 #define UINT64_C(c) c ## UL argument 59 #define INTMAX_C(c) c ## L argument 60 #define UINTMAX_C(c) c ## UL argument
|
| /netbsd/src/sys/arch/ia64/include/ |
| D | int_const.h | 45 #define INT8_C(c) c argument 46 #define INT16_C(c) c argument 47 #define INT32_C(c) c argument 48 #define INT64_C(c) c ## L argument 50 #define UINT8_C(c) c argument 51 #define UINT16_C(c) c argument 52 #define UINT32_C(c) c ## U argument 53 #define UINT64_C(c) c ## UL argument 57 #define INTMAX_C(c) c ## L argument 58 #define UINTMAX_C(c) c ## UL argument
|
| /netbsd/src/sys/arch/vax/include/ |
| D | int_const.h | 44 #define INT8_C(c) c argument 45 #define INT16_C(c) c argument 46 #define INT32_C(c) c argument 47 #define INT64_C(c) c ## LL argument 49 #define UINT8_C(c) c argument 50 #define UINT16_C(c) c argument 51 #define UINT32_C(c) c ## U argument 52 #define UINT64_C(c) c ## ULL argument 56 #define INTMAX_C(c) c ## LL argument 57 #define UINTMAX_C(c) c ## ULL argument
|
| /netbsd/src/sys/arch/hppa/include/ |
| D | int_const.h | 41 #define INT8_C(c) c argument 42 #define INT16_C(c) c argument 43 #define INT32_C(c) c argument 44 #define INT64_C(c) c ## LL argument 46 #define UINT8_C(c) c argument 47 #define UINT16_C(c) c argument 48 #define UINT32_C(c) c ## U argument 49 #define UINT64_C(c) c ## ULL argument 53 #define INTMAX_C(c) c ## LL argument 54 #define UINTMAX_C(c) c ## ULL argument
|
| /netbsd/src/sys/arch/i386/include/ |
| D | int_const.h | 45 #define INT8_C(c) c argument 46 #define INT16_C(c) c argument 47 #define INT32_C(c) c argument 48 #define INT64_C(c) c ## LL argument 50 #define UINT8_C(c) c argument 51 #define UINT16_C(c) c argument 52 #define UINT32_C(c) c ## U argument 53 #define UINT64_C(c) c ## ULL argument 57 #define INTMAX_C(c) c ## LL argument 58 #define UINTMAX_C(c) c ## ULL argument
|
| /netbsd/src/sys/arch/alpha/include/ |
| D | int_const.h | 44 #define INT8_C(c) c argument 45 #define INT16_C(c) c argument 46 #define INT32_C(c) c argument 47 #define INT64_C(c) c ## L argument 49 #define UINT8_C(c) c argument 50 #define UINT16_C(c) c argument 51 #define UINT32_C(c) c ## U argument 52 #define UINT64_C(c) c ## UL argument 56 #define INTMAX_C(c) c ## L argument 57 #define UINTMAX_C(c) c ## UL argument
|
| /netbsd/src/crypto/external/bsd/openssh/dist/ |
| D | nchan.c | 95 chan_set_istate(Channel *c, u_int next) in chan_set_istate() 105 chan_set_ostate(Channel *c, u_int next) in chan_set_ostate() 115 chan_read_failed(struct ssh *ssh, Channel *c) in chan_read_failed() 131 chan_ibuf_empty(struct ssh *ssh, Channel *c) in chan_ibuf_empty() 153 chan_obuf_empty(struct ssh *ssh, Channel *c) in chan_obuf_empty() 174 chan_rcvd_eow(struct ssh *ssh, Channel *c) in chan_rcvd_eow() 186 chan_send_eof2(struct ssh *ssh, Channel *c) in chan_send_eof2() 209 chan_send_close2(struct ssh *ssh, Channel *c) in chan_send_close2() 234 chan_send_eow2(struct ssh *ssh, Channel *c) in chan_send_eow2() 259 chan_rcvd_ieof(struct ssh *ssh, Channel *c) in chan_rcvd_ieof() [all …]
|
| /netbsd/src/external/bsd/less/dist/ |
| D | charset.h | 12 #define IS_ASCII_OCTET(c) (((c) & 0x80) == 0) argument 13 #define IS_UTF8_TRAIL(c) (((c) & 0xC0) == 0x80) argument 14 #define IS_UTF8_LEAD2(c) (((c) & 0xE0) == 0xC0) argument 15 #define IS_UTF8_LEAD3(c) (((c) & 0xF0) == 0xE0) argument 16 #define IS_UTF8_LEAD4(c) (((c) & 0xF8) == 0xF0) argument 17 #define IS_UTF8_LEAD5(c) (((c) & 0xFC) == 0xF8) argument 18 #define IS_UTF8_LEAD6(c) (((c) & 0xFE) == 0xFC) argument 19 #define IS_UTF8_INVALID(c) (((c) & 0xFE) == 0xFE) argument 20 #define IS_UTF8_LEAD(c) (((c) & 0xC0) == 0xC0 && !IS_UTF8_INVALID(c)) argument
|
| /netbsd/src/crypto/external/bsd/openssl/dist/crypto/ |
| D | ctype.c | 227 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 …]
|