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

/openjdk10/hotspot/src/cpu/arm/vm/
H A DjniTypes_arm.hpp62 static inline void put_long(jlong from, intptr_t *to) { *(jlong *)(to + 1 + 0) = from; } function in class:JNITypes
63 static inline void put_long(jlong from, intptr_t *to, int& pos) { *(jlong *)(to + 1 + pos) = from; pos += 2; } function in class:JNITypes
64 static inline void put_long(jlong *from, intptr_t *to, int& pos) { *(jlong *)(to + 1 + pos) = *from; pos += 2; } function in class:JNITypes
68 static inline void put_long(jlong from, intptr_t *to) { put_int2r((jint *)&from, to); } function in class:JNITypes
69 static inline void put_long(jlong from, intptr_t *to, int& pos) { put_int2r((jint *)&from, to, pos); } function in class:JNITypes
70 static inline void put_long(jlong *from, intptr_t *to, int& pos) { put_int2r((jint *) from, to, pos); } function in class:JNITypes
/openjdk10/hotspot/src/cpu/s390/vm/
H A DjniTypes_s390.hpp61 static inline void put_long(jlong from, intptr_t *to) { function in class:JNITypes
65 static inline void put_long(jlong from, intptr_t *to, int& pos) { function in class:JNITypes
70 static inline void put_long(jlong *from, intptr_t *to, int& pos) { function in class:JNITypes
/openjdk10/hotspot/src/cpu/ppc/vm/
H A DjniTypes_ppc.hpp60 static inline void put_long(jlong from, intptr_t *to) { function in class:JNITypes
64 static inline void put_long(jlong from, intptr_t *to, int& pos) { function in class:JNITypes
69 static inline void put_long(jlong *from, intptr_t *to, int& pos) { function in class:JNITypes
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A DjniTypes_aarch64.hpp54 static inline void put_long(jlong from, intptr_t *to) { function in class:JNITypes
58 static inline void put_long(jlong from, intptr_t *to, int& pos) { function in class:JNITypes
63 static inline void put_long(jlong *from, intptr_t *to, int& pos) { function in class:JNITypes
/openjdk10/hotspot/src/cpu/x86/vm/
H A DjniTypes_x86.hpp63 static inline void put_long(jlong from, intptr_t *to) { function in class:JNITypes
67 static inline void put_long(jlong from, intptr_t *to, int& pos) { function in class:JNITypes
72 static inline void put_long(jlong *from, intptr_t *to, int& pos) { function in class:JNITypes
79 static inline void put_long(jlong from, intptr_t *to) { put_int2r((jint *)&from, to); } function in class:JNITypes
80 static inline void put_long(jlong from, intptr_t *to, int& pos) { put_int2r((jint *)&from, to, pos); } function in class:JNITypes
81 static inline void put_long(jlong *from, intptr_t *to, int& pos) { put_int2r((jint *) from, to, pos); } function in class:JNITypes
/openjdk10/hotspot/src/cpu/zero/vm/
H A DjniTypes_zero.hpp60 static inline void put_long(jlong from, intptr_t *to) { *(jlong *)(to + 1 + 0) = from; } function in class:JNITypes
61 static inline void put_long(jlong from, intptr_t *to, int& pos) { *(jlong *)(to + 1 + pos) = from; pos += 2; } function in class:JNITypes
62 static inline void put_long(jlong *from, intptr_t *to, int& pos) { *(jlong *)(to + 1 + pos) = *from; pos += 2; } function in class:JNITypes
66 static inline void put_long(jlong from, intptr_t *to) { put_int2r((jint *)&from, (jint *)to); } function in class:JNITypes
67 static inline void put_long(jlong from, intptr_t *to, int& pos) { put_int2r((jint *)&from, (jint *)to, pos); } function in class:JNITypes
68 static inline void put_long(jlong *from, intptr_t *to, int& pos) { put_int2r((jint *) from, (jint *)to, pos); } function in class:JNITypes
/openjdk10/hotspot/src/cpu/sparc/vm/
H A DjniTypes_sparc.hpp59 static inline void put_long(jlong from, intptr_t *to) { *(jlong *)(to + 1 + 0) = from; } function in class:JNITypes
60 static inline void put_long(jlong from, intptr_t *to, int& pos) { *(jlong *)(to + 1 + pos) = from; pos += 2; } function in class:JNITypes
61 static inline void put_long(jlong *from, intptr_t *to, int& pos) { *(jlong *)(to + 1 + pos) = *from; pos += 2; } function in class:JNITypes

Completed in 69 milliseconds