Searched defs:value (Results 1 - 25 of 461) sorted by relevance

1234567891011>>

/hardware/bsp/intel/peripheral/libmraa/examples/
H A Dcycle-pwm3.c42 float value = 0.0f; local
45 value = value + 0.01f;
46 mraa_pwm_write(pwm, value);
48 if (value >= 1.0f) {
49 value = 0.0f;
/hardware/bsp/intel/peripheral/libmraa/examples/python/
H A Dcycle-pwm3.py31 value= 0.0 variable
34 x.write(value)
36 value = value + 0.01 variable
37 if value >= 1:
38 value = 0.0 variable
/hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_pla/src/
H A Dplatform_lib_property_service.cpp36 int platform_lib_abstraction_property_get(const char *key, char *value, const char *default_value) argument
38 return property_get(key, value, default_value);
/hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_stub/src/
H A Dloc_stub_property_service.cpp33 int property_get(const char *key, char * value, const char *default_value) argument
36 value[0] = '1';
39 memcpy(value, "msm", 4);
/hardware/bsp/intel/peripheral/libupm/examples/c++/
H A Dtp401.cxx33 // Give a qualitative meaning to the value from the sensor
35 airQuality(uint16_t value) argument
37 if(value < 50) return "Fresh Air";
38 if(value < 200) return "Normal Indoor Air";
39 if(value < 400) return "Low Pollution";
40 if(value < 600) return "High Pollution - Action Recommended";
61 uint16_t value = airSensor->getSample(); // Read raw value local
63 fprintf(stdout, "raw: %4d ppm: %5.2f %s\n", value, ppm, airQuality(value)
[all...]
/hardware/bsp/intel/peripheral/libupm/examples/java/
H A DTP401Sample.java35 private static String airQuality(int value) { argument
36 if (value < 50)
38 if (value < 200)
40 if (value < 400)
42 if (value < 600)
64 int value = airSensor.getSample(); // Read raw value
68 System.out.println("raw: " + value + " ppm: " + ppm + " " + airQuality(value));
/hardware/bsp/intel/peripheral/libupm/src/apds9002/
H A Dapds9002.cxx48 int APDS9002::value() function in class:APDS9002
/hardware/bsp/intel/peripheral/libupm/src/biss0001/
H A Dbiss0001.cxx49 bool BISS0001::value() function in class:BISS0001
/hardware/bsp/intel/peripheral/libupm/src/flex/
H A Dflex.cxx49 int Flex::value() function in class:Flex
/hardware/bsp/intel/peripheral/libupm/src/groveloudness/
H A Dgroveloudness.cxx48 int GroveLoudness::value() function in class:GroveLoudness
/hardware/bsp/intel/peripheral/libupm/src/grovemoisture/
H A Dgrovemoisture.cxx45 int GroveMoisture::value() function in class:GroveMoisture
/hardware/qcom/display/msm8084/libqdutils/
H A Dcb_swap_rect.cpp39 void cb_swap_rect::setSwapRectFeature_on( bool value){ argument
40 swap_rect_feature_on = value ;
/hardware/qcom/display/msm8226/libqdutils/
H A Dcb_swap_rect.cpp39 void cb_swap_rect::setSwapRectFeature_on( bool value){ argument
40 swap_rect_feature_on = value ;
/hardware/qcom/display/msm8909/libqdutils/
H A Dcb_swap_rect.cpp39 void cb_swap_rect::setSwapRectFeature_on( bool value){ argument
40 swap_rect_feature_on = value ;
/hardware/qcom/display/msm8994/libqdutils/
H A Dcb_swap_rect.cpp39 void cb_swap_rect::setSwapRectFeature_on( bool value){ argument
40 swap_rect_feature_on = value ;
/hardware/bsp/intel/peripheral/libmraa/examples/c++/
H A DPwm3-cycle.cpp55 float value = 0.0f; local
57 value = value + 0.01f;
58 pwm->write(value);
60 if (value >= 1.0f) {
61 value = 0.0f;
/hardware/bsp/intel/peripheral/libupm/src/ad8232/
H A Dad8232.cxx46 int AD8232::value() function in class:AD8232
/hardware/bsp/intel/peripheral/libupm/src/gp2y0a/
H A Dgp2y0a.cxx52 float GP2Y0A::value(float aref, uint8_t samples) function in class:GP2Y0A
/hardware/bsp/intel/peripheral/libupm/src/groveemg/
H A Dgroveemg.cxx63 int GroveEMG::value() function in class:GroveEMG
/hardware/bsp/intel/peripheral/libupm/src/grovegsr/
H A Dgrovegsr.cxx64 int GroveGSR::value() function in class:GroveGSR
/hardware/bsp/intel/peripheral/libupm/src/guvas12d/
H A Dguvas12d.cxx49 float GUVAS12D::value(float aref, unsigned int samples) function in class:GUVAS12D
/hardware/bsp/intel/peripheral/libupm/src/ina132/
H A Dina132.cxx50 float INA132::value() function in class:INA132
/hardware/bsp/intel/peripheral/libupm/src/mq303a/
H A Dmq303a.cxx58 int MQ303A::value() function in class:MQ303A
/hardware/akm/AK8975_FS/libsensors/
H A DSensorBase.cpp71 const char *path, const char *value, int bytes)
82 amt = write(fd, value, bytes);
70 write_sys_attribute( const char *path, const char *value, int bytes) argument
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dsdiovar.h34 int value; member in struct:sdreg

Completed in 414 milliseconds

1234567891011>>