Home
last modified time | relevance | path

Searched refs:bias (Results 1 – 18 of 18) sorted by relevance

/hardware/invensense/6515/libsensors_iio/software/core/mllite/
Ddata_builder.h253 void inv_get_compass_bias(long *bias);
255 void inv_set_compass_bias(const long *bias, int accuracy);
257 void inv_set_gyro_bias(const long *bias);
258 void inv_set_mpl_gyro_bias(const long *bias, int accuracy);
259 void inv_set_accel_bias(const long *bias);
260 void inv_set_mpl_accel_bias(const long *bias, int accuracy);
262 void inv_set_accel_bias_mask(const long *bias, int accuracy, int mask);
278 void inv_get_mpl_gyro_bias(long *bias, long *temp);
279 void inv_get_gyro_bias(long *bias);
280 void inv_get_gyro_bias_dmp_units(long *bias);
[all …]
Ddata_builder.c57 void inv_apply_calibration(struct inv_single_sensor_t *sensor, const long *bias);
691 void inv_apply_calibration(struct inv_single_sensor_t *sensor, const long *bias) in inv_apply_calibration() argument
702 raw32[0] -= bias[0] >> 1; in inv_apply_calibration()
703 raw32[1] -= bias[1] >> 1; in inv_apply_calibration()
704 raw32[2] -= bias[2] >> 1; in inv_apply_calibration()
715 void inv_get_compass_bias(long *bias) in inv_get_compass_bias() argument
717 if (bias != NULL) { in inv_get_compass_bias()
718 … memcpy(bias, inv_data_builder.save.compass_bias, sizeof(inv_data_builder.save.compass_bias)); in inv_get_compass_bias()
726 void inv_set_compass_bias(const long *bias, int accuracy) in inv_set_compass_bias() argument
728 …if (memcmp(inv_data_builder.save.compass_bias, bias, sizeof(inv_data_builder.save.compass_bias))) { in inv_set_compass_bias()
[all …]
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/
Ddata_builder.h250 void inv_get_compass_bias(long *bias);
252 void inv_set_compass_bias(const long *bias, int accuracy);
254 void inv_set_gyro_bias(const long *bias);
255 void inv_set_mpl_gyro_bias(const long *bias, int accuracy);
256 void inv_set_accel_bias(const long *bias);
257 void inv_set_mpl_accel_bias(const long *bias, int accuracy);
259 void inv_set_accel_bias_mask(const long *bias, int accuracy, int mask);
275 void inv_get_mpl_gyro_bias(long *bias, long *temp);
276 void inv_get_gyro_bias(long *bias);
277 void inv_get_gyro_bias_dmp_units(long *bias);
[all …]
Ddata_builder.c56 void inv_apply_calibration(struct inv_single_sensor_t *sensor, const long *bias);
486 void inv_apply_calibration(struct inv_single_sensor_t *sensor, const long *bias) in inv_apply_calibration() argument
497 raw32[0] -= bias[0] >> 1; in inv_apply_calibration()
498 raw32[1] -= bias[1] >> 1; in inv_apply_calibration()
499 raw32[2] -= bias[2] >> 1; in inv_apply_calibration()
510 void inv_get_compass_bias(long *bias) in inv_get_compass_bias() argument
512 if (bias != NULL) { in inv_get_compass_bias()
513 … memcpy(bias, inv_data_builder.save.compass_bias, sizeof(inv_data_builder.save.compass_bias)); in inv_get_compass_bias()
521 void inv_set_compass_bias(const long *bias, int accuracy) in inv_set_compass_bias() argument
523 …if (memcmp(inv_data_builder.save.compass_bias, bias, sizeof(inv_data_builder.save.compass_bias))) { in inv_set_compass_bias()
[all …]
/hardware/interfaces/gnss/2.1/
DIGnssMeasurementCallback.hal33 * A valid full inter-signal bias is stored in the data structure.
37 * A valid full inter-signal bias uncertainty is stored in the data structure.
41 * A valid satellite inter-signal bias is stored in the data structure.
45 * A valid satellite inter-signal bias uncertainty is stored in the data structure.
80 * The full inter-signal bias (ISB) in nanoseconds.
83 * inter-system bias, inter-frequency bias and inter-code bias, including
85 * - Receiver inter-constellation bias (with respect to the constellation in
87 * - Receiver inter-frequency bias (with respect to the carrier frequency in
89 * - Receiver inter-code bias (with respect to the code type in
91 * - Master clock bias (e.g., GPS-GAL Time Offset (GGTO), GPS-UTC Time Offset
[all …]
/hardware/invensense/6515/libsensors_iio/
DCompassSensor.AKM.h63 virtual void getCompassBias(long *bias) {return;}; in getCompassBias() argument
DMPLSensor.cpp2659 memcpy(s->uncalibrated_gyro.bias, mGyroBias, sizeof(mGyroBias));
2661 s->uncalibrated_gyro.bias[0], s->uncalibrated_gyro.bias[1],
2662 s->uncalibrated_gyro.bias[2], s->timestamp, update);
2750 memcpy(s->uncalibrated_magnetic.bias, mCompassBias, sizeof(mCompassBias));
2752 s->uncalibrated_magnetic.bias[0], s->uncalibrated_magnetic.bias[1],
2753 s->uncalibrated_magnetic.bias[2], s->timestamp, update);
4403 long bias[3], temp, temp_slope[3]; local
4404 inv_get_mpl_gyro_bias(bias, &temp);
4411 (float)bias[0] / 65536.f / 16.384f,
4412 (float)bias[1] / 65536.f / 16.384f,
[all …]
DMPLSensor.h167 int (*m_pt2AccelCalLoadFunc)(long *bias) = NULL;
/hardware/invensense/65xx/libsensors_iio/
DCompassSensor.AKM.h63 virtual void getCompassBias(long *bias) {return;}; in getCompassBias() argument
DMPLSensor.cpp2502 memcpy(s->uncalibrated_gyro.bias, mGyroBias, sizeof(mGyroBias)); in rawGyroHandler()
2504 s->uncalibrated_gyro.bias[0], s->uncalibrated_gyro.bias[1], in rawGyroHandler()
2505 s->uncalibrated_gyro.bias[2], s->timestamp, update); in rawGyroHandler()
2553 memcpy(s->uncalibrated_magnetic.bias, mCompassBias, sizeof(mCompassBias)); in rawCompassHandler()
2555 s->uncalibrated_magnetic.bias[0], s->uncalibrated_magnetic.bias[1], in rawCompassHandler()
2556 s->uncalibrated_magnetic.bias[2], s->timestamp, update); in rawCompassHandler()
3975 long bias[3], temp, temp_slope[3]; in buildMpuEvent() local
3976 inv_get_mpl_gyro_bias(bias, &temp); in buildMpuEvent()
3983 (float)bias[0] / 65536.f / 16.384f, in buildMpuEvent()
3984 (float)bias[1] / 65536.f / 16.384f, in buildMpuEvent()
[all …]
DMPLSensor.h166 int (*m_pt2AccelCalLoadFunc)(long *bias) = NULL;
/hardware/interfaces/neuralnetworks/1.0/
Dtypes.hal240 * ) + bias[channel]
244 * * * {@link OperandType::TENSOR_FLOAT32} for input, filter, output, and bias.
248 * * * {@link OperandType::TENSOR_INT32} for bias (with scale set to
262 * * 2: A 1-D tensor, of shape [depth_out], specifying the bias. For input
264 * the bias must be of the same type.
266 * the bias should be of {@link OperandType::TENSOR_INT32}, with zeroPoint
290 * * 2: A 1-D tensor, of shape [depth_out], specifying the bias. For input
292 * the bias must be of the same
295 * the bias should be of {@link OperandType::TENSOR_INT32}, with zeroPoint
337 * ) + bias[k * channel_multiplier + q]
[all …]
/hardware/interfaces/neuralnetworks/1.3/
Dtypes.hal288 * ) + bias[channel]
292 * * * {@link OperandType::TENSOR_FLOAT32} for input, filter, output, and bias.
296 * * * {@link OperandType::TENSOR_INT32} for bias (with scale set to
301 * * * {@link OperandType::TENSOR_FLOAT16} for input, filter, output, and bias.
306 * * * {@link OperandType::TENSOR_INT32} for bias (scale set to 0.0,
312 * * * {@link OperandType::TENSOR_INT32} for bias (with scale set to
319 * * * {@link OperandType::TENSOR_INT32} for bias (scale set to 0.0,
340 * * 2: A 1-D tensor, of shape [depth_out], specifying the bias. For input
342 * or {@link OperandType::TENSOR_FLOAT16} the bias must be of the same type.
345 * the bias should be of {@link OperandType::TENSOR_INT32}, with zeroPoint
[all …]
/hardware/interfaces/neuralnetworks/1.2/
Dtypes.hal338 * ) + bias[channel]
342 * * * {@link OperandType::TENSOR_FLOAT32} for input, filter, output, and bias.
346 * * * {@link OperandType::TENSOR_INT32} for bias (with scale set to
351 * * * {@link OperandType::TENSOR_FLOAT16} for input, filter, output, and bias.
356 * * * {@link OperandType::TENSOR_INT32} for bias (scale set to 0.0,
377 * * 2: A 1-D tensor, of shape [depth_out], specifying the bias. For input
379 * or {@link OperandType::TENSOR_FLOAT16} the bias must be of the same type.
381 * the bias should be of {@link OperandType::TENSOR_INT32}, with zeroPoint
384 * the bias should be of {@link OperandType::TENSOR_INT32}, with zeroPoint of 0
426 * * 2: A 1-D tensor, of shape [depth_out], specifying the bias. For input
[all …]
/hardware/libhardware/include/hardware/
Dsensors.h245 float bias[3]; member
345 float bias[3]; member
/hardware/interfaces/gnss/1.0/
DIGnssMeasurementCallback.hal30 /** A valid 'full bias' is stored in the data structure. */
32 /** A valid 'bias' is stored in the data structure. */
34 /** A valid 'bias uncertainty' is stored in the data structure. */
253 * Sub-nanosecond bias - used with fullBiasNS, see fullBiasNs for details.
266 * bias) in nanoseconds. The uncertainty is represented as an absolute
328 * re-solve for the GNSS clock bias and drift, when using the accompanying
/hardware/interfaces/neuralnetworks/1.3/vts/functional/
DMemoryDomainTests.cpp110 TestOperand bias = { in createConvModel() local
125 std::move(bias), in createConvModel()
/hardware/interfaces/neuralnetworks/aidl/vts/functional/
DMemoryDomainTests.cpp112 TestOperand bias = { in createConvModel() local
127 std::move(bias), in createConvModel()