Searched refs:values (Results 1 - 25 of 49) sorted by relevance

12

/hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
H A Ddatalogger_outputs.h23 void inv_get_sensor_type_gyro_float(float *values, int8_t *accuracy,
25 void inv_get_sensor_type_accel_float(float *values, int8_t *accuracy,
28 float *values, int8_t *accuracy, inv_time_t *timestamp);
29 void inv_get_sensor_type_quat_float(float *values, int *accuracy,
31 void inv_get_sensor_type_gravity_float(float *values, int *accuracy,
33 void inv_get_sensor_type_rotation_vector_float(float *values, int *accuracy,
37 void inv_get_sensor_type_gyro_raw_short(short *values,
39 void inv_get_sensor_type_gyro_raw_body_float(float *values,
41 void inv_get_sensor_type_accel_raw_short(short *values,
43 void inv_get_sensor_type_compass_raw_short(short *values,
[all...]
H A Ddatalogger_outputs.c46 * @param[out] values raw angular velocity in LSB.
49 void inv_get_sensor_type_gyro_raw_short(short *values, inv_time_t *timestamp) argument
53 if (values)
54 memcpy(values, &pg->raw, sizeof(short) * 3);
61 * @param[out] values raw angular velocity in dps.
64 void inv_get_sensor_type_gyro_raw_body_float(float *values, argument
76 if (values) {
77 values[0] = inv_q16_to_float(raw_body[0]);
78 values[1] = inv_q16_to_float(raw_body[1]);
79 values[
91 inv_get_sensor_type_gyro_float(float *values, int8_t *accuracy, inv_time_t *timestamp) argument
107 inv_get_sensor_type_accel_raw_short(short *values, inv_time_t *timestamp) argument
125 inv_get_sensor_type_accel_float(float *values, int8_t *accuracy, inv_time_t *timestamp) argument
141 inv_get_sensor_type_compass_raw_short(short *values, inv_time_t *timestamp) argument
160 inv_get_sensor_type_compass_float(float *mag_north, float *true_north, float *values, int8_t *accuracy, inv_time_t *timestamp) argument
251 inv_get_sensor_type_quat_float(float *values, int *accuracy, inv_time_t *timestamp) argument
269 inv_get_sensor_type_gravity_float(float *values, int *accuracy, inv_time_t * timestamp) argument
310 inv_get_sensor_type_rotation_vector_float(float *values, int *accuracy, inv_time_t * timestamp) argument
[all...]
/hardware/invensense/6515/libsensors_iio/software/core/mllite/
H A Dhal_outputs.h16 int inv_get_sensor_type_orientation(float *values, int8_t *accuracy,
18 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy,
20 int inv_get_sensor_type_gyroscope(float *values, int8_t *accuracy,
22 int inv_get_sensor_type_gyroscope_raw(float *values, int8_t *accuracy,
24 int inv_get_sensor_type_magnetic_field(float *values, int8_t *accuracy,
26 int inv_get_sensor_type_magnetic_field_raw(float *values, int8_t *accuracy,
28 int inv_get_sensor_type_rotation_vector(float *values, int8_t *accuracy,
31 int inv_get_sensor_type_linear_acceleration(float *values,
34 int inv_get_sensor_type_gravity(float *values, int8_t *accuracy,
37 int inv_get_sensor_type_orientation_6_axis(float *values, int8_
[all...]
H A Dhal_outputs.c115 * @param[out] values Acceleration in m/s^2 includes gravity. So while not in motion, it
122 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy, argument
131 values[0] = accel[0] * ACCEL_CONVERSION;
132 values[1] = accel[1] * ACCEL_CONVERSION;
133 values[2] = accel[2] * ACCEL_CONVERSION;
138 MPL_LOGV("accel values:%f %f %f -%d -%lld", values[0], values[1],
139 values[2], status, *timestamp);
144 * @param[out] values Linea
151 inv_get_sensor_type_linear_acceleration(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
176 inv_get_sensor_type_gravity(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
201 inv_get_sensor_type_gyroscope(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
227 inv_get_sensor_type_gyroscope_raw(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
271 inv_get_sensor_type_rotation_vector(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
293 inv_get_sensor_type_rotation_vector_6_axis(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
338 inv_get_sensor_type_geomagnetic_rotation_vector(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
374 inv_get_sensor_type_magnetic_field(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
402 inv_get_sensor_type_magnetic_field_raw(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
538 inv_get_sensor_type_orientation(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
547 inv_get_sensor_type_orientation_6_axis(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
559 inv_get_sensor_type_orientation_geomagnetic(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
[all...]
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/
H A Dhal_outputs.h16 int inv_get_sensor_type_orientation(float *values, int8_t *accuracy,
18 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy,
20 int inv_get_sensor_type_gyroscope(float *values, int8_t *accuracy,
22 int inv_get_sensor_type_gyroscope_raw(float *values, int8_t *accuracy,
24 int inv_get_sensor_type_magnetic_field(float *values, int8_t *accuracy,
26 int inv_get_sensor_type_magnetic_field_raw(float *values, int8_t *accuracy,
28 int inv_get_sensor_type_rotation_vector(float *values, int8_t *accuracy,
31 int inv_get_sensor_type_linear_acceleration(float *values,
34 int inv_get_sensor_type_gravity(float *values, int8_t *accuracy,
37 int inv_get_sensor_type_orientation_6_axis(float *values, int8_
[all...]
H A Dhal_outputs.c67 * @param[out] values Acceleration in m/s^2 includes gravity. So while not in motion, it
74 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy, argument
83 values[0] = accel[0] * ACCEL_CONVERSION;
84 values[1] = accel[1] * ACCEL_CONVERSION;
85 values[2] = accel[2] * ACCEL_CONVERSION;
90 MPL_LOGV("accel values:%f %f %f -%d -%lld", values[0], values[1],
91 values[2], status, *timestamp);
96 * @param[out] values Linea
103 inv_get_sensor_type_linear_acceleration(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
132 inv_get_sensor_type_gravity(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
162 inv_get_sensor_type_gyroscope(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
188 inv_get_sensor_type_gyroscope_raw(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
232 inv_get_sensor_type_rotation_vector(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
253 inv_get_sensor_type_rotation_vector_6_axis(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
296 inv_get_sensor_type_geomagnetic_rotation_vector(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
328 inv_get_sensor_type_magnetic_field(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
356 inv_get_sensor_type_magnetic_field_raw(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
492 inv_get_sensor_type_orientation(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
503 inv_get_sensor_type_orientation_6_axis(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
517 inv_get_sensor_type_orientation_geomagnetic(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
[all...]
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/
H A Dhal_outputs.h16 int inv_get_sensor_type_orientation(float *values, int8_t *accuracy,
18 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy,
20 int inv_get_sensor_type_gyroscope(float *values, int8_t *accuracy,
22 int inv_get_sensor_type_gyroscope_raw(float *values, int8_t *accuracy,
24 int inv_get_sensor_type_magnetic_field(float *values, int8_t *accuracy,
26 int inv_get_sensor_type_rotation_vector(float *values, int8_t *accuracy,
29 int inv_get_sensor_type_linear_acceleration(float *values,
32 int inv_get_sensor_type_gravity(float *values, int8_t *accuracy,
H A Dhal_outputs.c62 * @param[out] values Acceleration in m/s^2 includes gravity. So while not in motion, it
69 int inv_get_sensor_type_accelerometer(float *values, int8_t *accuracy, argument
78 values[0] = accel[0] * ACCEL_CONVERSION;
79 values[1] = accel[1] * ACCEL_CONVERSION;
80 values[2] = accel[2] * ACCEL_CONVERSION;
89 * @param[out] values Linear Acceleration in body frame, length 3, (m/s^2). May show
96 int inv_get_sensor_type_linear_acceleration(float *values, int8_t *accuracy, argument
107 values[0] = accel[0] * ACCEL_CONVERSION;
108 values[1] = accel[1] * ACCEL_CONVERSION;
109 values[
121 inv_get_sensor_type_gravity(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
145 inv_get_sensor_type_gyroscope(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
169 inv_get_sensor_type_gyroscope_raw(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
210 inv_get_sensor_type_rotation_vector(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
240 inv_get_sensor_type_magnetic_field(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
315 inv_get_sensor_type_orientation(float *values, int8_t *accuracy, inv_time_t * timestamp) argument
[all...]
/hardware/intel/img/hwcomposer/common/devices/
H A DDummyDevice.cpp135 int32_t *values)
139 if ((configs > 0) || !attributes || !values) {
153 values[i] = 1e9 / 60;
156 values[i] = 1280;
159 values[i] = 720;
162 values[i] = 0;
165 values[i] = 0;
133 getDisplayAttributes(uint32_t configs, const uint32_t *attributes, int32_t *values) argument
H A DExternalDevice.cpp336 int32_t *values)
339 return PhysicalDevice::getDisplayAttributes(config, attributes, values);
342 return PhysicalDevice::getDisplayAttributes(config, attributes, values);
343 if (!attributes || !values)
349 values[i] = 1e9 / 60;
352 values[i] = 1920;
355 values[i] = 1080;
358 values[i] = 1;
361 values[i] = 1;
334 getDisplayAttributes(uint32_t config, const uint32_t *attributes, int32_t *values) argument
H A DPhysicalDevice.cpp208 int32_t *values)
219 if (!attributes || !values) {
235 values[i] = 1e9 / configChosen->getRefreshRate();
238 values[i] = 0;
242 values[i] = configChosen->getWidth();
245 values[i] = configChosen->getHeight();
248 values[i] = configChosen->getDpiX() * 1000.0f;
251 values[i] = configChosen->getDpiY() * 1000.0f;
206 getDisplayAttributes(uint32_t config, const uint32_t *attributes, int32_t *values) argument
/hardware/invensense/60xx/libsensors/
H A DMPLSensor.cpp72 /* Base values for the sensor list, these need to be in the order defined in MPLSensor.h */
726 void MPLSensor::calcOrientationSensor(float *R, float *values) argument
732 values[0] = (float) atan2f(-R[3], R[0]);
734 values[0] = (float) atan2f(R[1], R[4]);
736 values[0] *= 57.295779513082320876798154814105f;
737 if (values[0] < 0) {
738 values[0] += 360.0f;
746 values[1] = -asinf(tmp) * 57.295779513082320876798154814105f;
748 values[1] = 180.0f - values[
[all...]
/hardware/intel/common/libmix/videoencoder/
H A DIntelMetadataBuffer.h94 IMB_Result GetExtraValues(intptr_t* &values, uint32_t &num);
95 IMB_Result SetExtraValues(intptr_t *values, uint32_t num);
/hardware/intel/common/libva/test/decode/
H A Dtinyjpeg-internal.h69 /*bits and values*/
71 unsigned char values[256]; member in struct:huffman_table
115 struct jpeg_sos cur_sos; /* current sos values*/
/hardware/intel/img/hwcomposer/include/
H A DDummyDevice.h45 int32_t *values);
H A DExternalDevice.h43 int32_t *values);
H A DIDisplayDevice.h86 int32_t *values) = 0;
H A DPhysicalDevice.h49 int32_t *values);
H A DHwcomposer.h55 int32_t *values);
/hardware/qcom/display/msm8226/libhwcomposer/
H A Dhwc.cpp749 uint32_t /*config*/, const uint32_t* attributes, int32_t* values) {
774 values[i] = ctx->dpyAttr[disp].vsync_period;
778 values[i] = ctx->dpyAttr[disp].xres_new;
780 values[i] = ctx->dpyAttr[disp].xres;
783 values[i]);
787 values[i] = ctx->dpyAttr[disp].yres_new;
789 values[i] = ctx->dpyAttr[disp].yres;
791 values[i]);
794 values[i] = (int32_t) (ctx->dpyAttr[disp].xdpi*1000.0);
797 values[
748 hwc_getDisplayAttributes(struct hwc_composer_device_1* dev, int disp, uint32_t , const uint32_t* attributes, int32_t* values) argument
[all...]
/hardware/libhardware/tests/hwc/
H A Dcnativewindow.c381 int32_t values[8]; local
411 if ((r = hwc->getDisplayAttributes(hwc, 0, configs[0], attrs, values))) {
416 win->width = values[0];
417 win->height = values[1];
418 win->xdpi = values[3];
419 win->ydpi = values[4];
/hardware/qcom/display/msm8960/libhwcomposer/
H A Dhwc.cpp518 uint32_t config, const uint32_t* attributes, int32_t* values) {
542 values[i] = ctx->dpyAttr[disp].vsync_period;
545 values[i] = ctx->dpyAttr[disp].xres;
550 values[i] = ctx->dpyAttr[disp].yres;
555 values[i] = (int32_t) (ctx->dpyAttr[disp].xdpi*1000.0);
558 values[i] = (int32_t) (ctx->dpyAttr[disp].ydpi*1000.0);
517 hwc_getDisplayAttributes(struct hwc_composer_device_1* dev, int disp, uint32_t config, const uint32_t* attributes, int32_t* values) argument
/hardware/qcom/display/msm8974/libhwcomposer/
H A Dhwc.cpp614 uint32_t config, const uint32_t* attributes, int32_t* values) {
638 values[i] = ctx->dpyAttr[disp].vsync_period;
641 values[i] = ctx->dpyAttr[disp].xres;
646 values[i] = ctx->dpyAttr[disp].yres;
651 values[i] = (int32_t) (ctx->dpyAttr[disp].xdpi*1000.0);
654 values[i] = (int32_t) (ctx->dpyAttr[disp].ydpi*1000.0);
613 hwc_getDisplayAttributes(struct hwc_composer_device_1* dev, int disp, uint32_t config, const uint32_t* attributes, int32_t* values) argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
H A Dvp8_sad16x16_armv6.asm62 add r4, r4, r8 ; add partial sad values
86 add r4, r4, r8 ; add partial sad values
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/
H A Dloopfilter_mmx.asm151 pxor mm2, [GLOBAL(t80)] ; p1 offset to convert to signed values
152 pxor mm7, [GLOBAL(t80)] ; q1 offset to convert to signed values
155 pxor mm6, [GLOBAL(t80)] ; offset to convert to signed values
156 pxor mm0, [GLOBAL(t80)] ; offset to convert to signed values
162 pand mm1, mm2 ; mask filter values we don't care about
453 pxor mm2, [GLOBAL(t80)] ; p1 offset to convert to signed values
454 pxor mm7, [GLOBAL(t80)] ; q1 offset to convert to signed values
459 pxor mm6, [GLOBAL(t80)] ; offset to convert to signed values
460 pxor mm0, [GLOBAL(t80)] ; offset to convert to signed values
469 pand mm1, mm2 ; mask filter values w
[all...]

Completed in 451 milliseconds

12