Lines Matching defs:value
266 static void UInt64ToStr(UInt64 value, char *s, int numDigits)
272 temp[pos++] = (char)('0' + (unsigned)(value % 10));
273 value /= 10;
275 while (value != 0);
286 static char *UIntToStr(char *s, unsigned value, int numDigits)
291 temp[pos++] = (char)('0' + (value % 10));
292 while (value /= 10);
304 static void UIntToStr_2(char *s, unsigned value)
306 s[0] = (char)('0' + (value / 10));
307 s[1] = (char)('0' + (value % 10));
651 UInt32 blockIndex = 0xFFFFFFFF; /* it can have any value before first call (if outBuffer = 0) */
653 size_t outBufferSize = 0; /* it can have any value before first call (if outBuffer = 0) */