HomeSort by relevance Sort by last modified time
    Searched full:comparevalue (Results 1 - 9 of 9) sorted by null

  /external/autotest/frontend/client/src/autotest/common/table/
JSONObjectComparator.java 18 int compareValue = 0;
22 compareValue = key0.compareTo(key1) * sortSpec.getDirectionMultiplier();
23 if (compareValue != 0) {
24 return compareValue;
  /frameworks/rs/scriptc/
rs_atomic.rsh 85 * 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);
  /prebuilts/sdk/renderscript/include/
rs_atomic.rsh 85 * 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);
  /frameworks/rs/api/
rs_atomic.spec 77 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
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fpieee.h 121 int CompareValue;
  /frameworks/rs/java/tests/Refocus/src/com/android/rs/test/
ImageCompare.java 47 public static class CompareValue {
52 public static void compareBitmap(Bitmap bitmap1, Bitmap bitmap2, CompareValue result) {
MainActivity.java 114 ImageCompare.CompareValue result;
129 result = new ImageCompare.CompareValue();
  /frameworks/base/docs/html/guide/topics/renderscript/reference/
rs_atomic.jd 195 <td><a href='rs_value_types.html#android_rs:int32_t'>int32_t</a> rsAtomicCas(volatile <a href='rs_value_types.html#android_rs:int32_t'>int32_t</a>* addr, <a href='rs_value_types.html#android_rs:int32_t'>int32_t</a> compareValue, <a href='rs_value_types.html#android_rs:int32_t'>int32_t</a> newValue);
201 <td><a href='rs_value_types.html#android_rs:uint32_t'>uint32_t</a> rsAtomicCas(volatile <a href='rs_value_types.html#android_rs:uint32_t'>uint32_t</a>* addr, <a href='rs_value_types.html#android_rs:uint32_t'>uint32_t</a> compareValue, <a href='rs_value_types.html#android_rs:uint32_t'>uint32_t</a> newValue);
211 <tr><th>compareValue</th><td>Value to test *addr against.</td></tr>
221 <p> If the value at addr matches compareValue then the newValue is written at addr,
222 i.e. <code>if (*addr == compareValue) { *addr = newValue; }</code>.
226 by rsAtomicCas() is compareValue.
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 645 String compareValue = "", currentValue;
654 compareValue = names.get(i).trim();
655 if (D) Log.d(TAG, "compareValue=" + compareValue);
660 if (currentValue.equals(compareValue)) {
673 compareValue = searchValue.trim().toLowerCase();
681 if (searchValue.isEmpty() || ((currentValue.toLowerCase()).startsWith(compareValue))) {
    [all...]

Completed in 158 milliseconds