Searched defs:mp2 (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.cpp445 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 DmemSnapshot.cpp355 const MemPointerRecord* mp2 = (MemPointerRecord*)p2; local
356 return (mp1->seq() - mp2->seq());
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
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 60 milliseconds