Home
last modified time | relevance | path

Searched refs:IS_LOWER (Results 1 – 25 of 148) sorted by relevance

123456

/dports/databases/xapian-core12/xapian-core-1.2.25/common/
H A Dstringutils.cc140 /* \x67 (g) */ IS_LOWER,
141 /* \x68 (h) */ IS_LOWER,
142 /* \x69 (i) */ IS_LOWER,
143 /* \x6a (j) */ IS_LOWER,
144 /* \x6b (k) */ IS_LOWER,
145 /* \x6c (l) */ IS_LOWER,
146 /* \x6d (m) */ IS_LOWER,
147 /* \x6e (n) */ IS_LOWER,
148 /* \x6f (o) */ IS_LOWER,
149 /* \x70 (p) */ IS_LOWER,
[all …]
H A Dstringutils.h114 const unsigned char IS_LOWER = 0x02; variable
159 return bool(C_tab_(ch) & IS_LOWER); in C_islower()
164 return bool(C_tab_(ch) & (IS_UPPER|IS_LOWER)); in C_isalpha()
169 return bool(C_tab_(ch) & (IS_UPPER|IS_LOWER|IS_DIGIT)); in C_isalnum()
/dports/www/xapian-omega12/xapian-omega-1.2.25/common/
H A Dstringutils.cc140 /* \x67 (g) */ IS_LOWER,
141 /* \x68 (h) */ IS_LOWER,
142 /* \x69 (i) */ IS_LOWER,
143 /* \x6a (j) */ IS_LOWER,
144 /* \x6b (k) */ IS_LOWER,
145 /* \x6c (l) */ IS_LOWER,
146 /* \x6d (m) */ IS_LOWER,
147 /* \x6e (n) */ IS_LOWER,
148 /* \x6f (o) */ IS_LOWER,
149 /* \x70 (p) */ IS_LOWER,
[all …]
H A Dstringutils.h114 const unsigned char IS_LOWER = 0x02; variable
159 return bool(C_tab_(ch) & IS_LOWER); in C_islower()
164 return bool(C_tab_(ch) & (IS_UPPER|IS_LOWER)); in C_isalpha()
169 return bool(C_tab_(ch) & (IS_UPPER|IS_LOWER|IS_DIGIT)); in C_isalnum()
/dports/news/knews/knews-1.0b.1/src/
H A Dutil.h39 #define IS_LOWER(c) \ macro
44 (IS_UPPER(c) || IS_LOWER(c))
52 (IS_LOWER(c) ? UPPER(c) : (unsigned char)(c))
H A Dparse.c106 if ((!IS_UPPER(str[0]) && !IS_LOWER(str[0])) || in parsedate()
107 (!IS_UPPER(str[1]) && !IS_LOWER(str[1])) || in parsedate()
108 (!IS_UPPER(str[2]) && !IS_LOWER(str[2]))) in parsedate()
/dports/sysutils/jdupes/jdupes-1.19.2/
H A Djody_sort.c11 #define IS_LOWER(a) (((a >= 'a') && (a <= 'z')) ? 1 : 0) macro
87 if (IS_LOWER(s1)) s1 = (char)(s1 - 32); in numeric_sort()
88 if (IS_LOWER(s2)) s2 = (char)(s2 - 32); in numeric_sort()
/dports/biology/ncbi-toolkit/ncbi/demo/
H A Dtrna2tbl.c111 #define IS_LOWER(c) ('a'<=(c) && (c)<='z') macro
112 #define IS_ALPHA(c) (IS_UPPER(c) || IS_LOWER(c))
114 #define TO_UPPER(c) ((Char)(IS_LOWER(c) ? (c)-' ' : (c)))
H A Dtestcgi.c114 #define IS_LOWER(c) ('a'<=(c) && (c)<='z') macro
115 #define IS_ALPHA(c) (IS_UPPER(c) || IS_LOWER(c))
117 #define TO_UPPER(c) ((Char)(IS_LOWER(c) ? (c)-' ' : (c)))
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/objtools/flatfile/
H A Dftacpp.hpp81 #define IS_LOWER(c) ('a'<=(c) && (c)<='z') macro
82 #define IS_ALPHA(c) (IS_UPPER(c) || IS_LOWER(c))
84 #define TO_UPPER(c) ((IS_LOWER(c) ? (c)-' ' : (c)))
/dports/sysutils/less/less-551/
H A Dless.h131 #undef IS_LOWER
139 #define IS_LOWER(c) iswlower(c) macro
145 #define IS_LOWER(c) islower((unsigned char) (c)) macro
150 #define IS_LOWER(c) ASCII_IS_LOWER(c) macro
/dports/security/apache-xml-security-c/xml-security-c-2.0.4/xsec/enc/XSCrypt/
H A DXSCryptCryptoBase64.cpp48 #define IS_LOWER(c) (c >= 'a' && c <= 'z') macro
51 #define IS_B64CH(c) (IS_LOWER(c) || IS_UPPER(c) || IS_NUMBR(c) || IS_OTHER(c))
63 if (IS_LOWER(c)) in decodeCh()
/dports/devel/radare2/radare2-5.1.1/libr/include/r_util/
H A Dr_str_util.h15 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/erts/emulator/beam/
H A Derl_printf_term.c93 #define IS_LOWER(c) (((c) >= 'a' && (c) <= 'z') \ macro
98 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
102 #define IS_ALNUM(c) (IS_DIGIT(c) || IS_LOWER(c) || IS_UPPER(c))
198 if (!IS_LOWER(c)) in print_atom_name()
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/erts/emulator/beam/
H A Derl_printf_term.c93 #define IS_LOWER(c) (((c) >= 'a' && (c) <= 'z') \ macro
98 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
102 #define IS_ALNUM(c) (IS_DIGIT(c) || IS_LOWER(c) || IS_UPPER(c))
198 if (!IS_LOWER(c)) in print_atom_name()
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/erts/emulator/beam/
H A Derl_printf_term.c93 #define IS_LOWER(c) (((c) >= 'a' && (c) <= 'z') \ macro
98 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
102 #define IS_ALNUM(c) (IS_DIGIT(c) || IS_LOWER(c) || IS_UPPER(c))
198 if (!IS_LOWER(c)) in print_atom_name()
/dports/biology/ncbi-toolkit/ncbi/asnlib/
H A Dasnbufo.c236 while ((atp2->name == NULL) || (IS_LOWER(*atp2->name))) in AsnTxtBufWrite()
242 if (IS_LOWER(*atp2->name)) in AsnTxtBufWrite()
H A Dasnlext.c1315 else if (IS_LOWER(*pos)) /* an identifier or valuereference */ in AsnLexTWord()
1541 if (IS_LOWER(*atp->name)) /* identifier, not Type */ in AsnSetTags()
1577 if (IS_LOWER(*atp->name)) /* identifier, not Type */ in AsnSetTags()
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/erts/emulator/beam/
H A Derl_printf_term.c120 #define IS_LOWER(c) (((c) >= 'a' && (c) <= 'z') \ macro
125 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
129 #define IS_ALNUM(c) (IS_DIGIT(c) || IS_LOWER(c) || IS_UPPER(c))
264 if (!IS_LOWER(lc)) in print_atom_name()
/dports/lang/erlang-wx/otp-OTP-24.1.7/erts/emulator/beam/
H A Derl_printf_term.c120 #define IS_LOWER(c) (((c) >= 'a' && (c) <= 'z') \ macro
125 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
129 #define IS_ALNUM(c) (IS_DIGIT(c) || IS_LOWER(c) || IS_UPPER(c))
264 if (!IS_LOWER(lc)) in print_atom_name()
/dports/lang/erlang/otp-OTP-24.1.7/erts/emulator/beam/
H A Derl_printf_term.c120 #define IS_LOWER(c) (((c) >= 'a' && (c) <= 'z') \ macro
125 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
129 #define IS_ALNUM(c) (IS_DIGIT(c) || IS_LOWER(c) || IS_UPPER(c))
264 if (!IS_LOWER(lc)) in print_atom_name()
/dports/lang/erlang-java/otp-OTP-24.1.7/erts/emulator/beam/
H A Derl_printf_term.c120 #define IS_LOWER(c) (((c) >= 'a' && (c) <= 'z') \ macro
125 #define IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
129 #define IS_ALNUM(c) (IS_DIGIT(c) || IS_LOWER(c) || IS_UPPER(c))
264 if (!IS_LOWER(lc)) in print_atom_name()
/dports/biology/ncbi-toolkit/ncbi/corelib/
H A Dncbistr.h414 #define IS_LOWER(c) ('a'<=(c) && (c)<='z') macro
415 #define IS_ALPHA(c) (IS_UPPER(c) || IS_LOWER(c))
417 #define TO_UPPER(c) ((Nlm_Char)(IS_LOWER(c) ? (c)-' ' : (c)))
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/include/ctools/ctransition/
H A Dncbistr.hpp394 #define IS_LOWER(c) ('a'<=(c) && (c)<='z') macro
395 #define IS_ALPHA(c) (IS_UPPER(c) || IS_LOWER(c))
397 #define TO_UPPER(c) ((Nlm_Char)(IS_LOWER(c) ? (c)-' ' : (c)))
/dports/devel/radare2/radare2-5.1.1/libr/bin/
H A Dfilter.c267 if (ch < 0 || !IS_PRINTABLE (ch) || IS_LOWER (ch)) { in bin_strfilter()

123456