/netbsd-src/external/gpl3/binutils.old/dist/include/ |
H A 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.old/dist/include/ |
H A 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/binutils/dist/include/ |
H A 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/ |
H A 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.old/dist/readline/readline/ |
H A D | chardefs.h | 42 #define whitespace(c) (((c) == ' ') || ((c) == '\t')) argument 60 #define CTRL_CHAR(c) ((c) < control_character_threshold && (((c) & 0x80) == 0)) argument 61 #define META_CHAR(c) ((c) > meta_character_threshold && (c) <= largest_char) argument 63 #define CTRL(c) ((c) & control_character_mask) argument 64 #define META(c) ((c) | meta_character_bit) argument 66 #define UNMETA(c) ((c) & (~meta_character_bit)) argument 67 #define UNCTRL(c) _rl_to_upper(((c)|control_character_bit)) argument 70 # define IN_CTYPE_DOMAIN(c) 1 argument 72 # define IN_CTYPE_DOMAIN(c) isascii(c) argument 76 # define isxdigit(c) (isdigit((unsigned char)(c)) || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' &… argument [all …]
|
/netbsd-src/external/gpl3/gdb/dist/readline/readline/ |
H A D | chardefs.h | 42 #define whitespace(c) (((c) == ' ') || ((c) == '\t')) argument 60 #define CTRL_CHAR(c) ((c) < control_character_threshold && (((c) & 0x80) == 0)) argument 61 #define META_CHAR(c) ((c) > meta_character_threshold && (c) <= largest_char) argument 63 #define CTRL(c) ((c) & control_character_mask) argument 64 #define META(c) ((c) | meta_character_bit) argument 66 #define UNMETA(c) ((c) & (~meta_character_bit)) argument 67 #define UNCTRL(c) _rl_to_upper(((c)|control_character_bit)) argument 70 # define IN_CTYPE_DOMAIN(c) 1 argument 72 # define IN_CTYPE_DOMAIN(c) isascii(c) argument 76 # define isxdigit(c) (isdigit((unsigned char)(c)) || ((c) >= 'a' && (c) <= 'f') || ((c) >= 'A' &… argument [all …]
|
/netbsd-src/bin/csh/ |
H A 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/ |
H A 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 …]
|
H A 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/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
H A D | c-ctype.h | 125 #define c_isascii(c) \ argument 134 #define c_isalnum(c) \ argument 141 #define c_isalnum(c) \ argument 153 #define c_isalpha(c) \ argument 159 #define c_isalpha(c) \ argument 167 #define c_isblank(c) \ argument 174 #define c_iscntrl(c) \ argument 182 #define c_isdigit(c) \ argument 190 #define c_islower(c) \ argument 198 #define c_isgraph(c) \ argument [all …]
|
H A D | c-ctype.c | 28 c_isascii (int c) in c_isascii() 34 c_isalnum (int c) in c_isalnum() 69 c_isalpha (int c) in c_isalpha() 98 c_isblank (int c) in c_isblank() 104 c_iscntrl (int c) in c_iscntrl() 138 c_isdigit (int c) in c_isdigit() 155 c_islower (int c) in c_islower() 175 c_isgraph (int c) in c_isgraph() 209 c_isprint (int c) in c_isprint() 243 c_ispunct (int c) in c_ispunct() [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
H A D | c-ctype.h | 125 #define c_isascii(c) \ argument 134 #define c_isalnum(c) \ argument 141 #define c_isalnum(c) \ argument 153 #define c_isalpha(c) \ argument 159 #define c_isalpha(c) \ argument 167 #define c_isblank(c) \ argument 174 #define c_iscntrl(c) \ argument 182 #define c_isdigit(c) \ argument 190 #define c_islower(c) \ argument 198 #define c_isgraph(c) \ argument [all …]
|
H A D | c-ctype.c | 28 c_isascii (int c) in c_isascii() 34 c_isalnum (int c) in c_isalnum() 69 c_isalpha (int c) in c_isalpha() 98 c_isblank (int c) in c_isblank() 104 c_iscntrl (int c) in c_iscntrl() 138 c_isdigit (int c) in c_isdigit() 155 c_islower (int c) in c_islower() 175 c_isgraph (int c) in c_isgraph() 209 c_isprint (int c) in c_isprint() 243 c_ispunct (int c) in c_ispunct() [all …]
|
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/ |
H A D | c-ctype.h | 125 #define c_isascii(c) \ argument 134 #define c_isalnum(c) \ argument 141 #define c_isalnum(c) \ argument 153 #define c_isalpha(c) \ argument 159 #define c_isalpha(c) \ argument 167 #define c_isblank(c) \ argument 174 #define c_iscntrl(c) \ argument 182 #define c_isdigit(c) \ argument 190 #define c_islower(c) \ argument 198 #define c_isgraph(c) \ argument [all …]
|
H A D | c-ctype.c | 28 c_isascii (int c) in c_isascii() 34 c_isalnum (int c) in c_isalnum() 69 c_isalpha (int c) in c_isalpha() 98 c_isblank (int c) in c_isblank() 104 c_iscntrl (int c) in c_iscntrl() 138 c_isdigit (int c) in c_isdigit() 155 c_islower (int c) in c_islower() 175 c_isgraph (int c) in c_isgraph() 209 c_isprint (int c) in c_isprint() 243 c_ispunct (int c) in c_ispunct() [all …]
|
/netbsd-src/external/lgpl3/gmp/dist/tests/cxx/ |
H A 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 …]
|
H A 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/sys/arch/arm/include/ |
H A 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/ |
H A 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/ |
H A 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/sparc/include/ |
H A 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/lib/libedit/ |
H A 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 …]
|
H A 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/crypto/external/bsd/openssl.old/dist/include/crypto/ |
H A D | 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 …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__support/xlocale/ |
H A D | __posix_l_fallback.h | 22 inline _LIBCPP_INLINE_VISIBILITY int isalnum_l(int c, locale_t) { in isalnum_l() 26 inline _LIBCPP_INLINE_VISIBILITY int isalpha_l(int c, locale_t) { in isalpha_l() 30 inline _LIBCPP_INLINE_VISIBILITY int isblank_l(int c, locale_t) { in isblank_l() 34 inline _LIBCPP_INLINE_VISIBILITY int iscntrl_l(int c, locale_t) { in iscntrl_l() 38 inline _LIBCPP_INLINE_VISIBILITY int isdigit_l(int c, locale_t) { in isdigit_l() 42 inline _LIBCPP_INLINE_VISIBILITY int isgraph_l(int c, locale_t) { in isgraph_l() 46 inline _LIBCPP_INLINE_VISIBILITY int islower_l(int c, locale_t) { in islower_l() 50 inline _LIBCPP_INLINE_VISIBILITY int isprint_l(int c, locale_t) { in isprint_l() 54 inline _LIBCPP_INLINE_VISIBILITY int ispunct_l(int c, locale_t) { in ispunct_l() 58 inline _LIBCPP_INLINE_VISIBILITY int isspace_l(int c, locale_t) { in isspace_l() [all …]
|