Lines Matching defs:i64
559 int64_t i64;
610 i64 = 0;
619 i64Prev = i64;
620 i64 *= uBase;
621 i64 += chDigit;
622 if (i64Prev > i64 || (i64Prev >> iShift))
628 i64 = -i64;
631 *pi64 = i64;
702 int64_t i64;
703 int rc = RTStrToInt64Ex(pszValue, NULL, 0, &i64);
705 return i64;
730 int64_t i64;
731 int rc = RTStrToInt64Ex(pszValue, ppszNext, uBase, &i64);
734 int32_t i32 = (int32_t)i64;
735 if (i64 != (int64_t)i32)
739 *pi32 = (int32_t)i64;
764 int64_t i64;
765 int rc = RTStrToInt64Full(pszValue, uBase, &i64);
768 int32_t i32 = (int32_t)i64;
769 if (i64 != (int64_t)i32)
773 *pi32 = (int32_t)i64;
817 int64_t i64;
818 int rc = RTStrToInt64Ex(pszValue, ppszNext, uBase, &i64);
821 int16_t i16 = (int16_t)i64;
822 if (i64 != (int64_t)i16)
826 *pi16 = (int16_t)i64;
851 int64_t i64;
852 int rc = RTStrToInt64Full(pszValue, uBase, &i64);
855 int16_t i16 = (int16_t)i64;
856 if (i64 != (int64_t)i16)
860 *pi16 = (int16_t)i64;
904 int64_t i64;
905 int rc = RTStrToInt64Ex(pszValue, ppszNext, uBase, &i64);
908 int8_t i8 = (int8_t)i64;
909 if (i64 != (int64_t)i8)
913 *pi8 = (int8_t)i64;
938 int64_t i64;
939 int rc = RTStrToInt64Full(pszValue, uBase, &i64);
942 int8_t i8 = (int8_t)i64;
943 if (i64 != (int64_t)i8)
947 *pi8 = (int8_t)i64;