Searched defs:put_obj (Results 1 - 3 of 3) 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

Completed in 78 milliseconds