Home
last modified time | relevance | path

Searched refs:uppercase (Results 1 – 25 of 70) sorted by relevance

123

/freebsd/crypto/krb5/src/util/support/
H A Dhex.c38 hex_digit(uint8_t bval, int uppercase) in hex_digit() argument
43 else if (uppercase) in hex_digit()
50 k5_hex_encode(const void *bytes, size_t len, int uppercase, char **hex_out) in k5_hex_encode() argument
63 hex[i * 2] = hex_digit(p[i] >> 4, uppercase); in k5_hex_encode()
64 hex[i * 2 + 1] = hex_digit(p[i] & 0xF, uppercase); in k5_hex_encode()
H A Dt_hex.c40 int uppercase; member
164 tests[i].uppercase, &hex); in main()
/freebsd/contrib/less/
H A Dopttbl.c853 int uppercase; in findopt_name() local
875 for (uppercase = 0; uppercase <= 1; uppercase++) in findopt_name()
877 len = sprefix(optname, oname->oname, uppercase); in findopt_name()
933 int uppercase; in findopts_name() local
942 for (uppercase = 0; uppercase <= 1; uppercase++) in findopts_name()
944 size_t len = sprefix(pfx, oname->oname, uppercase); in findopts_name()
949 xbuf_add_char(&xbuf, uppercase && ASCII_IS_LOWER(*np) ? ASCII_TO_UPPER(*np) : *np); in findopts_name()
H A Dmain.c576 public size_t sprefix(constant char *ps, constant char *s, int uppercase) in sprefix() argument
585 if (uppercase) in sprefix()
/freebsd/contrib/jemalloc/src/
H A Dmalloc_io.c56 static char *u2s(uintmax_t x, unsigned base, bool uppercase, char *s,
63 static char *x2s(uintmax_t x, bool alt_form, bool uppercase, char *s,
247 u2s(uintmax_t x, unsigned base, bool uppercase, char *s, size_t *slen_p) {
261 const char *digits = (uppercase) in u2s()
272 const char *digits = (uppercase) in u2s()
328 x2s(uintmax_t x, bool alt_form, bool uppercase, char *s, size_t *slen_p) {
329 s = u2s(x, 16, uppercase, s, slen_p);
333 memcpy(s, uppercase ? "0X" : "0x", 2); in x2s()
249 u2s(uintmax_t x,unsigned base,bool uppercase,char * s,size_t * slen_p) u2s() argument
330 x2s(uintmax_t x,bool alt_form,bool uppercase,char * s,size_t * slen_p) x2s() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp43 bool negative, bool uppercase) { in AppendNumber() argument
76 digit = (digit < 10) ? '0' + digit : (uppercase ? 'A' : 'a') + digit - 10; in AppendNumber()
84 bool uppercase) { in AppendUnsigned() argument
86 pad_with_zero, false /* negative */, uppercase); in AppendUnsigned()
188 bool uppercase = (*cur == 'X'); in VSNPrintf() local
190 width, pad_with_zero, uppercase); in VSNPrintf()
/freebsd/contrib/bmake/unit-tests/
H A Dvar-op-expand.mk217 LATER= uppercase-value
279 LATER= uppercase-value
/freebsd/crypto/krb5/src/include/
H A Dk5-hex.h43 int k5_hex_encode(const void *bytes, size_t len, int uppercase,
/freebsd/crypto/openssl/include/openssl/
H A Dcore.h198 #pragma names uppercase, truncated
/freebsd/crypto/heimdal/lib/wind/
H A Drfc3492.txt409 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-
1195 leaving uppercase code points uppercase. Each non-basic code point
1198 is uppercase, it is a suggestion to map the non-basic code point to
1199 uppercase (if possible); if it is lowercase, it is a suggestion to
1206 uppercase/lowercase form of ASCII letters.
1298 /* the corresponding Unicode character be forced to uppercase */
1302 /* to uppercase or lowercase according to the corresponding */
[all …]
/freebsd/sys/contrib/device-tree/Bindings/powerpc/fsl/
H A Dcpus.txt21 name with all uppercase letters converted to lowercase, indicates that
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dios.inc41 using std::uppercase;
H A Dios.cppm
/freebsd/contrib/googletest/googletest/src/
H A Dgtest-printers.cc190 *os << "\\x" << std::hex << std::uppercase << static_cast<int>(u_c); in PrintAsCharLiteralTo()
285 *os << std::hex << "U+" << std::uppercase << std::setfill('0') << std::setw(4) in PrintTo()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dios45 static constexpr fmtflags uppercase;
178 ios_base& uppercase (ios_base& str);
268 static const fmtflags uppercase = 0x4000;
786 _LIBCPP_HIDE_FROM_ABI inline ios_base& uppercase(ios_base& __str) {
787 __str.setf(ios_base::uppercase);
792 __str.unsetf(ios_base::uppercase);
/freebsd/contrib/llvm-project/libcxx/include/
H A Dios45 static constexpr fmtflags uppercase;
178 ios_base& uppercase (ios_base& str);
272 static const fmtflags uppercase = 0x4000;
804 _LIBCPP_HIDE_FROM_ABI inline ios_base& uppercase(ios_base& __str) {
805 __str.setf(ios_base::uppercase);
810 __str.unsetf(ios_base::uppercase);
/freebsd/contrib/googletest/docs/_sass/
H A Dmain.scss33 text-transform: uppercase;
/freebsd/crypto/heimdal/lib/ntlm/
H A DChangeLog46 * ntlm.c (heim_ntlm_ntlmv2_key): target should be uppercase.
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dcnxt,cx92755-pinctrl.txt60 is an uppercase character from 'A' to 'R', and y is a digit from 0 to 7.
/freebsd/contrib/bearssl/src/codec/
H A Dpemdec.t0123 \ Normalise a byte to uppercase (ASCII only).
140 \ was exceeded. All bytes are normalised to uppercase (ASCII only).
/freebsd/contrib/wpa/src/utils/
H A Dcommon.c318 size_t len, int uppercase) in _wpa_snprintf_hex() argument
326 ret = os_snprintf(pos, end - pos, uppercase ? "%02X" : "%02x", in _wpa_snprintf_hex()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Ddllexports410 # Number for lowercase version is indicated. Number for uppercase is obtained by adding 1000.
613 # for user-callable uppercase Fortran entries.
/freebsd/contrib/file/magic/Magdir/
H A Dscientific124 # uppercase letters. However, examples have been seen without the date string,
/freebsd/crypto/openssl/doc/man1/
H A Dopenssl-format-options.pod56 Both uppercase and lowercase are accepted.
/freebsd/contrib/expat/doc/
H A Dok.min.css2uppercase;font-weight:var(--ok-fw-1)}h1,h2,h3,h4,h5,h6{line-height:var(--ok-lh-heading);font-weigh…

123