Searched refs:LL_UCMP (Results 1 - 3 of 3) sorted by relevance

/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dlltest.c320 if ( !LL_UCMP( bigZero, ==, bigZero ))
321 SetFailed( "LL_UCMP", "0 == 0");
323 if ( LL_UCMP( bigZero, >, bigZero ))
324 SetFailed( "LL_UCMP", "0 > 0");
326 if ( LL_UCMP( bigZero, <, bigZero ))
327 SetFailed( "LL_UCMP", "0 < 0");
329 if ( LL_UCMP( bigNumber, <, bigOne ))
330 SetFailed( "LL_UCMP", "n < 1");
332 if ( !LL_UCMP( bigNumber, >, bigOne ))
333 SetFailed( "LL_UCMP", "
[all...]
/vbox/src/libs/xpcom18a4/xpcom/ds/
H A DnsInt64.h357 return LL_UCMP(aObject1.mValue, >, aObject2.mValue);
370 return ! LL_UCMP(aObject1.mValue, <, aObject2.mValue);
383 return LL_UCMP(aObject1.mValue, <, aObject2.mValue);
396 return ! LL_UCMP(aObject1.mValue, >, aObject2.mValue);
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprlong.h122 #define LL_UCMP(a, op, b) ((PRUint64)(a) op (PRUint64)(b)) macro
224 #define LL_UCMP(a, op, b) (((a).hi == (b).hi) ? ((a).lo op (b).lo) : \ macro

Completed in 46 milliseconds