Searched refs:put_obj (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DjniTypes_sparc.hpp72 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes
73 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes
74 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes
/openjdk7/hotspot/src/cpu/x86/vm/
H A DjniTypes_x86.hpp85 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes
86 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes
87 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes
/openjdk7/hotspot/src/cpu/zero/vm/
H A DjniTypes_zero.hpp72 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes
73 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes
74 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes
/openjdk7/hotspot/src/share/vm/runtime/
H A DjavaCalls.hpp148 JNITypes::put_obj((oop)h.raw_value(), _value, _size); }

Completed in 32 milliseconds