Searched refs:mp2 (Results 1 - 5 of 5) sorted by relevance
/openjdk7/hotspot/src/share/vm/services/ |
H A D | memBaseline.cpp | 445 const MemPointerRecordEx* mp2 = (const MemPointerRecordEx*)p2; local 446 return UNSIGNED_COMPARE(mp1->pc(), mp2->pc()); 453 const MallocCallsitePointer* mp2 = (const MallocCallsitePointer*)p2; local 454 return UNSIGNED_COMPARE(mp2->amount(), mp1->amount()); 461 const MallocCallsitePointer* mp2 = (const MallocCallsitePointer*)p2; local 462 return UNSIGNED_COMPARE(mp1->addr(), mp2->addr()); 470 const VMCallsitePointer* mp2 = (const VMCallsitePointer*)p2; local 471 return UNSIGNED_COMPARE(mp2->reserved_amount(), mp1->reserved_amount()); 478 const VMCallsitePointer* mp2 = (const VMCallsitePointer*)p2; local 479 return UNSIGNED_COMPARE(mp1->addr(), mp2 487 const MemPointerRecord* mp2 = (const MemPointerRecord*)p2; local [all...] |
H A D | memSnapshot.cpp | 355 const MemPointerRecord* mp2 = (MemPointerRecord*)p2; local 356 return (mp1->seq() - mp2->seq());
|
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/RSA/ |
H A D | TestOAEPParameterSpec.java | 84 MGF1ParameterSpec mp2 = (MGF1ParameterSpec)s2.getMGFParameters(); 86 alg2 = mp2.getDigestAlgorithm();
|
/openjdk7/jdk/src/share/native/sun/security/ec/impl/ |
H A D | mpi.h | 252 void mp_exch(mp_int *mp1, mp_int *mp2);
|
H A D | mpi.c | 252 /* {{{ 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 60 milliseconds