Searched refs:RTBIGNUMINIT_F_UNSIGNED (Results 1 - 5 of 5) sorted by relevance
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstRTBigNum.cpp | 601 if ( testHexStringToNum(&F1, s_aTests[i].pszF1, RTBIGNUMINIT_F_UNSIGNED | fFlags) 602 && testHexStringToNum(&F2, s_aTests[i].pszF2, RTBIGNUMINIT_F_UNSIGNED | fFlags) 603 && testHexStringToNum(&Expected, s_aTests[i].pszResult, RTBIGNUMINIT_F_UNSIGNED | fFlags)) 766 if ( testHexStringToNum(&Dividend, s_aTests[i].pszDividend, RTBIGNUMINIT_F_UNSIGNED | fFlags) 767 && testHexStringToNum(&Divisor, s_aTests[i].pszDivisor, RTBIGNUMINIT_F_UNSIGNED | fFlags) 768 && testHexStringToNum(&ExpectedQ, s_aTests[i].pszQuotient, RTBIGNUMINIT_F_UNSIGNED | fFlags) 769 && testHexStringToNum(&ExpectedR, s_aTests[i].pszRemainder, RTBIGNUMINIT_F_UNSIGNED | fFlags)) 938 if ( testHexStringToNum(&Base, s_aTests[i].pszBase, RTBIGNUMINIT_F_UNSIGNED | fFlags) 939 && testHexStringToNum(&Exponent, s_aTests[i].pszExponent, RTBIGNUMINIT_F_UNSIGNED | fFlags) 940 && testHexStringToNum(&Expected, s_aTests[i].pszResult, RTBIGNUMINIT_F_UNSIGNED | fFlag [all...] |
/vbox/include/iprt/ |
H A D | bignum.h | 116 #define RTBIGNUMINIT_F_UNSIGNED RT_BIT(3) macro
|
/vbox/src/VBox/Runtime/common/asn1/ |
H A D | asn1-ut-integer.cpp | 303 AssertReturn(!(fBigNumInit & ~( RTBIGNUMINIT_F_SENSITIVE | RTBIGNUMINIT_F_UNSIGNED | RTBIGNUMINIT_F_SIGNED 308 if (!(fBigNumInit & (RTBIGNUMINIT_F_UNSIGNED | RTBIGNUMINIT_F_SIGNED)))
|
/vbox/src/VBox/Runtime/common/crypto/ |
H A D | pkix-signature-rsa.cpp | 313 int rc = RTBigNumInit(&pThis->TmpBigNum1, RTBIGNUMINIT_F_ENDIAN_BIG | RTBIGNUMINIT_F_UNSIGNED,
|
/vbox/src/VBox/Runtime/common/math/ |
H A D | bignum.cpp | 576 AssertReturn(RT_BOOL(fFlags & RTBIGNUMINIT_F_UNSIGNED) ^ RT_BOOL(fFlags & RTBIGNUMINIT_F_SIGNED), VERR_INVALID_PARAMETER); 593 if (fFlags & RTBIGNUMINIT_F_UNSIGNED) 613 if (fFlags & RTBIGNUMINIT_F_UNSIGNED)
|
Completed in 73 milliseconds