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

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

Completed in 32 milliseconds