Home | History | Annotate | Download | only in wtf

Lines Matching defs:hexDigits

46     const LChar* hexDigits = Internal::hexDigitsForMode(mode);
47 destination.append(hexDigits[byte >> 4]);
48 destination.append(hexDigits[byte & 0xF]);
54 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
56 destination[index++] = hexDigits[byte >> 4];
57 destination[index++] = hexDigits[byte & 0xF];
63 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
64 *destination++ = hexDigits[byte >> 4];
65 *destination++ = hexDigits[byte & 0xF];
71 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
74 result.prepend(hexDigits[number % 16]);
87 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
90 result.prepend(hexDigits[number % 16]);