Searched refs:put_double (Results 1 - 4 of 4) sorted by relevance

/openjdk7/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
/openjdk7/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
/openjdk7/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
/openjdk7/hotspot/src/share/vm/runtime/
H A DjavaCalls.hpp154 JNITypes::put_double(d, _value, _size); }

Completed in 29 milliseconds