/minix3/external/bsd/libc++/dist/libcxx/test/re/re.traits/ |
H A D | value.pass.cpp | 24 for (char c = 0; c < '0'; ++c) in main() local 30 for (char c = '0'; c < '8'; ++c) in main() local 36 for (char c = '8'; c < ':'; ++c) in main() local 42 for (char c = ':'; c < 'A'; ++c) in main() local 48 for (char c = 'A'; c < 'G'; ++c) in main() local 54 for (char c = 'G'; c < 'a'; ++c) in main() local 60 for (char c = 'a'; c < 'g'; ++c) in main() local 66 for (int c = 'g'; c < 256; ++c) in main() local 76 for (wchar_t c = 0; c < '0'; ++c) in main() local 82 for (wchar_t c = '0'; c < '8'; ++c) in main() local [all …]
|
/minix3/external/bsd/libc++/dist/libcxx/test/std/re/re.traits/ |
H A D | value.pass.cpp | 24 for (char c = 0; c < '0'; ++c) in main() local 30 for (char c = '0'; c < '8'; ++c) in main() local 36 for (char c = '8'; c < ':'; ++c) in main() local 42 for (char c = ':'; c < 'A'; ++c) in main() local 48 for (char c = 'A'; c < 'G'; ++c) in main() local 54 for (char c = 'G'; c < 'a'; ++c) in main() local 60 for (char c = 'a'; c < 'g'; ++c) in main() local 66 for (int c = 'g'; c < 256; ++c) in main() local 76 for (wchar_t c = 0; c < '0'; ++c) in main() local 82 for (wchar_t c = '0'; c < '8'; ++c) in main() local [all …]
|
/minix3/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 …]
|
/minix3/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 …]
|
/minix3/external/bsd/libc++/dist/libcxx/test/numerics/complex.number/complex.members/ |
H A D | construct.pass.cpp | 22 const std::complex<T> c; in test() local 27 const std::complex<T> c = 7.5; in test() local 32 const std::complex<T> c(8.5); in test() local 37 const std::complex<T> c(10.5, -9.5); in test() local 43 constexpr std::complex<T> c; in test() local 48 constexpr std::complex<T> c = 7.5; in test() local 53 constexpr std::complex<T> c(8.5); in test() local 58 constexpr std::complex<T> c(10.5, -9.5); in test() local
|
/minix3/external/bsd/libc++/dist/libcxx/test/std/numerics/complex.number/complex.members/ |
H A D | construct.pass.cpp | 22 const std::complex<T> c; in test() local 27 const std::complex<T> c = 7.5; in test() local 32 const std::complex<T> c(8.5); in test() local 37 const std::complex<T> c(10.5, -9.5); in test() local 43 constexpr std::complex<T> c; in test() local 48 constexpr std::complex<T> c = 7.5; in test() local 53 constexpr std::complex<T> c(8.5); in test() local 58 constexpr std::complex<T> c(10.5, -9.5); in test() local
|
/minix3/external/bsd/libc++/dist/libcxx/test/std/numerics/complex.number/complex.ops/ |
H A D | stream_input.pass.cpp | 24 std::complex<double> c; in main() local 31 std::complex<double> c; in main() local 38 std::complex<double> c; in main() local 45 std::complex<double> c; in main() local 52 std::complex<double> c; in main() local 59 std::complex<double> c; in main() local 66 std::complex<double> c; in main() local 73 std::complex<double> c; in main() local 80 std::complex<double> c; in main() local 87 std::complex<double> c; in main() local [all …]
|
/minix3/external/bsd/libc++/dist/libcxx/test/numerics/complex.number/complex.ops/ |
H A D | stream_input.pass.cpp | 24 std::complex<double> c; in main() local 31 std::complex<double> c; in main() local 38 std::complex<double> c; in main() local 45 std::complex<double> c; in main() local 52 std::complex<double> c; in main() local 59 std::complex<double> c; in main() local 66 std::complex<double> c; in main() local 73 std::complex<double> c; in main() local 80 std::complex<double> c; in main() local 87 std::complex<double> c; in main() local [all …]
|
/minix3/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 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
|
/minix3/sys/arch/i386/include/ |
H A 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
|
/minix3/external/bsd/less/dist/ |
H A 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
|
/minix3/lib/libedit/ |
H A D | vi.c | 61 cv_action(EditLine *el, Int c) in cv_action() 93 cv_paste(EditLine *el, Int c) in cv_paste() 125 vi_paste_next(EditLine *el, Int c __attribute__((__unused__))) in vi_paste_next() 138 vi_paste_prev(EditLine *el, Int c __attribute__((__unused__))) in vi_paste_prev() 151 vi_prev_big_word(EditLine *el, Int c __attribute__((__unused__))) in vi_prev_big_word() 176 vi_prev_word(EditLine *el, Int c __attribute__((__unused__))) in vi_prev_word() 201 vi_next_big_word(EditLine *el, Int c __attribute__((__unused__))) in vi_next_big_word() 225 vi_next_word(EditLine *el, Int c __attribute__((__unused__))) in vi_next_word() 248 vi_change_case(EditLine *el, Int c) in vi_change_case() 280 vi_change_meta(EditLine *el, Int c __attribute__((__unused__))) in vi_change_meta() [all …]
|
H A D | common.c | 55 ed_end_of_file(EditLine *el, Int c __attribute__((__unused__))) in ed_end_of_file() 69 ed_insert(EditLine *el, Int c) in ed_insert() 112 ed_delete_prev_word(EditLine *el, Int c __attribute__((__unused__))) in ed_delete_prev_word() 140 ed_delete_next_char(EditLine *el, Int c __attribute__((__unused__))) in ed_delete_next_char() 187 ed_kill_line(EditLine *el, Int c __attribute__((__unused__))) in ed_kill_line() 208 ed_move_to_end(EditLine *el, Int c __attribute__((__unused__))) in ed_move_to_end() 231 ed_move_to_beg(EditLine *el, Int c __attribute__((__unused__))) in ed_move_to_beg() 254 ed_transpose_chars(EditLine *el, Int c) in ed_transpose_chars() 280 ed_next_char(EditLine *el, Int c __attribute__((__unused__))) in ed_next_char() 309 ed_prev_word(EditLine *el, Int c __attribute__((__unused__))) in ed_prev_word() [all …]
|
H A D | emacs.c | 55 em_delete_or_list(EditLine *el, Int c) in em_delete_or_list() 91 em_delete_next_word(EditLine *el, Int c __attribute__((__unused__))) in em_delete_next_word() 120 em_yank(EditLine *el, Int c __attribute__((__unused__))) in em_yank() 156 em_kill_line(EditLine *el, Int c __attribute__((__unused__))) in em_kill_line() 178 em_kill_region(EditLine *el, Int c __attribute__((__unused__))) in em_kill_region() 211 em_copy_region(EditLine *el, Int c __attribute__((__unused__))) in em_copy_region() 240 em_gosmacs_transpose(EditLine *el, Int c) in em_gosmacs_transpose() 260 em_next_word(EditLine *el, Int c __attribute__((__unused__))) in em_next_word() 285 em_upper_case(EditLine *el, Int c __attribute__((__unused__))) in em_upper_case() 309 em_capitol_case(EditLine *el, Int c __attribute__((__unused__))) in em_capitol_case() [all …]
|
/minix3/external/mit/lua/dist/src/ |
H A D | lctype.h | 56 #define testprop(c,p) (luai_ctype_[(c)+1] & (p)) argument 61 #define lislalpha(c) testprop(c, MASK(ALPHABIT)) argument 62 #define lislalnum(c) testprop(c, (MASK(ALPHABIT) | MASK(DIGITBIT))) argument 63 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) argument 64 #define lisspace(c) testprop(c, MASK(SPACEBIT)) argument 65 #define lisprint(c) testprop(c, MASK(PRINTBIT)) argument 66 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT)) argument 71 #define ltolower(c) ((c) | ('A' ^ 'a')) argument 87 #define lislalpha(c) (isalpha(c) || (c) == '_') argument 88 #define lislalnum(c) (isalnum(c) || (c) == '_') argument [all …]
|
/minix3/crypto/external/bsd/openssl/dist/crypto/conf/ |
H A D | conf_def.h | 82 #define KEYTYPES(c) ((unsigned short *)((c)->meth_data)) argument 84 # define IS_COMMENT(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_COMMENT) argument 85 # define IS_FCOMMENT(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_FCOMMENT) argument 86 # define IS_EOF(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_EOF) argument 87 # define IS_ESC(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_ESC) argument 88 # define IS_NUMBER(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_NUMBER) argument 89 # define IS_WS(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_WS) argument 90 # define IS_ALPHA_NUMERIC(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_ALPHA_NUMERIC) argument 91 # define IS_ALPHA_NUMERIC_PUNCT(c,a) \ argument 93 # define IS_QUOTE(c,a) (KEYTYPES(c)[(a)&0xff]&CONF_QUOTE) argument [all …]
|
/minix3/external/bsd/llvm/dist/clang/test/CodeGen/ |
H A D | fma4-builtins.c | 8 __m128 test_mm_macc_ps(__m128 a, __m128 b, __m128 c) { in test_mm_macc_ps() 13 __m128d test_mm_macc_pd(__m128d a, __m128d b, __m128d c) { in test_mm_macc_pd() 18 __m128 test_mm_macc_ss(__m128 a, __m128 b, __m128 c) { in test_mm_macc_ss() 23 __m128d test_mm_macc_sd(__m128d a, __m128d b, __m128d c) { in test_mm_macc_sd() 28 __m128 test_mm_msub_ps(__m128 a, __m128 b, __m128 c) { in test_mm_msub_ps() 33 __m128d test_mm_msub_pd(__m128d a, __m128d b, __m128d c) { in test_mm_msub_pd() 38 __m128 test_mm_msub_ss(__m128 a, __m128 b, __m128 c) { in test_mm_msub_ss() 43 __m128d test_mm_msub_sd(__m128d a, __m128d b, __m128d c) { in test_mm_msub_sd() 48 __m128 test_mm_nmacc_ps(__m128 a, __m128 b, __m128 c) { in test_mm_nmacc_ps() 53 __m128d test_mm_nmacc_pd(__m128d a, __m128d b, __m128d c) { in test_mm_nmacc_pd() [all …]
|
H A D | fma-builtins.c | 8 __m128 test_mm_fmadd_ps(__m128 a, __m128 b, __m128 c) { in test_mm_fmadd_ps() 13 __m128d test_mm_fmadd_pd(__m128d a, __m128d b, __m128d c) { in test_mm_fmadd_pd() 18 __m128 test_mm_fmadd_ss(__m128 a, __m128 b, __m128 c) { in test_mm_fmadd_ss() 23 __m128d test_mm_fmadd_sd(__m128d a, __m128d b, __m128d c) { in test_mm_fmadd_sd() 28 __m128 test_mm_fmsub_ps(__m128 a, __m128 b, __m128 c) { in test_mm_fmsub_ps() 33 __m128d test_mm_fmsub_pd(__m128d a, __m128d b, __m128d c) { in test_mm_fmsub_pd() 38 __m128 test_mm_fmsub_ss(__m128 a, __m128 b, __m128 c) { in test_mm_fmsub_ss() 43 __m128d test_mm_fmsub_sd(__m128d a, __m128d b, __m128d c) { in test_mm_fmsub_sd() 48 __m128 test_mm_fnmadd_ps(__m128 a, __m128 b, __m128 c) { in test_mm_fnmadd_ps() 53 __m128d test_mm_fnmadd_pd(__m128d a, __m128d b, __m128d c) { in test_mm_fnmadd_pd() [all …]
|
/minix3/external/bsd/llvm/dist/clang/include/clang/Basic/ |
H A D | CharInfo.h | 43 LLVM_READNONE static inline bool isASCII(char c) { in isASCII() 71 LLVM_READONLY static inline bool isHorizontalWhitespace(unsigned char c) { in isHorizontalWhitespace() 79 LLVM_READONLY static inline bool isVerticalWhitespace(unsigned char c) { in isVerticalWhitespace() 88 LLVM_READONLY static inline bool isWhitespace(unsigned char c) { in isWhitespace() 94 LLVM_READONLY static inline bool isDigit(unsigned char c) { in isDigit() 100 LLVM_READONLY static inline bool isLowercase(unsigned char c) { in isLowercase() 106 LLVM_READONLY static inline bool isUppercase(unsigned char c) { in isUppercase() 112 LLVM_READONLY static inline bool isLetter(unsigned char c) { in isLetter() 118 LLVM_READONLY static inline bool isAlphanumeric(unsigned char c) { in isAlphanumeric() 124 LLVM_READONLY static inline bool isHexDigit(unsigned char c) { in isHexDigit() [all …]
|
/minix3/bin/ksh/ |
H A D | emacs.c | 62 #define is_cfs(c) (c == ' ' || c == '\t' || c == '"' || c == '\'') argument 63 #define is_mfs(c) (!(isalnum((unsigned char)c) || c == '_' || c == '$')) /* Separator for motion */ argument 343 int c; local 417 x_insert(c) in x_insert() argument 437 x_ins_string(c) in x_ins_string() argument 515 x_del_back(c) in x_del_back() argument 532 x_del_char(c) in x_del_char() argument 606 x_del_bword(c) in x_del_bword() argument 614 x_mv_bword(c) in x_mv_bword() argument 622 x_mv_fword(c) in x_mv_fword() argument [all …]
|
/minix3/external/bsd/libc++/dist/libcxx/test/std/containers/unord/unord.map/ |
H A D | max_load_factor.pass.cpp | 30 const C c; in main() local 35 C c; in main() local 44 const C c; in main() local 50 C c; in main() local 59 C c; in main() local
|
/minix3/external/bsd/libc++/dist/libcxx/test/localization/locale.stdcvt/ |
H A D | codecvt_utf8_utf16_max_length.pass.cpp | 29 C c; in main() local 35 C c; in main() local 41 C c; in main() local 47 C c; in main() local 53 C c; in main() local 59 C c; in main() local
|
H A D | codecvt_utf8_max_length.pass.cpp | 29 C c; in main() local 35 C c; in main() local 41 C c; in main() local 47 C c; in main() local 53 C c; in main() local 59 C c; in main() local
|
H A D | codecvt_utf16_max_length.pass.cpp | 29 C c; in main() local 35 C c; in main() local 41 C c; in main() local 47 C c; in main() local 53 C c; in main() local 59 C c; in main() local
|