OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mean_y
(Results
1 - 4
of
4
) sorted by null
/device/google/contexthub/firmware/os/algos/
time_sync.c
115
float
mean_y
= 0.0f;
local
119
mean_y
+= floatFromUint64(sync->time1[ii] - time1_base) * invN;
134
float y = floatFromUint64(sync->time1[ii] - time1_base) -
mean_y
;
146
float alpha =
mean_y
- beta * mean_x;
/device/google/contexthub/firmware/os/algos/calibration/gyroscope/
gyro_stillness_detect.h
69
float mean_x,
mean_y
, mean_z;
member in struct:GyroStillDet
/external/libaom/libaom/aom_dsp/
noise_util.c
157
double *mean_x, *
mean_y
, *var_x, *var_y;
local
163
mean_y
= (double *)aom_malloc(sizeof(*mean_x) * h);
168
memset(
mean_y
, 0, sizeof(*
mean_y
) * h);
177
mean_y
[y] += d;
186
mean_y
[y] /= h;
187
var_y[y] = var_y[y] / h -
mean_y
[y] *
mean_y
[y];
193
if (fabs(
mean_y
[y] - mean) >= kMeanThreshold) {
194
fprintf(stderr, "Mean distance too large %f %f\n",
mean_y
[y], mean)
[
all
...]
/device/google/contexthub/firmware/os/algos/calibration/accelerometer/
accel_cal.h
53
float mean_x,
mean_y
, mean_z;
member in struct:AccelStillDet
Completed in 4141 milliseconds