Lines Matching refs:u64
114 uint64_t u64;
165 u64 = 0;
174 u64Prev = u64;
175 u64 *= uBase;
176 u64 += chDigit;
177 if (u64Prev > u64 || (u64Prev >> iShift))
186 u64 = -(int64_t)u64;
190 *pu64 = u64;
262 uint64_t u64;
263 int rc = RTStrToUInt64Ex(pszValue, NULL, 0, &u64);
265 return u64;
291 uint64_t u64;
292 int rc = RTStrToUInt64Ex(pszValue, ppszNext, uBase, &u64);
295 if (u64 & ~0xffffffffULL)
299 *pu32 = (uint32_t)u64;
325 uint64_t u64;
326 int rc = RTStrToUInt64Full(pszValue, uBase, &u64);
329 if (u64 & ~0xffffffffULL)
333 *pu32 = (uint32_t)u64;
378 uint64_t u64;
379 int rc = RTStrToUInt64Ex(pszValue, ppszNext, uBase, &u64);
382 if (u64 & ~0xffffULL)
386 *pu16 = (uint16_t)u64;
412 uint64_t u64;
413 int rc = RTStrToUInt64Full(pszValue, uBase, &u64);
416 if (u64 & ~0xffffULL)
420 *pu16 = (uint16_t)u64;
465 uint64_t u64;
466 int rc = RTStrToUInt64Ex(pszValue, ppszNext, uBase, &u64);
469 if (u64 & ~0xffULL)
473 *pu8 = (uint8_t)u64;
499 uint64_t u64;
500 int rc = RTStrToUInt64Full(pszValue, uBase, &u64);
503 if (u64 & ~0xffULL)
507 *pu8 = (uint8_t)u64;