Searched refs:mp1 (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.cpp444 const MemPointerRecordEx* mp1 = (const MemPointerRecordEx*)p1; local
446 return UNSIGNED_COMPARE(mp1->pc(), mp2->pc());
452 const MallocCallsitePointer* mp1 = (const MallocCallsitePointer*)p1; local
454 return UNSIGNED_COMPARE(mp2->amount(), mp1->amount());
460 const MallocCallsitePointer* mp1 = (const MallocCallsitePointer*)p1; local
462 return UNSIGNED_COMPARE(mp1->addr(), mp2->addr());
469 const VMCallsitePointer* mp1 = (const VMCallsitePointer*)p1; local
471 return UNSIGNED_COMPARE(mp2->reserved_amount(), mp1->reserved_amount());
477 const VMCallsitePointer* mp1 = (const VMCallsitePointer*)p1; local
479 return UNSIGNED_COMPARE(mp1
486 const MemPointerRecord* mp1 = (const MemPointerRecord*)p1; local
[all...]
H A DmemSnapshot.cpp354 const MemPointerRecord* mp1 = (MemPointerRecord*)p1; local
356 return (mp1->seq() - mp2->seq());
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/
H A DTestOAEPParameterSpec.java83 MGF1ParameterSpec mp1 = (MGF1ParameterSpec)s1.getMGFParameters();
85 alg1 = mp1.getDigestAlgorithm();
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.h252 void mp_exch(mp_int *mp1, mp_int *mp2);
H A Dmpi.c252 /* {{{ mp_exch(mp1, mp2) */
255 mp_exch(mp1, mp2)
257 Exchange mp1 and mp2 without allocating any intermediate memory
262 void mp_exch(mp_int *mp1, mp_int *mp2) argument
265 assert(mp1 != NULL && mp2 != NULL);
267 if(mp1 == NULL || mp2 == NULL)
271 s_mp_exch(mp1, mp2);

Completed in 67 milliseconds