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

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DjniTypes_sparc.hpp54 static inline void put_int(jint from, intptr_t *to) { *(jint *)(to + 0 ) = from; } function in class:JNITypes
55 static inline void put_int(jint from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = from; } function in class:JNITypes
56 static inline void put_int(jint *from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = *from; } function in class:JNITypes
/openjdk7/hotspot/src/cpu/x86/vm/
H A DjniTypes_x86.hpp56 static inline void put_int(jint from, intptr_t *to) { *(jint *)(to + 0 ) = from; } function in class:JNITypes
57 static inline void put_int(jint from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = from; } function in class:JNITypes
58 static inline void put_int(jint *from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = *from; } function in class:JNITypes
/openjdk7/hotspot/src/cpu/zero/vm/
H A DjniTypes_zero.hpp54 static inline void put_int(jint from, intptr_t *to) { *(jint *)(to + 0 ) = from; } function in class:JNITypes
55 static inline void put_int(jint from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = from; } function in class:JNITypes
56 static inline void put_int(jint *from, intptr_t *to, int& pos) { *(jint *)(to + pos++) = *from; } function in class:JNITypes
/openjdk7/hotspot/src/share/vm/runtime/
H A DjavaCalls.hpp151 JNITypes::put_int(i, _value, _size); }

Completed in 54 milliseconds