/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 37 inline char hexdigit(unsigned X, bool LowerCase = false) { 40 const uint8_t Offset = LowerCase ? 32 : 0; 110 /// Checks if character \p C is a lowercase letter as classified by "C" locale. 120 /// lowercase letter as classified by "C" locale. 151 /// Returns the corresponding lowercase character if \p x is uppercase. 158 /// Returns the corresponding uppercase character if \p x is lowercase. 165 inline std::string utohexstr(uint64_t X, bool LowerCase = false, 174 *--BufPtr = hexdigit(Mod, LowerCase); 183 inline void toHex(ArrayRef<uint8_t> Input, bool LowerCase, in toHex() argument 190 Output[i * 2 ] = hexdigit(c >> 4, LowerCase); in toHex() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/ |
H A D | dts-coding-style.rst | 24 * Lowercase characters: [a-z] 30 * Lowercase characters: [a-z] 34 3. Unless a bus defines differently, unit addresses shall use lowercase 37 4. Hex values in properties, e.g. "reg", shall use lowercase hex. The address
|
H A D | xilinx.txt | 37 directive in system.mhs). Should be in lowercase 42 to lowercase and all underscore '_' characters are
|
/freebsd/crypto/openssl/ |
H A D | config.com | 17 $ arch = f$edit( f$getsyi( "arch_name"), "lowercase") 28 $ P = F$EDIT(P1,"TRIM,LOWERCASE")
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_set_options.3 | 402 .It Cm allow-lowercase 403 If enabled, allows filenames to contain lowercase characters. 417 .It Cm allow-pvd-lowercase 418 If enabled, the Primary Volume Descriptor may contain lowercase ASCII characters, in violation of t… 474 (except lowercase characters unless 475 .Cm allow-lowercase
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | var-op-expand.mk | 218 later= lowercase-value 226 # be the lowercase version of the variable 'INDIRECT'. 232 # lowercase, which turns 'S' into 's', thus producing an unknown modifier. 281 later= lowercase-value
|
H A D | varmod-to-lower.mk | 4 # to lowercase.
|
H A D | varmod-to-title.mk | 4 # to lowercase.
|
H A D | var-op-expand.exp | 6 while evaluating variable "later" with value "lowercase-value"
|
/freebsd/sys/sys/ |
H A D | ttydefaults.h | 59 * XXX: A lot of code uses lowercase characters, but control-character 61 * characters. We just treat lowercase characters as if they were
|
/freebsd/contrib/flex/src/ |
H A D | ccl.c | 269 * scanner. Specifically, if a lowercase or uppercase character, x, is in the 270 * range [c1-c2], then we require that UPPERCASE(x) and LOWERCASE(x) must also 301 /** Return true if c is uppercase or lowercase. */
|
/freebsd/usr.bin/getaddrinfo/ |
H A D | getaddrinfo.1 | 87 prefix and lowercase. 134 prefix and lowercase.
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | BuildID.cpp | 72 llvm::toHex(BuildID[0], /*LowerCase=*/true), in fetch() 73 llvm::toHex(BuildID.slice(1), /*LowerCase=*/true)); in fetch()
|
/freebsd/sys/contrib/openzfs/man/man7/ |
H A D | vdevprops.7 | 62 The values of non-numeric properties are case sensitive and must be lowercase. 170 They may contain lowercase letters, numbers, and the following punctuation
|
/freebsd/crypto/heimdal/lib/wind/ |
H A D | rfc3492.txt | 409 to have the same digit-value; for example, uppercase and lowercase 429 have both uppercase and lowercase forms. 473 A decoder MUST recognize the letters in both uppercase and lowercase 475 only uppercase forms or only lowercase forms, unless it uses mixed- 1194 copies them verbatim, leaving lowercase code points lowercase, and 1199 uppercase (if possible); if it is lowercase, it is a suggestion to 1200 map the non-basic code point to lowercase (if possible). 1206 uppercase/lowercase form of ASCII letters. 1300 /* it be forced to lowercase (if possible). ASCII code points */ 1302 /* to uppercase or lowercase according to the corresponding */ [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | CharInfo.h | 119 /// Return true if this character is a lowercase ASCII letter: [a-z] 221 /// Converts the given ASCII character to its lowercase equivalent. 232 /// If the character is not a lowercase character, it is returned as is.
|
/freebsd/crypto/openssh/ |
H A D | match.c | 140 * subpattern to lowercase. in match_pattern_list() 188 * Tries to match the host name (which must be in all lowercase) against the 199 lowercase(hostcopy); in match_hostname()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
H A D | LVSupport.cpp | 30 // - all characters to lowercase. 46 // Convert the given 'Path' to lowercase and change any matching character
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | kernel-pde-data.m4 | 14 AC_MSG_CHECKING([whether pde_data() is lowercase])
|
/freebsd/contrib/libarchive/unzip/test/ |
H A D | test_L.c | 9 /* Test L arg - make names lowercase */
|
/freebsd/contrib/ldns/ldns/ |
H A D | dname.h | 130 * Put a dname into canonical fmt - ie. lowercase it 131 * \param[in] rdf the dname to lowercase
|
/freebsd/libexec/atrun/ |
H A D | atrun.man | 31 starts all the jobs in the lowercase queues whose start
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/ |
H A D | cpus.txt | 21 name with all uppercase letters converted to lowercase, indicates that
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | uuencode | 9 # (xxencoding uses lowercase letters in place of most of uuencode's
|
/freebsd/contrib/ncurses/progs/ |
H A D | tset.c | 109 #define LOWERCASE(c) ((isalpha(UChar(c)) && isupper(UChar(c))) ? tolower(UChar(c)) : (c)) macro 117 int cmp = LOWERCASE(*a) - LOWERCASE(*b); in CaselessCmp() 122 return LOWERCASE(*a) - LOWERCASE(*b); in CaselessCmp()
|