HomeSort by relevance Sort by last modified time
    Searched refs:compareValue (Results 1 - 25 of 27) sorted by null

1 2

  /external/webrtc/src/system_wrappers/source/
atomic32.cc 75 WebRtc_Word32 compareValue)
77 return _impl.CompareExchange(newValue,compareValue);
atomic32_linux.h 38 WebRtc_Word32 compareValue);
108 WebRtc_Word32 compareValue)
110 return __sync_bool_compare_and_swap(_value,compareValue,newValue);
atomic32_mac.h 37 WebRtc_Word32 compareValue);
104 WebRtc_Word32 compareValue)
107 compareValue,
  /external/webrtc/src/system_wrappers/interface/
atomic32_wrapper.h 39 bool CompareExchange(WebRtc_Word32 newValue, WebRtc_Word32 compareValue);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
NullEncodedValue.java 59 protected int compareValue(EncodedValue o) {
BooleanEncodedValue.java 91 protected int compareValue(EncodedValue o) {
ByteEncodedValue.java 71 protected int compareValue(EncodedValue o) {
EncodedValue.java 96 comp = compareValue(o);
107 protected abstract int compareValue(EncodedValue o);
CharEncodedValue.java 78 protected int compareValue(EncodedValue o) {
DoubleEncodedValue.java 78 protected int compareValue(EncodedValue o) {
EnumEncodedValue.java 80 protected int compareValue(EncodedValue o) {
FieldEncodedValue.java 80 protected int compareValue(EncodedValue o) {
FloatEncodedValue.java 78 protected int compareValue(EncodedValue o) {
IntEncodedValue.java 76 protected int compareValue(EncodedValue o) {
LongEncodedValue.java 76 protected int compareValue(EncodedValue o) {
MethodEncodedValue.java 80 protected int compareValue(EncodedValue o) {
ShortEncodedValue.java 76 protected int compareValue(EncodedValue o) {
StringEncodedValue.java 81 protected int compareValue(EncodedValue o) {
TypeEncodedValue.java 80 protected int compareValue(EncodedValue o) {
ArrayEncodedSubValue.java 99 protected int compareValue(EncodedValue o) {
AnnotationEncodedSubValue.java 116 protected int compareValue(EncodedValue o) {
  /external/webkit/Source/WebCore/css/
MediaQueryEvaluator.cpp 197 bool compareValue(T a, T b, MediaFeaturePrefix op)
225 return numberValue(value, number) && compareValue(bitsPerComponent, static_cast<int>(number), op);
235 return numberValue(value, number) && compareValue(0, static_cast<int>(number), op);
266 return v != 0 && compareValue(width * v, height * h, op);
282 return v != 0 && compareValue(static_cast<int>(sg.width()) * v, static_cast<int>(sg.height()) * h, op);
294 return value->isPrimitiveValue() && compareValue(frame->page()->chrome()->scaleFactor(), static_cast<CSSPrimitiveValue*>(value)->getFloatValue(), op);
305 return compareValue(static_cast<int>(number), 0, op);
314 return value->isPrimitiveValue() && compareValue(static_cast<int>(sg.height()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);
326 return value->isPrimitiveValue() && compareValue(static_cast<int>(sg.width()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);
339 return value->isPrimitiveValue() && compareValue(view->layoutHeight(), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), (…)
    [all...]
  /frameworks/rs/scriptc/
rs_atomic.rsh 222 * If the value at addr matches compareValue then newValue is written.
225 * @param compareValue The value to test addr[0] against.
231 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue);
236 * If the value at addr matches compareValue then newValue is written.
239 * @param compareValue The value to test addr[0] against.
245 rsAtomicCas(volatile uint32_t* addr, uint32_t compareValue, uint32_t newValue);
  /prebuilts/sdk/renderscript/include/
rs_atomic.rsh 222 * If the value at addr matches compareValue then newValue is written.
225 * @param compareValue The value to test addr[0] against.
231 rsAtomicCas(volatile int32_t* addr, int32_t compareValue, int32_t newValue);
236 * If the value at addr matches compareValue then newValue is written.
239 * @param compareValue The value to test addr[0] against.
245 rsAtomicCas(volatile uint32_t* addr, int32_t compareValue, int32_t newValue);
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 597 String compareValue = "", currentValue;
606 compareValue = names.get(i).trim();
607 if (D) Log.d(TAG, "compareValue=" + compareValue);
612 if (currentValue.startsWith(compareValue)) {
624 compareValue = searchValue.trim();
630 if (searchValue == null || currentValue.startsWith(compareValue)) {
    [all...]

Completed in 395 milliseconds

1 2