Home | History | Annotate | Download | only in BaseLib

Lines Matching refs:Result

658   UINTN     Result;

680 Result = 0;
687 ASSERT (Result <= ((((UINTN) ~0) - (*String - L'0')) / 10));
689 Result = Result * 10 + (*String - L'0');
693 return Result;
737 UINT64 Result;
759 Result = 0;
766 ASSERT (Result <= DivU64x32 (((UINT64) ~0) - (*String - L'0') , 10));
768 Result = MultU64x32 (Result, 10) + (*String - L'0');
772 return Result;
816 UINTN Result;
848 Result = 0;
855 ASSERT (Result <= ((((UINTN) ~0) - InternalHexCharToUintn (*String)) >> 4));
857 Result = (Result << 4) + InternalHexCharToUintn (*String);
861 return Result;
906 UINT64 Result;
939 Result = 0;
946 ASSERT (Result <= RShiftU64 (((UINT64) ~0) - InternalHexCharToUintn (*String) , 4));
948 Result = LShiftU64 (Result, 4);
949 Result = Result + InternalHexCharToUintn (*String);
953 return Result;
1701 UINTN Result;
1722 Result = 0;
1729 ASSERT (Result <= ((((UINTN) ~0) - (*String - L'0')) / 10));
1731 Result = Result * 10 + (*String - '0');
1735 return Result;
1775 UINT64 Result;
1796 Result = 0;
1803 ASSERT (Result <= DivU64x32 (((UINT64) ~0) - (*String - L'0') , 10));
1805 Result = MultU64x32 (Result, 10) + (*String - '0');
1809 return Result;
1852 UINTN Result;
1884 Result = 0;
1891 ASSERT (Result <= ((((UINTN) ~0) - InternalHexCharToUintn (*String)) >> 4));
1893 Result = (Result << 4) + InternalAsciiHexCharToUintn (*String);
1897 return Result;
1941 UINT64 Result;
1976 Result = 0;
1983 ASSERT (Result <= RShiftU64 (((UINT64) ~0) - InternalHexCharToUintn (*String) , 4));
1985 Result = LShiftU64 (Result, 4);
1986 Result = Result + InternalAsciiHexCharToUintn (*String);
1990 return Result;