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

/openjdk9/hotspot/src/cpu/ppc/vm/
H A DjniTypes_ppc.hpp86 static inline void put_double(jdouble from, intptr_t *to) { function in class:JNITypes
90 static inline void put_double(jdouble from, intptr_t *to, int& pos) { function in class:JNITypes
95 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { function in class:JNITypes
/openjdk9/hotspot/src/cpu/s390/vm/
H A DjniTypes_s390.hpp103 static inline void put_double(jdouble from, intptr_t *to) { function in class:JNITypes
107 static inline void put_double(jdouble from, intptr_t *to, int& pos) { function in class:JNITypes
112 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { function in class:JNITypes
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DjniTypes_aarch64.hpp82 static inline void put_double(jdouble from, intptr_t *to) { function in class:JNITypes
86 static inline void put_double(jdouble from, intptr_t *to, int& pos) { function in class:JNITypes
91 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { function in class:JNITypes
/openjdk9/hotspot/src/cpu/arm/vm/
H A DjniTypes_arm.hpp85 static inline void put_double(jdouble from, intptr_t *to) { *(jdouble *)(to + 1 + 0) = from; } function in class:JNITypes
86 static inline void put_double(jdouble from, intptr_t *to, int& pos) { *(jdouble *)(to + 1 + pos) = from; pos += 2; } function in class:JNITypes
87 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { *(jdouble *)(to + 1 + pos) = *from; pos += 2; } function in class:JNITypes
91 static inline void put_double(jdouble from, intptr_t *to) { put_int2r((jint *)&from, to); } function in class:JNITypes
92 static inline void put_double(jdouble from, intptr_t *to, int& pos) { put_int2r((jint *)&from, to, pos); } function in class:JNITypes
93 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { put_int2r((jint *) from, to, pos); } function in class:JNITypes
/openjdk9/hotspot/src/cpu/sparc/vm/
H A DjniTypes_sparc.hpp83 static inline void put_double(jdouble from, intptr_t *to) { *(jdouble *)(to + 1 + 0) = from; } function in class:JNITypes
84 static inline void put_double(jdouble from, intptr_t *to, int& pos) { *(jdouble *)(to + 1 + pos) = from; pos += 2; } function in class:JNITypes
85 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { *(jdouble *)(to + 1 + pos) = *from; pos += 2; } function in class:JNITypes
88 static inline void put_double(jdouble from, intptr_t *to) { put_int2r((jint *)&from, (jint *)to); } function in class:JNITypes
89 static inline void put_double(jdouble from, intptr_t *to, int& pos) { put_int2r((jint *)&from, (jint *)to, pos); } function in class:JNITypes
90 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { put_int2r((jint *) from, (jint *)to, pos); } function in class:JNITypes
/openjdk9/hotspot/src/cpu/x86/vm/
H A DjniTypes_x86.hpp99 static inline void put_double(jdouble from, intptr_t *to) { function in class:JNITypes
103 static inline void put_double(jdouble from, intptr_t *to, int& pos) { function in class:JNITypes
108 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { function in class:JNITypes
116 static inline void put_double(jdouble from, intptr_t *to) { put_int2r((jint *)&from, to); } function in class:JNITypes
117 static inline void put_double(jdouble from, intptr_t *to, int& pos) { put_int2r((jint *)&from, to, pos); } function in class:JNITypes
118 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { put_int2r((jint *) from, to, pos); } function in class:JNITypes
/openjdk9/hotspot/src/cpu/zero/vm/
H A DjniTypes_zero.hpp83 static inline void put_double(jdouble from, intptr_t *to) { *(jdouble *)(to + 1 + 0) = from; } function in class:JNITypes
84 static inline void put_double(jdouble from, intptr_t *to, int& pos) { *(jdouble *)(to + 1 + pos) = from; pos += 2; } function in class:JNITypes
85 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { *(jdouble *)(to + 1 + pos) = *from; pos += 2; } function in class:JNITypes
88 static inline void put_double(jdouble from, intptr_t *to) { put_int2r((jint *)&from, (jint *)to); } function in class:JNITypes
89 static inline void put_double(jdouble from, intptr_t *to, int& pos) { put_int2r((jint *)&from, (jint *)to, pos); } function in class:JNITypes
90 static inline void put_double(jdouble *from, intptr_t *to, int& pos) { put_int2r((jint *) from, (jint *)to, pos); } function in class:JNITypes

Completed in 73 milliseconds