Home
last modified time | relevance | path

Searched refs:ASCII_IS_LOWER (Results 1 – 7 of 7) sorted by relevance

/freebsd/crypto/openssl/crypto/
H A Dctype.c267 #define ASCII_IS_LOWER(c) (c >= 0x61 && c <= 0x7A) macro
287 return ASCII_IS_LOWER(a); in ossl_islower()
307 return ASCII_IS_LOWER(a) ? c ^ case_change : c; in ossl_toupper()
/freebsd/contrib/less/
H A Dless.h125 #define ASCII_IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') macro
149 #define IS_LOWER(c) (is_ascii_char(c) && ASCII_IS_LOWER(c))
H A Doption.c184 lc = ASCII_IS_LOWER(optc); in scan_option()
196 lc = ASCII_IS_LOWER(optname[0]); in scan_option()
H A Dopttbl.c834 if (ASCII_IS_LOWER(c)) in is_optchar()
949 xbuf_add_char(&xbuf, uppercase && ASCII_IS_LOWER(*np) ? ASCII_TO_UPPER(*np) : *np); in findopts_name()
H A Dmain.c587 if (len == 0 && ASCII_IS_LOWER(c)) in sprefix()
H A Dcommand.c460 opt_lower = ASCII_IS_LOWER(p[0]); in mca_opt_nonfirst_char()
530 opt_lower = ASCII_IS_LOWER(c); in mca_opt_char()
H A Dcmdbuf.c1399 if (uc && ASCII_IS_LOWER(c)) in cmd_setstring()