HomeSort by relevance Sort by last modified time
    Searched defs:mVal (Results 1 - 11 of 11) sorted by null

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
MSTo2i_Sat_16x16.c 33 LVM_INT32 temp,mVal,sVal;
39 mVal=(LVM_INT32)*srcM;
45 temp = mVal + sVal;
61 temp = mVal - sVal;
86 LVM_FLOAT temp,mVal,sVal;
92 mVal = (LVM_FLOAT)*srcM;
98 temp = mVal + sVal;
114 temp = mVal - sVal;
  /art/test/003-omnibus-opcodes/src/
Monitor.java 22 public static int mVal = 0;
27 mVal++;
41 mVal++;
50 mVal++;
55 Main.assertTrue(mVal == 2);
  /development/vndk/tools/header-checker/tests/input/
example1.h 72 explicit _Node(const T& val) : mVal(val) {}
74 inline T& getRef() { return mVal; }
75 inline const T& getRef() const { return mVal; }
79 T mVal;
  /sdk/testapps/testSensors/src/com/android/tests/testsensors/
TestSensorsActivity.java 49 private final TextView mVal;
71 mVal = (TextView) row.findViewById(R.id.row_textview_value);
72 mVal.setText("");
189 mVal.setText(val);
  /system/core/libsysutils/include/sysutils/
List.h 51 explicit _Node(const T& val) : mVal(val) {}
53 inline T& getRef() { return mVal; }
54 inline const T& getRef() const { return mVal; }
57 inline void setVal(const T& val) { mVal = val; }
63 T mVal;
  /system/core/libutils/include/utils/
List.h 50 explicit _Node(const T& val) : mVal(val) {}
52 inline T& getRef() { return mVal; }
53 inline const T& getRef() const { return mVal; }
56 inline void setVal(const T& val) { mVal = val; }
62 T mVal;
  /system/keymaster/
List.h 50 explicit _Node(const T& val) : mVal(val) {}
52 inline T& getRef() { return mVal; }
53 inline const T& getRef() const { return mVal; }
56 inline void setVal(const T& val) { mVal = val; }
62 T mVal;
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
SensorActivity.java 208 private TextView mVal;
222 mVal = (TextView) row.findViewById(R.id.row_textview);
223 mVal.setText(sensor.getValue());
240 mVal = null;
253 if (mVal != null && mSensor != null) {
254 mVal.setText(mSensor.getValue());
  /tools/loganalysis/tests/src/com/android/loganalysis/util/config/
OptionSetterTest.java 195 private int mVal;
198 mVal = val;
202 return mVal;
  /tools/tradefederation/core/tests/src/com/android/tradefed/config/
OptionSetterTest.java 240 private int mVal;
243 mVal = val;
247 return mVal;
    [all...]
  /packages/apps/ExactCalculator/src/com/android/calculator2/
Evaluator.java 286 * All fields other than mExpr and mVal are touched only by the UI thread.
287 * For MAIN_INDEX, mExpr and mVal may change, but are also only ever touched by the UI thread.
289 * added to mExprs. mVal may be asynchronously set by any thread, but we take care that it
298 mVal = new AtomicReference<UnifiedReal>();
309 // mVal always points to an AtomicReference, but that may be null.
310 public AtomicReference<UnifiedReal> mVal;
573 UnifiedReal res = mExprInfo.mVal.get();
655 // mExprInfo.mVal was already set asynchronously by child thread.
    [all...]

Completed in 398 milliseconds