Lines Matching defs:uValue
312 * @param uValue The value.
314 static void suplibHardenedPrintDecimal(uint64_t uValue)
324 *psz-- = '0' + (uValue % 10);
325 uValue /= 10;
326 } while (uValue > 0);
336 * @param uValue The value.
340 static void suplibHardenedPrintHexOctal(uint64_t uValue, unsigned uBase, uint32_t fFlags)
355 *psz-- = pchDigits[uValue & fDigitMask];
356 uValue >>= cShift;
357 } while (uValue > 0);
607 uint64_t uValue;
629 uValue = va_arg(va, uintptr_t);
631 uValue = va_arg(va, uint64_t);
633 uValue = va_arg(va, unsigned long);
635 uValue = va_arg(va, unsigned int);
638 suplibHardenedPrintDecimal(uValue);
640 suplibHardenedPrintHexOctal(uValue, uBase, fFlags);