Lines Matching defs:dest

39 inline void Atomic::store    (jbyte    store_value, jbyte*    dest) { *dest = store_value; }  in store()
40 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } in store()
41 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } in store()
42 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; } in store()
43 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } in store_ptr()
44 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; } in store_ptr()
46 inline void Atomic::store (jbyte store_value, volatile jbyte* dest) { *dest = store_value;… in store()
47 inline void Atomic::store (jshort store_value, volatile jshort* dest) { *dest = store_value;… in store()
48 inline void Atomic::store (jint store_value, volatile jint* dest) { *dest = store_value;… in store()
49 inline void Atomic::store (jlong store_value, volatile jlong* dest) { *dest = store_value;… in store()
50 inline void Atomic::store_ptr(intptr_t store_value, volatile intptr_t* dest) { *dest = store_value;… in store_ptr()
51 inline void Atomic::store_ptr(void* store_value, volatile void* dest) { *(void* volatile *)d… in store_ptr()
100 inline jint Atomic::add (jint add_value, volatile jint* dest) { in add()
119 inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) { in add_ptr()
137 inline void* Atomic::add_ptr(intptr_t add_value, volatile void* dest) { in add_ptr()
142 inline void Atomic::inc (volatile jint* dest) { in inc()
159 inline void Atomic::inc_ptr(volatile intptr_t* dest) { in inc_ptr()
176 inline void Atomic::inc_ptr(volatile void* dest) { in inc_ptr()
181 inline void Atomic::dec (volatile jint* dest) { in dec()
198 inline void Atomic::dec_ptr(volatile intptr_t* dest) { in dec_ptr()
215 inline void Atomic::dec_ptr(volatile void* dest) { in dec_ptr()
219 inline jint Atomic::xchg(jint exchange_value, volatile jint* dest) { in xchg()
255 inline intptr_t Atomic::xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) { in xchg_ptr()
291 inline void* Atomic::xchg_ptr(void* exchange_value, volatile void* dest) { in xchg_ptr()
295 inline jint Atomic::cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) { in cmpxchg()
339 inline jlong Atomic::cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) { in cmpxchg()
383 inline intptr_t Atomic::cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t comp… in cmpxchg_ptr()
387 inline void* Atomic::cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) { in cmpxchg_ptr()