Searched defs:put_int (Results 1 - 3 of 3) 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

Completed in 42 milliseconds