19#include "QtCore/private/qglobal_p.h"
22#include <QtCore/qbytearrayalgorithms.h>
33 return "0123456789ABCDEF"[value & 0xF];
38 return "0123456789abcdef"[value & 0xF];
43 return (c >=
'0' && c <=
'9')
44 || (c >=
'A' && c <=
'F')
45 || (c >=
'a' && c <=
'f');
50 return ((c >=
'0') && (c <=
'9')) ?
int(c -
'0') :
51 ((c >=
'A') && (c <=
'F')) ?
int(c -
'A' + 10) :
52 ((c >=
'a') && (c <=
'f')) ?
int(c -
'a' + 10) :
58 return char(
'0' + (value & 0x7));
63 return c >=
'0' && c <=
'7';
73 return c >=
'0' && c <=
'9';
78 return c >=
'a' && c <=
'z';
97 return ch >=
' ' && ch < 0x7f;
102 return lhs == rhs ? 0 :
115qsizetype Q_CORE_EXPORT Q_DECL_CONST_FUNCTION
116qCalculateBlockSize(qsizetype elementCount, qsizetype elementSize, qsizetype headerSize = 0)
noexcept;
118qCalculateGrowingBlockSize(qsizetype elementCount, qsizetype elementSize, qsizetype headerSize = 0)
noexcept ;
constexpr char toOct(char32_t value) noexcept
constexpr bool isAsciiDigit(char32_t c) noexcept
constexpr int fromOct(char32_t c) noexcept
constexpr bool isAsciiLower(char32_t c) noexcept
constexpr bool isAsciiLetterOrNumber(char32_t c) noexcept
constexpr int isAsciiPrintable(char32_t ch) noexcept
constexpr char toHexUpper(char32_t value) noexcept
constexpr int qt_lencmp(qsizetype lhs, qsizetype rhs) noexcept
constexpr char toHexLower(char32_t value) noexcept
constexpr bool isOctalDigit(char32_t c) noexcept
constexpr bool isHexDigit(char32_t c) noexcept
constexpr int fromHex(char32_t c) noexcept
constexpr char toAsciiUpper(char ch) noexcept