HomeSort by relevance Sort by last modified time
    Searched refs:compareAndExchange (Results 1 - 8 of 8) sorted by null

  /art/test/954-invoke-polymorphic-verifier/smali/
VarHandleUnhappyAccessors.smali 28 invoke-static {v0, v1}, LVarHandleUnhappyAccessors;->compareAndExchange(Ljava/lang/invoke/VarHandle;[Ljava/lang/Object;)V
38 .method public static compareAndExchange(Ljava/lang/invoke/VarHandle;[Ljava/lang/Object;)V
40 invoke-polymorphic {p0, p1}, Ljava/lang/invoke/VarHandle;->compareAndExchange([Ljava/lang/Object;)Ljava/lang/Integer;, ([Ljava/lang/Object;)Ljava/lang/Object;
VarHandleHappyAccessors.smali 29 invoke-polymorphic {v0, v1}, Ljava/lang/invoke/VarHandle;->compareAndExchange([Ljava/lang/Object;)Ljava/lang/Object;, ([Ljava/lang/Object;)Ljava/lang/Object;
  /dalvik/dx/tests/141-invoke-polymorphic-varhandles/
VarHandleDexTest.java 40 boolean b1 = (boolean) vb.compareAndExchange(t, expectedValue, newValue);
41 vb.compareAndExchange(t, expectedValue, newValue);
109 Float f1 = (Float) vf.compareAndExchange(t, expectedValue, newValue);
110 vf.compareAndExchange(t, expectedValue, newValue);
180 String s1 = (String) vw.compareAndExchange(words, index, expectedValue, newValue);
181 vw.compareAndExchange(words, index, expectedValue, newValue);
  /art/runtime/mirror/
var_handle_test.cc 324 // Check compatibility - "CompareAndExchange" pattern
347 MethodType* compareAndExchange = MethodTypeOf("(Ljava/lang/Integer;II)I");
358 EXPECT_TRUE(fvh->GetMethodTypeForAccessMode(self, VarHandle::AccessMode::kCompareAndExchange)->IsExactMatch(compareAndExchange));
359 EXPECT_TRUE(fvh->GetMethodTypeForAccessMode(self, VarHandle::AccessMode::kCompareAndExchangeAcquire)->IsExactMatch(compareAndExchange));
360 EXPECT_TRUE(fvh->GetMethodTypeForAccessMode(self, VarHandle::AccessMode::kCompareAndExchangeRelease)->IsExactMatch(compareAndExchange));
458 // Check compatibility - "CompareAndExchange" pattern
482 MethodType* compareAndExchange = MethodTypeOf("(II)I");
493 EXPECT_TRUE(fvh->GetMethodTypeForAccessMode(self, VarHandle::AccessMode::kCompareAndExchange)->IsExactMatch(compareAndExchange));
494 EXPECT_TRUE(fvh->GetMethodTypeForAccessMode(self, VarHandle::AccessMode::kCompareAndExchangeAcquire)->IsExactMatch(compareAndExchange));
495 EXPECT_TRUE(fvh->GetMethodTypeForAccessMode(self, VarHandle::AccessMode::kCompareAndExchangeRelease)->IsExactMatch(compareAndExchange));
    [all...]
  /libcore/luni/src/main/native/
java_lang_invoke_VarHandle.cpp 43 ThrowUnsupportedOperationForAccessMode(env, "compareAndExchange");
197 NATIVE_METHOD(VarHandle, compareAndExchange, kVarHandleObjectSignature),
  /libcore/ojluni/src/main/java/java/lang/invoke/
VarHandle.java 149 * {@link #compareAndExchange compareAndExchange},
    [all...]
  /art/test/712-varhandle-invocations/src/
VarHandleBadCoordinateTests.java 293 vh.compareAndExchange(bytes, i, 777, 320);
640 vh.compareAndExchange(buffer, i, 777, 320);
    [all...]
VarHandleTypeConversionTests.java     [all...]

Completed in 366 milliseconds