/openjdk7/langtools/test/tools/javac/capture/ |
H A D | Capture1.java | 38 public static <T> void copy1(List<? super T> dest, List<? extends T> src) { argument 39 copy1(dest, src); 40 copy2(dest, src); // oops 41 copy3(dest, src); // oops 43 public static <T> void copy2(List<T> dest, List<? extends T> src) { argument 44 copy1(dest, src); 45 copy2(dest, src); 46 copy3(dest, src); // oops 48 public static <T> void copy3(List<? super T> dest, List<T> src) { argument 49 copy1(dest, sr [all...] |
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | atomic.hpp | 39 static void store (jbyte store_value, jbyte* dest); 40 static void store (jshort store_value, jshort* dest); 41 static void store (jint store_value, jint* dest); 43 static void store (jlong store_value, jlong* dest); 44 static void store_ptr(intptr_t store_value, intptr_t* dest); 45 static void store_ptr(void* store_value, void* dest); 47 static void store (jbyte store_value, volatile jbyte* dest); 48 static void store (jshort store_value, volatile jshort* dest); 49 static void store (jint store_value, volatile jint* dest); 51 static void store (jlong store_value, volatile jlong* dest); [all...] |
H A D | basicLock.cpp | 33 void BasicLock::move_to(oop obj, BasicLock* dest) { argument 46 // basiclock in the interpreter frame. "dest" refers to the destination 76 dest->set_displaced_header(displaced_header());
|
H A D | atomic.cpp | 70 jbyte Atomic::cmpxchg(jbyte exchange_value, volatile jbyte* dest, jbyte compare_value) { argument 72 uintptr_t dest_addr = (uintptr_t)dest; 90 unsigned Atomic::xchg(unsigned int exchange_value, volatile unsigned int* dest) { argument 92 return (unsigned int)Atomic::xchg((jint)exchange_value, (volatile jint*)dest); 96 volatile unsigned int* dest, unsigned int compare_value) { 98 return (unsigned int)Atomic::cmpxchg((jint)exchange_value, (volatile jint*)dest, 102 jlong Atomic::add(jlong add_value, volatile jlong* dest) { argument 103 jlong old = load(dest); 105 while (old != cmpxchg(new_value, dest, old)) { 106 old = load(dest); 95 cmpxchg(unsigned int exchange_value, volatile unsigned int* dest, unsigned int compare_value) argument [all...] |
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/ |
H A D | atomic_linux_sparc.inline.hpp | 35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument 36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument 37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument 38 inline void Atomic::store (jlong store_value, jlong* dest) { *dest = store_value; } argument 39 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest argument 40 store_ptr(void* store_value, void* dest) argument 42 store(jbyte store_value, volatile jbyte* dest) argument 43 store(jshort store_value, volatile jshort* dest) argument 44 store(jint store_value, volatile jint* dest) argument 45 store(jlong store_value, volatile jlong* dest) argument 46 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument 47 store_ptr(void* store_value, volatile void* dest) argument 49 inc(volatile jint* dest) argument 50 inc_ptr(volatile intptr_t* dest) argument 51 inc_ptr(volatile void* dest) argument 53 dec(volatile jint* dest) argument 54 dec_ptr(volatile intptr_t* dest) argument 55 dec_ptr(volatile void* dest) argument 59 add(jint add_value, volatile jint* dest) argument 76 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 108 add_ptr(intptr_t add_value, volatile void* dest) argument 113 xchg(jint exchange_value, volatile jint* dest) argument 123 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 148 xchg_ptr(void* exchange_value, volatile void* dest) argument 153 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 163 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 196 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 214 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument [all...] |
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/ |
H A D | atomic_bsd_x86.inline.hpp | 35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument 36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument 37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument 38 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument 39 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest argument 41 store(jbyte store_value, volatile jbyte* dest) argument 42 store(jshort store_value, volatile jshort* dest) argument 43 store(jint store_value, volatile jint* dest) argument 44 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument 45 store_ptr(void* store_value, volatile void* dest) argument 51 add(jint add_value, volatile jint* dest) argument 61 inc(volatile jint* dest) argument 67 inc_ptr(volatile void* dest) argument 71 dec(volatile jint* dest) argument 77 dec_ptr(volatile void* dest) argument 81 xchg(jint exchange_value, volatile jint* dest) argument 89 xchg_ptr(void* exchange_value, volatile void* dest) argument 94 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 104 store(jlong store_value, jlong* dest) argument 105 store(jlong store_value, volatile jlong* dest) argument 107 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 117 add_ptr(intptr_t add_value, volatile void* dest) argument 121 inc_ptr(volatile intptr_t* dest) argument 129 dec_ptr(volatile intptr_t* dest) argument 137 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 145 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 154 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 158 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 166 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 170 add_ptr(intptr_t add_value, volatile void* dest) argument 175 inc_ptr(volatile intptr_t* dest) argument 179 dec_ptr(volatile intptr_t* dest) argument 183 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 193 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 197 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 201 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 206 volatile jlong dest; local 211 store(jlong store_value, jlong* dest) argument 215 store(jlong store_value, volatile jlong* dest) argument [all...] |
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/ |
H A D | atomic_linux_x86.inline.hpp | 35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument 36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument 37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument 38 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument 39 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest argument 41 store(jbyte store_value, volatile jbyte* dest) argument 42 store(jshort store_value, volatile jshort* dest) argument 43 store(jint store_value, volatile jint* dest) argument 44 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument 45 store_ptr(void* store_value, volatile void* dest) argument 51 add(jint add_value, volatile jint* dest) argument 61 inc(volatile jint* dest) argument 67 inc_ptr(volatile void* dest) argument 71 dec(volatile jint* dest) argument 77 dec_ptr(volatile void* dest) argument 81 xchg(jint exchange_value, volatile jint* dest) argument 89 xchg_ptr(void* exchange_value, volatile void* dest) argument 94 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 104 store(jlong store_value, jlong* dest) argument 105 store(jlong store_value, volatile jlong* dest) argument 107 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 117 add_ptr(intptr_t add_value, volatile void* dest) argument 121 inc_ptr(volatile intptr_t* dest) argument 129 dec_ptr(volatile intptr_t* dest) argument 137 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 145 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 154 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 158 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 166 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 170 add_ptr(intptr_t add_value, volatile void* dest) argument 175 inc_ptr(volatile intptr_t* dest) argument 179 dec_ptr(volatile intptr_t* dest) argument 183 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 193 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 197 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 201 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 206 volatile jlong dest; local 211 store(jlong store_value, jlong* dest) argument 215 store(jlong store_value, volatile jlong* dest) argument [all...] |
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/ |
H A D | atomic_solaris_x86.inline.hpp | 33 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument 34 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument 35 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument 38 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument 39 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest argument 41 store(jbyte store_value, volatile jbyte* dest) argument 42 store(jshort store_value, volatile jshort* dest) argument 43 store(jint store_value, volatile jint* dest) argument 44 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument 45 store_ptr(void* store_value, volatile void* dest) argument 47 inc(volatile jint* dest) argument 48 inc_ptr(volatile intptr_t* dest) argument 49 inc_ptr(volatile void* dest) argument 51 dec(volatile jint* dest) argument 52 dec_ptr(volatile intptr_t* dest) argument 53 dec_ptr(volatile void* dest) argument 79 add(jint add_value, volatile jint* dest) argument 83 xchg(jint exchange_value, volatile jint* dest) argument 87 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 91 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 97 store(jlong store_value, jlong* dest) argument 98 store(jlong store_value, volatile jlong* dest) argument 102 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 106 add_ptr(intptr_t add_value, volatile void* dest) argument 110 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 114 xchg_ptr(void* exchange_value, volatile void* dest) argument 118 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 122 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 130 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 134 add_ptr(intptr_t add_value, volatile void* dest) argument 138 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 142 xchg_ptr(void* exchange_value, volatile void* dest) argument 146 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 150 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 157 volatile jlong dest; local 162 store(jlong store_value, jlong* dest) argument 166 store(jlong store_value, volatile jlong* dest) argument 177 _Atomic_add(jint add_value, volatile jint* dest, int mp) argument 187 _Atomic_add_long(jlong add_value, volatile jlong* dest, int mp) argument 196 _Atomic_xchg_long(jlong exchange_value, volatile jlong* dest) argument 206 _Atomic_xchg(jint exchange_value, volatile jint* dest) argument 214 _Atomic_cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value, int mp) argument 225 _Atomic_cmpxchg_long(jlong exchange_value, volatile jlong* dest, jlong compare_value, int mp) argument [all...] |
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/ |
H A D | atomic_windows_x86.inline.hpp | 48 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument 49 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument 50 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument 52 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument 53 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest argument 55 store(jbyte store_value, volatile jbyte* dest) argument 56 store(jshort store_value, volatile jshort* dest) argument 57 store(jint store_value, volatile jint* dest) argument 60 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument 61 store_ptr(void* store_value, volatile void* dest) argument 73 store(jlong store_value, jlong* dest) argument 74 store(jlong store_value, volatile jlong* dest) argument 76 add(jint add_value, volatile jint* dest) argument 80 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 84 add_ptr(intptr_t add_value, volatile void* dest) argument 88 inc(volatile jint* dest) argument 92 inc_ptr(volatile intptr_t* dest) argument 96 inc_ptr(volatile void* dest) argument 100 dec(volatile jint* dest) argument 104 dec_ptr(volatile intptr_t* dest) argument 108 dec_ptr(volatile void* dest) argument 112 xchg(jint exchange_value, volatile jint* dest) argument 116 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 120 xchg_ptr(void* exchange_value, volatile void* dest) argument 124 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 128 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 132 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 136 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 144 add(jint add_value, volatile jint* dest) argument 147 mov edx, dest; local 156 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 160 add_ptr(intptr_t add_value, volatile void* dest) argument 164 inc(volatile jint* dest) argument 168 mov edx, dest; local 174 inc_ptr(volatile intptr_t* dest) argument 178 inc_ptr(volatile void* dest) argument 182 dec(volatile jint* dest) argument 186 mov edx, dest; local 192 dec_ptr(volatile intptr_t* dest) argument 196 dec_ptr(volatile void* dest) argument 200 xchg(jint exchange_value, volatile jint* dest) argument 204 mov ecx, dest; local 209 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 213 xchg_ptr(void* exchange_value, volatile void* dest) argument 217 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 229 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 250 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 254 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 259 volatile jlong dest; local 270 store(jlong store_value, volatile jlong* dest) argument 280 store(jlong store_value, jlong* dest) argument [all...] |
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/ |
H A D | atomic_solaris_sparc.inline.hpp | 35 inline void Atomic::store (jbyte store_value, jbyte* dest) { *dest = store_value; } argument 36 inline void Atomic::store (jshort store_value, jshort* dest) { *dest = store_value; } argument 37 inline void Atomic::store (jint store_value, jint* dest) { *dest = store_value; } argument 38 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { *dest = store_value; } argument 39 inline void Atomic::store_ptr(void* store_value, void* dest) { *(void**)dest argument 41 store(jbyte store_value, volatile jbyte* dest) argument 42 store(jshort store_value, volatile jshort* dest) argument 43 store(jint store_value, volatile jint* dest) argument 44 store_ptr(intptr_t store_value, volatile intptr_t* dest) argument 45 store_ptr(void* store_value, volatile void* dest) argument 47 inc(volatile jint* dest) argument 48 inc_ptr(volatile intptr_t* dest) argument 49 inc_ptr(volatile void* dest) argument 51 dec(volatile jint* dest) argument 52 dec_ptr(volatile intptr_t* dest) argument 53 dec_ptr(volatile void* dest) argument 58 store(jlong store_value, jlong* dest) argument 59 store(jlong store_value, volatile jlong* dest) argument 82 volatile jlong dest; local 87 store(jlong store_value, jlong* dest) argument 91 store(jlong store_value, volatile jlong* dest) argument 99 add(jint add_value, volatile jint* dest) argument 116 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 148 add_ptr(intptr_t add_value, volatile void* dest) argument 153 xchg(jint exchange_value, volatile jint* dest) argument 163 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 188 xchg_ptr(void* exchange_value, volatile void* dest) argument 193 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 203 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 236 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 254 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 279 add(jint add_value, volatile jint* dest) argument 283 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 291 add_ptr(intptr_t add_value, volatile void* dest) argument 296 xchg(jint exchange_value, volatile jint* dest) argument 300 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 308 xchg_ptr(void* exchange_value, volatile void* dest) argument 313 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 317 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 328 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 336 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 346 add(jint add_value, volatile jint* dest) argument 350 add_ptr(intptr_t add_value, volatile intptr_t* dest) argument 354 add_ptr(intptr_t add_value, volatile void* dest) argument 359 xchg(jint exchange_value, volatile jint* dest) argument 363 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 367 xchg_ptr(void* exchange_value, volatile void* dest) argument 372 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 376 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 380 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 384 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument [all...] |
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/ |
H A D | Edge.java | 34 private Node<N, E> dest; field in class:Edge 36 protected Edge(Graph<N, E> graph, Node<N, E> source, Node<N, E> dest, E data) { argument 39 this.dest = dest; 41 assert dest != null; 42 assert source.getGraph() == dest.getGraph(); 44 assert dest.getGraph() != null; 52 return dest; 68 return source == dest; 73 // Remove from current source / dest [all...] |
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/ |
H A D | atomic_bsd_zero.inline.hpp | 165 inline void Atomic::store(jint store_value, volatile jint* dest) { argument 169 *dest = store_value; 172 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { argument 176 *dest = store_value; 179 inline jint Atomic::add(jint add_value, volatile jint* dest) { argument 181 return arm_add_and_fetch(dest, add_value); 184 return m68k_add_and_fetch(dest, add_value); 186 return __sync_add_and_fetch(dest, add_value); 191 inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) { argument 193 return arm_add_and_fetch(dest, add_valu 203 add_ptr(intptr_t add_value, volatile void* dest) argument 207 inc(volatile jint* dest) argument 211 inc_ptr(volatile intptr_t* dest) argument 215 inc_ptr(volatile void* dest) argument 219 dec(volatile jint* dest) argument 223 dec_ptr(volatile intptr_t* dest) argument 227 dec_ptr(volatile void* dest) argument 231 xchg(jint exchange_value, volatile jint* dest) argument 247 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 260 xchg_ptr(void* exchange_value, volatile void* dest) argument 265 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 279 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 286 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 300 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 310 volatile jlong dest; local 315 store(jlong store_value, jlong* dest) argument 319 store(jlong store_value, volatile jlong* dest) argument [all...] |
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/ |
H A D | atomic_linux_zero.inline.hpp | 165 inline void Atomic::store(jint store_value, volatile jint* dest) { argument 166 *dest = store_value; 169 inline void Atomic::store_ptr(intptr_t store_value, intptr_t* dest) { argument 170 *dest = store_value; 173 inline jint Atomic::add(jint add_value, volatile jint* dest) { argument 175 return arm_add_and_fetch(dest, add_value); 178 return m68k_add_and_fetch(dest, add_value); 180 return __sync_add_and_fetch(dest, add_value); 185 inline intptr_t Atomic::add_ptr(intptr_t add_value, volatile intptr_t* dest) { argument 187 return arm_add_and_fetch(dest, add_valu 197 add_ptr(intptr_t add_value, volatile void* dest) argument 201 inc(volatile jint* dest) argument 205 inc_ptr(volatile intptr_t* dest) argument 209 inc_ptr(volatile void* dest) argument 213 dec(volatile jint* dest) argument 217 dec_ptr(volatile intptr_t* dest) argument 221 dec_ptr(volatile void* dest) argument 225 xchg(jint exchange_value, volatile jint* dest) argument 241 xchg_ptr(intptr_t exchange_value, volatile intptr_t* dest) argument 254 xchg_ptr(void* exchange_value, volatile void* dest) argument 259 cmpxchg(jint exchange_value, volatile jint* dest, jint compare_value) argument 273 cmpxchg(jlong exchange_value, volatile jlong* dest, jlong compare_value) argument 280 cmpxchg_ptr(intptr_t exchange_value, volatile intptr_t* dest, intptr_t compare_value) argument 294 cmpxchg_ptr(void* exchange_value, volatile void* dest, void* compare_value) argument 304 volatile jlong dest; local 309 store(jlong store_value, jlong* dest) argument 313 store(jlong store_value, volatile jlong* dest) argument [all...] |
/openjdk7/jdk/test/javax/sound/midi/Gervill/ModelDestination/ |
H A D | NewModelDestination.java | 40 ModelDestination dest = new ModelDestination(); 41 if(dest.getIdentifier() != ModelDestination.DESTINATION_NONE) 42 throw new RuntimeException("dest.getIdentifier() is not equals ModelDestination.DESTINATION_NONE!"); 43 if(!(dest.getTransform() instanceof ModelStandardTransform)) 44 throw new RuntimeException("dest.getTransform() is not instancoef ModelStandardTransform!");
|
H A D | NewModelDestinationModelIdentifier.java | 40 ModelDestination dest = new ModelDestination(ModelDestination.DESTINATION_EG1_ATTACK); 41 if(dest.getIdentifier() != ModelDestination.DESTINATION_EG1_ATTACK) 42 throw new RuntimeException("dest.getIdentifier() is not equals ModelDestination.DESTINATION_EG1_ATTACK!"); 43 if(!(dest.getTransform() instanceof ModelStandardTransform)) 44 throw new RuntimeException("dest.getTransform() is not instancoef ModelStandardTransform!");
|
H A D | SetIdentifier.java | 40 ModelDestination dest = new ModelDestination(); 41 dest.setIdentifier(ModelDestination.DESTINATION_EG1_ATTACK); 42 if(dest.getIdentifier() != ModelDestination.DESTINATION_EG1_ATTACK) 43 throw new RuntimeException("dest.getIdentifier() is not equals ModelDestination.DESTINATION_EG1_ATTACK!");
|
H A D | SetTransform.java | 40 ModelDestination dest = new ModelDestination(); 42 dest.setTransform(newtransform); 43 if(dest.getTransform() != newtransform) 44 throw new RuntimeException("dest.getTransform() is incorrect!");
|
/openjdk7/hotspot/src/cpu/zero/vm/ |
H A D | nativeInst_zero.cpp | 41 // (dest) at the start of a compiled method (verified_entry) to avoid 51 address dest) { 52 assert(dest == SharedRuntime::get_handle_wrong_method_stub(), "should be"); 49 patch_verified_entry(address entry, address verified_entry, address dest) argument
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/ |
H A D | X86FPStoreInstruction.java | 31 final private Operand dest; field in class:X86FPStoreInstruction 35 this.dest = op; 43 buf.append(dest.toString());
|
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | IDN.java | 251 StringBuffer dest; 258 dest = namePrep.prepare(iter, flag); 263 dest = new StringBuffer(label); 272 for (int i = 0; i < dest.length(); i++) { 273 int c = dest.charAt(i); 279 if (dest.charAt(0) == '-' || dest.charAt(dest.length() - 1) == '-') { 287 if (!isAllASCII(dest.toString())) { 290 if(!startsWithACEPrefix(dest)){ [all...] |
/openjdk7/jdk/src/share/classes/java/text/ |
H A D | RuleBasedCollationKey.java | 105 byte[] dest = new byte[ 2*src.length ]; 108 dest[j++] = (byte)(src[i] >>> 8); 109 dest[j++] = (byte)(src[i] & 0x00ff); 111 return dest;
|
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/digest/ |
H A D | SecurityCtx.java | 47 byte[] wrap(byte[] dest, int start, int len) argument
|
/openjdk7/hotspot/test/compiler/6661247/ |
H A D | Test.java | 40 public static void test(boolean[] src, int srcPos, LongBuffer dest, long destPos, int count) { argument 46 dest.put((int)(destPos >>> 6), dest.get((int)(destPos >>> 6)) | 1L << (destPos & 63)); 48 dest.put((int)(destPos >>> 6), dest.get((int)(destPos >>> 6)) & ~(1L << (destPos & 63))); 121 dest.put(k, ((long)low & 0xFFFFFFFFL) | (((long)high) << 32)); 127 dest.put((int)(destPos >>> 6), dest.get((int)(destPos >>> 6)) | 1L << (destPos & 63)); 129 dest.put((int)(destPos >>> 6), dest [all...] |
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/ |
H A D | jinclude.h | 66 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size)) 72 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
|
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/ |
H A D | JDMAclBlock.java | 54 public void buildTrapEntries(Hashtable dest) {} argument 60 public void buildInformEntries(Hashtable dest) {} argument
|