Searched refs:value (Results 51 - 75 of 786) sorted by relevance

1234567891011>>

/hardware/bsp/intel/peripheral/libupm/src/groveemg/
H A Dgroveemg.h75 int value();
/hardware/bsp/intel/peripheral/libupm/src/grovegsr/
H A Dgrovegsr.h77 int value();
/hardware/bsp/intel/peripheral/libupm/src/grovemoisture/
H A Dgrovemoisture.h50 * As the moisture content increases, so does the value that is read.
70 * Gets the moisture value from the sensor
74 int value();
/hardware/bsp/intel/peripheral/libupm/src/guvas12d/
H A Dguvas12d.h66 * Gets the average voltage value from the sensor
72 float value(float aref, unsigned int samples);
/hardware/bsp/intel/peripheral/libupm/src/ina132/
H A Dina132.h73 float value();
/hardware/intel/common/libva/va/
H A Dva_enc.h75 /** \brief An invalid/unsupported parameter value was supplied. */
105 /** \brief Bitstream writer attribute value. */
109 /** \brief Attribute value (#VAGenericValue). */
110 VAGenericValue value; member in struct:__anon885
140 * Writes an unsigned int value of the specified length in bits. The
141 * value is implicitly zero-extended to the number of specified bits.
144 * @param[in] value the unsigned int value to write
145 * @param[in] length the length (in bits) of the value
146 * @return the number of bits written, or a negative value t
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
H A Dacm_random.h30 const uint32_t value = local
32 return (value >> 16) & 0xffff;
36 const uint32_t value = local
39 return (value >> 24) & 0xff;
43 // Returns a random value near 0 or near 255, to better exercise
/hardware/bsp/intel/peripheral/libupm/examples/java/
H A DGroveSlideSample.java42 float value = slide.voltage_value();
44 System.out.println("raw value: " + raw_value);
45 System.out.println("value: " + value);
/hardware/qcom/audio/legacy/alsa_sound/
H A DALSAControl.cpp54 status_t ALSAControl::get(const char *name, unsigned int &value, int index) argument
67 mixer_ctl_get(ctl, &value);
71 status_t ALSAControl::set(const char *name, unsigned int value, int index) argument
75 ALOGD("set:: name %s value %d index %d", name, value, index);
87 ret = mixer_ctl_set(ctl, value);
91 status_t ALSAControl::set(const char *name, const char *value) argument
95 ALOGD("set:: name %s value %s", name, value);
107 ret = mixer_ctl_select(ctl, value);
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/decoder/
H A Ddboolhuff.c22 br->value = 0;
40 VP8_BD_VALUE value = br->value; local
66 value |= (VP8_BD_VALUE)*bufptr << shift;
73 br->value = value;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
H A Dvp9_reader.c27 r->value = 0;
38 BD_VALUE value = r->value; local
53 value |= (BD_VALUE)*buffer++ << shift;
59 r->value = value;
75 // Variable 'count' stores the number of bits in the 'value' buffer, minus
77 // to be shifted into it. So if count == 8, the top 16 bits of 'value' are
81 // one byte is filled into the value buffer. When we reach the end of the
/hardware/qcom/audio/hal/audio_extn/
H A Dhfp.c70 static int32_t hfp_set_volume(struct audio_device *adev, float value) argument
81 ALOGD("%s: (%f)\n", __func__, value);
83 if (value < 0.0) {
84 ALOGW("%s: (%f) Under 0.0, assuming 0.0\n", __func__, value);
85 value = 0.0;
87 value = ((value > 15.000000) ? 1.0 : (value / 15));
88 ALOGW("%s: Volume brought with in range (%f)\n", __func__, value);
90 vol = lrint((value *
286 char value[32]={0}; local
[all...]
/hardware/qcom/audio/msm8909/hal/audio_extn/
H A Dhfp.c89 static int32_t hfp_set_volume(struct audio_device *adev, float value) argument
96 ALOGD("%s: (%f)\n", __func__, value);
98 hfpmod.hfp_volume = value;
99 if (value < 0.0) {
100 ALOGW("%s: (%f) Under 0.0, assuming 0.0\n", __func__, value);
101 value = 0.0;
103 value = ((value > 15.000000) ? 1.0 : (value / 15));
104 ALOGW("%s: Volume brought with in range (%f)\n", __func__, value);
312 char value[32]={0}; local
[all...]
H A Da2dp.c117 char value[32]={0}; local
119 ret = str_parms_get_str(parms, AUDIO_PARAMETER_DEVICE_CONNECT, value,
120 sizeof(value));
122 val = atoi(value);
129 ret = str_parms_get_str(parms, AUDIO_PARAMETER_DEVICE_DISCONNECT, value,
130 sizeof(value));
133 val = atoi(value);
140 ret = str_parms_get_str(parms, "A2dpSuspended", value, sizeof(value));
144 if (!strncmp(value,"tru
[all...]
/hardware/bsp/intel/peripheral/libupm/src/mma7455/
H A Dmma7455.cxx76 xyz.value.x = xyz.value.y = xyz.value.z = 0;
79 error = readData (&xyz.value.x, &xyz.value.y, &xyz.value.z);
84 xyz.value.x += 2 * -xyz.value.x;
85 xyz.value.y += 2 * -xyz.value
[all...]
/hardware/qcom/display/msm8909/libhwcomposer/
H A Dhwc_qdcm.cpp168 int value = 0; local
171 (const void *)&params, (void *)&value);
173 out->writeInt32(value);
190 params.pa.data.value = in->readInt32();
208 struct disp_pa_config value; local
211 (const void *)&params, (void *)&value);
213 out->writeInt32(value.ops);
214 out->writeInt32(value.data.hue);
215 out->writeInt32(value.data.saturation);
216 out->writeInt32(value
231 struct disp_pa_range value; local
[all...]
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/codecs/vc1/include/
H A Dvc1common.h24 #define BF_READ( name, bitf, value ) ((value & GET_BMSK(name, bitf) ) >> GET_BLSB(name, bitf) )
25 #define BF_WRITE( name, bitf, value, data ) value = ((value & ~GET_BMSK(name, bitf)) | ((data) << GET_BLSB(name, bitf)))
48 PTYPE interpretation depends on bitstream profile. The value that needs to get
/hardware/qcom/wlan/qcwcn/wifi_hal/
H A Dcpp_bindings.h196 int put_u8(int attribute, uint8_t value) { argument
197 return nla_put(mMsg, attribute, sizeof(value), &value);
199 int put_u16(int attribute, uint16_t value) { argument
200 return nla_put(mMsg, attribute, sizeof(value), &value);
202 int put_u32(int attribute, uint32_t value) { argument
203 return nla_put(mMsg, attribute, sizeof(value), &value);
206 int put_u64(int attribute, uint64_t value) { argument
210 put_s8(int attribute, s8 value) argument
213 put_s16(int attribute, s16 value) argument
216 put_s32(int attribute, s32 value) argument
219 put_s64(int attribute, s64 value) argument
258 put_string(int attribute, const char *value) argument
261 put_addr(int attribute, mac_addr value) argument
[all...]
/hardware/bsp/intel/peripheral/libupm/src/tm1637/
H A Dtm1637.h128 * @param value True to turn the colon on, false to turn it off
130 void setColon(bool value);
134 * @param value Brightness, from 0 (darkest) to 7 (brightest)
136 void setBrightness(int value);
141 void i2c_writeByte(uint8_t value);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_systemdependent.h64 unsigned int value = n; local
69 const unsigned int x = value >> shift;
71 value = x;
/hardware/qcom/camera/QCamera2/util/
H A DQCameraDisplay.cpp137 char value[PROPERTY_VALUE_MAX]; local
141 property_get("persist.camera.disp.num_vsync", value, "4");
142 mNum_vsync_from_vfe_isr_to_presentation_timestamp = atoi(value);
143 property_get("persist.camera.disp.ms_to_vsync", value, "2");
144 mSet_timestamp_num_ms_prior_to_vsync = atoi(value);
145 property_get("persist.camera.disp.filter_max", value, "2");
146 mVfe_and_mdp_freq_wiggle_filter_max_ms = atoi(value);
147 property_get("persist.camera.disp.filter_min", value, "4");
148 mVfe_and_mdp_freq_wiggle_filter_min_ms = atoi(value);
149 property_get("persist.camera.disp.fps", value, "6
[all...]
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/
H A Dfw_pvt.h40 uint32_t low_watermark; /* On crossing this value we generate low watermark interrupt */
76 static inline void reg_write(uint32_t offset, uint32_t value) argument
78 *((volatile uint32_t*) (GV_SI_MMR_BASE_ADDRESS + offset)) = value;
83 uint32_t value=0; local
84 value = *((volatile uint32_t*) (GV_SI_MMR_BASE_ADDRESS + offset));
85 return value;
107 void get_wdog(uint32_t *value);
/hardware/intel/img/psb_video/src/android/
H A Dpsb_mds.h56 inline bool checkMode(int value, int bit) { argument
57 return (value & bit) == bit ? true : false;
/hardware/qcom/audio/legacy/libalsa-intf/
H A Dalsa_mixer.c53 /* .5 for rounding before casting to non-decmal value */
137 unsigned max = mixer->ctl[n].info->value.enumerated.items;
201 char **enames = calloc(ei->value.enumerated.items, sizeof(char*));
205 for (m = 0; m < ei->value.enumerated.items; m++) {
208 tmp.value.enumerated.item = m;
211 enames[m] = strdup(tmp.value.enumerated.name);
258 ALOGV(ei->value.integer.step ?
260 ei->value.integer.min,
261 ei->value.integer.max,
262 ei->value
394 mixer_ctl_get(struct mixer_ctl *ctl, unsigned *value) argument
573 int value; local
583 long long value; local
720 mixer_ctl_select(struct mixer_ctl *ctl, const char *value) argument
[all...]
/hardware/broadcom/wlan/bcmdhd/wifi_hal/
H A Dcpp_bindings.h179 int put_u8(int attribute, uint8_t value) { argument
180 return nla_put(mMsg, attribute, sizeof(value), &value);
182 int put_u16(int attribute, uint16_t value) { argument
183 return nla_put(mMsg, attribute, sizeof(value), &value);
185 int put_u32(int attribute, uint32_t value) { argument
186 return nla_put(mMsg, attribute, sizeof(value), &value);
188 int put_u64(int attribute, uint64_t value) { argument
191 put_string(int attribute, const char *value) argument
194 put_addr(int attribute, mac_addr value) argument
[all...]

Completed in 4552 milliseconds

1234567891011>>