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

/openjdk9/hotspot/src/cpu/ppc/vm/
H A DjniTypes_ppc.hpp80 static inline void put_float(jfloat from, intptr_t *to) { *(jfloat *)(to + 0 ) = from; } function in class:JNITypes
81 static inline void put_float(jfloat from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = from; } function in class:JNITypes
82 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/s390/vm/
H A DjniTypes_s390.hpp89 static inline void put_float(jfloat from, intptr_t *to) { function in class:JNITypes
93 static inline void put_float(jfloat from, intptr_t *to, int& pos) { function in class:JNITypes
97 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { function in class:JNITypes
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A DjniTypes_aarch64.hpp74 static inline void put_float(jfloat from, intptr_t *to) { *(jfloat *)(to + 0 ) = from; } function in class:JNITypes
75 static inline void put_float(jfloat from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = from; } function in class:JNITypes
76 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/arm/vm/
H A DjniTypes_arm.hpp79 static inline void put_float(jfloat from, intptr_t *to) { *(jfloat *)(to + 0 ) = from; } function in class:JNITypes
80 static inline void put_float(jfloat from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = from; } function in class:JNITypes
81 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/sparc/vm/
H A DjniTypes_sparc.hpp77 static inline void put_float(jfloat from, intptr_t *to) { *(jfloat *)(to + 0 ) = from; } function in class:JNITypes
78 static inline void put_float(jfloat from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = from; } function in class:JNITypes
79 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/x86/vm/
H A DjniTypes_x86.hpp90 static inline void put_float(jfloat from, intptr_t *to) { *(jfloat *)(to + 0 ) = from; } function in class:JNITypes
91 static inline void put_float(jfloat from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = from; } function in class:JNITypes
92 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = *from; } function in class:JNITypes
/openjdk9/hotspot/src/cpu/zero/vm/
H A DjniTypes_zero.hpp77 static inline void put_float(jfloat from, intptr_t *to) { *(jfloat *)(to + 0 ) = from; } function in class:JNITypes
78 static inline void put_float(jfloat from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = from; } function in class:JNITypes
79 static inline void put_float(jfloat *from, intptr_t *to, int& pos) { *(jfloat *)(to + pos++) = *from; } function in class:JNITypes

Completed in 40 milliseconds