Searched defs:put_obj (Results 1 - 3 of 3) sorted by relevance
| /openjdk7/hotspot/src/cpu/sparc/vm/ |
| H A D | jniTypes_sparc.hpp | 72 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes 73 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes 74 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes
|
| /openjdk7/hotspot/src/cpu/x86/vm/ |
| H A D | jniTypes_x86.hpp | 85 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes 86 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes 87 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes
|
| /openjdk7/hotspot/src/cpu/zero/vm/ |
| H A D | jniTypes_zero.hpp | 72 static inline void put_obj(oop from, intptr_t *to) { *(oop *)(to + 0 ) = from; } function in class:JNITypes 73 static inline void put_obj(oop from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = from; } function in class:JNITypes 74 static inline void put_obj(oop *from, intptr_t *to, int& pos) { *(oop *)(to + pos++) = *from; } function in class:JNITypes
|
Completed in 78 milliseconds