HomeSort by relevance Sort by last modified time
    Searched defs:val (Results 76 - 100 of 3969) sorted by null

1 2 34 5 6 7 8 91011>>

  /hardware/bsp/intel/peripheral/libupm/examples/c++/
a110x.cxx 53 bool val = hall->magnetDetected(); local
54 if (val)
adc121c021.cxx 55 uint16_t val = adc->value(); local
56 cout << "ADC value: " << val << " Volts = "
57 << adc->valueToVolts(val) << endl;
apds9002.cxx 51 int val = luminance->value(); local
52 cout << "Luminance value is " << val << endl;
biss0001.cxx 51 bool val = motion->value(); local
53 if (val)
enc03r.cxx 65 unsigned int val = gyro->value(); local
66 double av = gyro->angularVelocity(val);
68 cout << "Raw value: " << val << ", "
grovelinefinder.cxx 52 bool val = finder->whiteDetected(); local
53 if (val)
grovemoisture.cxx 56 int val = moisture->value(); local
57 cout << "Moisture value: " << val << ", "; local
58 if (val >= 0 && val < 300)
60 else if (val >= 300 && val < 600)
grovevdiv.cxx 53 unsigned int val = vDiv->value(100); local
54 float gain3val = vDiv->computedValue(3, val);
55 float gain10val = vDiv->computedValue(10, val);
56 cout << "ADC value: " << val << " Gain 3: " << gain3val
grovewater.cxx 51 bool val = water->isWet(); local
52 if (val)
mq303a.cxx 64 int val = mq303a->value(); local
67 << val << endl;
yg1006.cxx 52 bool val = flame->flameDetected(); local
53 if (val)
  /hardware/bsp/intel/peripheral/libupm/examples/java/
ENC03RSample.java 54 long val = gyro.value(); local
55 double av = gyro.angularVelocity(val);
57 System.out.println("Raw value: " + val + ", angular velocity: " + av + " deg/s");
  /hardware/bsp/intel/peripheral/libupm/src/gp2y0a/
gp2y0a.cxx 54 int val; local
59 val = mraa_aio_read(m_aio);
60 sum += val;
63 val = sum / samples;
64 float volts = float(val) * aref / float(m_aRes);
  /hardware/bsp/intel/peripheral/libupm/src/groveo2/
groveo2.cxx 51 int val = mraa_aio_read(m_aio); local
52 float sensorVoltage = (val/1024.0) * 5.0;
  /hardware/bsp/intel/peripheral/libupm/src/guvas12d/
guvas12d.cxx 51 int val; local
56 val = mraa_aio_read(m_aio);
57 sum += val;
  /hardware/bsp/intel/peripheral/libupm/src/lm35/
lm35.cxx 44 int val = m_aio.read(); local
47 float temp = (float(val) * (m_aref / float(1 << m_aRes))) * 1000.0;
  /hardware/bsp/intel/peripheral/libupm/src/maxsonarez/
maxsonarez.cxx 57 int val = mraa_aio_read(m_aio); local
58 float volts = float(val) * (m_aref / m_aRes);
  /hardware/qcom/gps/msm8084/utils/
loc_log.h 44 long val; member in struct:__anon33268
  /hardware/qcom/gps/msm8960/utils/
loc_log.h 44 long val; member in struct:__anon33352
  /hardware/qcom/gps/msm8994/utils/
loc_log.h 44 long val; member in struct:__anon33445
  /hardware/qcom/gps/utils/
loc_log.h 44 long val; member in struct:__anon33588
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/
db_iterators_9.pass.cpp 24 struct S { int val; }; member in struct:S
54 try { (void) i->val; } catch (int) { ++lib_asserts; }
55 try { (void) ci->val; } catch (int) { ++lib_asserts; }
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
private_constructor.hpp 18 int get () const { return val; }
20 PrivateConstructor ( int v ) : val(v) {}
21 int val; member in struct:PrivateConstructor
  /system/update_engine/update_manager/
boxed_value.cc 41 const string* val = reinterpret_cast<const string*>(value); local
42 return *val;
47 const int* val = reinterpret_cast<const int*>(value); local
48 return base::IntToString(*val);
53 const unsigned int* val = reinterpret_cast<const unsigned int*>(value); local
54 return base::UintToString(*val);
59 const int64_t* val = reinterpret_cast<const int64_t*>(value); local
60 return base::Int64ToString(*val);
65 const uint64_t* val = local
67 return base::Uint64ToString(static_cast<uint64_t>(*val));
72 const bool* val = reinterpret_cast<const bool*>(value); local
78 const double* val = reinterpret_cast<const double*>(value); local
84 const base::Time* val = reinterpret_cast<const base::Time*>(value); local
90 const base::TimeDelta* val = reinterpret_cast<const base::TimeDelta*>(value); local
115 const ConnectionType* val = reinterpret_cast<const ConnectionType*>(value); local
122 const set<ConnectionType>* val = local
135 const ConnectionTethering* val = local
153 const Stage* val = reinterpret_cast<const Stage*>(value); local
180 const UpdateRequestStatus* val = local
    [all...]
  /bionic/libc/kernel/uapi/linux/
atm_he.h 30 unsigned addr, val; member in struct:he_ioctl_reg

Completed in 397 milliseconds

1 2 34 5 6 7 8 91011>>