Searched defs:store_value (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Datomic_bsd_x86.inline.hpp35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument
36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument
37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument
38 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument
39 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; } argument
41 store(jbyte store_value, volatile jbyte* dest) argument
42 store(jshort store_value, volatile jshort* dest) argument
43 store(jint store_value, volatile jint* dest) argument
44 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument
45 store_ptr(void* store_value, volatile void* dest) argument
104 store(jlong store_value, jlong* dest) argument
105 store(jlong store_value, volatile jlong* dest) argument
211 store(jlong store_value, jlong* dest) argument
215 store(jlong store_value, volatile jlong* dest) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Datomic_linux_sparc.inline.hpp35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument
36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument
37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument
38 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; } argument
39 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument
40 store_ptr(void* store_value, void* dest) argument
42 store(jbyte store_value, volatile jbyte* dest) argument
43 store(jshort store_value, volatile jshort* dest) argument
44 store(jint store_value, volatile jint* dest) argument
45 store(jlong store_value, volatile jlong* dest) argument
46 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument
47 store_ptr(void* store_value, volatile void* dest) argument
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Datomic_linux_x86.inline.hpp35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument
36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument
37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument
38 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument
39 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; } argument
41 store(jbyte store_value, volatile jbyte* dest) argument
42 store(jshort store_value, volatile jshort* dest) argument
43 store(jint store_value, volatile jint* dest) argument
44 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument
45 store_ptr(void* store_value, volatile void* dest) argument
104 store(jlong store_value, jlong* dest) argument
105 store(jlong store_value, volatile jlong* dest) argument
211 store(jlong store_value, jlong* dest) argument
215 store(jlong store_value, volatile jlong* dest) argument
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Datomic_solaris_sparc.inline.hpp35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument
36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument
37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument
38 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument
39 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; } argument
41 store(jbyte store_value, volatile jbyte* dest) argument
42 store(jshort store_value, volatile jshort* dest) argument
43 store(jint store_value, volatile jint* dest) argument
44 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument
45 store_ptr(void* store_value, volatile void* dest) argument
58 store(jlong store_value, jlong* dest) argument
59 store(jlong store_value, volatile jlong* dest) argument
87 store(jlong store_value, jlong* dest) argument
91 store(jlong store_value, volatile jlong* dest) argument
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Datomic_bsd_zero.inline.hpp165 inline void Atomic::store(jint store_value, volatile jint* dest) { argument
169 *dest = store_value;
172 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { argument
176 *dest = store_value;
315 inline void Atomic::store(jlong store_value, jlong* dest) { argument
316 os::atomic_copy64((volatile jlong*)&store_value, (volatile jlong*)dest);
319 inline void Atomic::store(jlong store_value, volatile jlong* dest) { argument
320 os::atomic_copy64((volatile jlong*)&store_value, dest);
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Datomic_linux_zero.inline.hpp165 inline void Atomic::store(jint store_value, volatile jint* dest) { argument
166 *dest = store_value;
169 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { argument
170 *dest = store_value;
309 inline void Atomic::store(jlong store_value, jlong* dest) { argument
310 os::atomic_copy64((volatile jlong*)&store_value, (volatile jlong*)dest);
313 inline void Atomic::store(jlong store_value, volatile jlong* dest) { argument
314 os::atomic_copy64((volatile jlong*)&store_value, dest);
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Datomic_solaris_x86.inline.hpp33 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument
34 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument
35 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument
38 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument
39 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; } argument
41 store(jbyte store_value, volatile jbyte* dest) argument
42 store(jshort store_value, volatile jshort* dest) argument
43 store(jint store_value, volatile jint* dest) argument
44 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument
45 store_ptr(void* store_value, volatile void* dest) argument
97 store(jlong store_value, jlong* dest) argument
98 store(jlong store_value, volatile jlong* dest) argument
162 store(jlong store_value, jlong* dest) argument
166 store(jlong store_value, volatile jlong* dest) argument
[all...]
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Datomic_windows_x86.inline.hpp48 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument
49 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument
50 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument
52 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument
53 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest = store_value; } argument
55 store(jbyte store_value, volatile jbyte* dest) argument
56 store(jshort store_value, volatile jshort* dest) argument
57 store(jint store_value, volatile jint* dest) argument
60 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument
61 store_ptr(void* store_value, volatile void* dest) argument
73 store(jlong store_value, jlong* dest) argument
74 store(jlong store_value, volatile jlong* dest) argument
270 store(jlong store_value, volatile jlong* dest) argument
280 store(jlong store_value, jlong* dest) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp2395 bool PhaseIdealLoop::match_fill_loop(IdealLoopTree* lpt, Node*& store, Node*& store_value, argument
2400 store_value = NULL;
2427 store_value = value;
2633 Node* store_value = NULL; local
2636 if (!match_fill_loop(lpt, store, store_value, shift, offset)) {
2684 store_value = new (C) MoveF2INode(store_value);
2685 _igvn.register_new_node_with_optimizer(store_value);
2687 store_value = new (C) MoveD2LNode(store_value);
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp565 store_value(value);
639 void store_value(Value value) { function in class:MemoryBuffer
976 _memory->store_value(value);

Completed in 110 milliseconds