Searched refs:copy_array (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayKlass.hpp65 void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS);
H A DobjArrayKlass.hpp66 void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS);
H A DtypeArrayKlass.cpp122 void typeArrayKlass::copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS) { function in class:typeArrayKlass
143 // This is an attempt to make the copy_array fast.
H A Dklass.cpp108 void Klass::copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS) { function in class:Klass
H A Dklass.hpp509 virtual void copy_array(arrayOop s, int src_pos, arrayOop d, int dst_pos, int length, TRAPS);
H A DobjArrayKlass.cpp169 void objArrayKlass::copy_array(arrayOop s, int src_pos, arrayOop d, function in class:objArrayKlass
188 // This allows the following call: copy_array(s, s.length(), d.length(), 0).
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp1774 // Do the copy. The casts to arrayOop are necessary to the copy_array API,
1775 // even though the copy_array API also performs dynamic checks to ensure
1777 // The copy_array mechanism is awkward and could be removed, but
1780 Klass::cast(src->klass())->copy_array((arrayOopDesc*)src, src_pos,
/openjdk7/hotspot/src/share/vm/prims/
H A Djvm.cpp309 Klass::cast(s->klass())->copy_array(s, src_pos, d, dst_pos, length, thread);

Completed in 63 milliseconds