Searched defs:put_obj (Results 1 - 7 of 7) sorted by relevance

/openjdk10/hotspot/src/cpu/arm/vm/
H A DjniTypes_arm.hpp74 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes
75 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes
76 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes
/openjdk10/hotspot/src/cpu/s390/vm/
H A DjniTypes_s390.hpp76 static inline void put_obj(oop from, intptr_t *to) { function in class:JNITypes
80 static inline void put_obj(oop from, intptr_t *to, int& pos) { function in class:JNITypes
84 static inline void put_obj(oop *from, intptr_t *to, int& pos) { function in class:JNITypes
/openjdk10/hotspot/src/cpu/ppc/vm/
H A DjniTypes_ppc.hpp75 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes
76 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes
77 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A DjniTypes_aarch64.hpp69 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes
70 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes
71 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes
/openjdk10/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
/openjdk10/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
/openjdk10/hotspot/src/cpu/sparc/vm/
H A DjniTypes_sparc.hpp64 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes
65 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes
66 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes

Completed in 98 milliseconds