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

/openjdk9/hotspot/src/cpu/ppc/vm/
H A DjniTypes_ppc.hpp54 static inline void put_int(jint from, intptr_t *to) { *(jint *)(to + 0 ) = from; } function in class:JNITypes
55 static inline void put_int(jint from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = from; } function in class:JNITypes
56 static inline void put_int(jint *from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/s390/vm/
H A DjniTypes_s390.hpp48 static inline void put_int(jint from, intptr_t *to) { function in class:JNITypes
52 static inline void put_int(jint from, intptr_t *to, int& pos) { function in class:JNITypes
56 static inline void put_int(jint *from, intptr_t *to, int& pos) { function in class:JNITypes
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DjniTypes_aarch64.hpp48 static inline void put_int(jint from, intptr_t *to) { *(jint *)(to + 0 ) = from; } function in class:JNITypes
49 static inline void put_int(jint from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = from; } function in class:JNITypes
50 static inline void put_int(jint *from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/sparc/vm/
H A DjniTypes_sparc.hpp54 static inline void put_int(jint from, intptr_t *to) { *(jint *)(to + 0 ) = from; } function in class:JNITypes
55 static inline void put_int(jint from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = from; } function in class:JNITypes
56 static inline void put_int(jint *from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/x86/vm/
H A DjniTypes_x86.hpp56 static inline void put_int(jint from, intptr_t *to) { *(jint *)(to + 0 ) = from; } function in class:JNITypes
57 static inline void put_int(jint from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = from; } function in class:JNITypes
58 static inline void put_int(jint *from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/arm/vm/
H A DjniTypes_arm.hpp56 static inline void put_int(jint from, intptr_t *to) { *(jint *)(to + 0 ) = from; } function in class:JNITypes
57 static inline void put_int(jint from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = from; } function in class:JNITypes
58 static inline void put_int(jint *from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/zero/vm/
H A DjniTypes_zero.hpp54 static inline void put_int(jint from, intptr_t *to) { *(jint *)(to + 0 ) = from; } function in class:JNITypes
55 static inline void put_int(jint from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = from; } function in class:JNITypes
56 static inline void put_int(jint *from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/share/vm/runtime/
H A DjavaCalls.hpp178 JNITypes::put_int(i, _value, _size);

Completed in 115 milliseconds