Home
last modified time | relevance | path

Searched refs:compareValue (Results 1 – 5 of 5) sorted by relevance

/aosp12/packages/apps/TV/tests/common/src/com/android/tv/testing/
H A DComparatorTester.java135 int compareValue; in compare() local
137 compareValue = ((Comparable<Object>) a).compareTo(b); in compare()
139 compareValue = comparator.compare(a, b); in compare()
141 return compareValue; in compare()
/aosp12/frameworks/rs/script_api/
H A Drs_atomic.spec77 arg: int32_t compareValue, "Value to test *addr against."
81 If the value at addr matches compareValue then the newValue is written at addr,
82 i.e. <code>if (*addr == compareValue) { *addr = newValue; }</code>.
85 by rsAtomicCas() is compareValue.
93 arg: uint32_t compareValue
/aosp12/frameworks/rs/script_api/include/
H A Drs_atomic.rsh85 * If the value at addr matches compareValue then the newValue is written at addr,
86 * i.e. if (*addr == compareValue) { *addr = newValue; }.
89 * by rsAtomicCas() is compareValue.
93 * compareValue: Value to test *addr against.
100 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue);
105 rsAtomicCas(volatile uint32_t* addr, uint32_t compareValue, uint32_t newValue);
/aosp12/build/soong/android/
H A Ddepset_generic.go261 compareValue := slice.Index(compareIndex)
266 if readValue.Interface() == compareValue.Interface() {
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapObexServer.java829 String compareValue = "", currentValue; in createList() local
844 compareValue = names.get(i).trim(); in createList()
845 if (D) Log.d(TAG, "compareValue=" + compareValue); in createList()
851 if (currentValue.equals(compareValue)) { in createList()
871 compareValue = appParamValue.searchValue.trim().toLowerCase(); in createList()
884 .startsWith(compareValue.toLowerCase()))) { in createList()