OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:floatFromUint64
(Results
1 - 7
of
7
) sorted by null
/device/google/contexthub/firmware/os/inc/
floatRt.h
29
float
floatFromUint64
(uint64_t v);
45
static inline float
floatFromUint64
(uint64_t v)
/device/google/contexthub/firmware/os/core/
floatRt.c
126
float
floatFromUint64
(uint64_t v)
144
return -
floatFromUint64
(-v);
146
return
floatFromUint64
(v);
/device/google/contexthub/firmware/os/algos/
time_sync.c
119
mean_y +=
floatFromUint64
(sync->time1[ii] - time1_base) * invN;
120
mean_x +=
floatFromUint64
(sync->time2[ii] - time2_base) * invN;
134
float y =
floatFromUint64
(sync->time1[ii] - time1_base) - mean_y;
135
float x =
floatFromUint64
(sync->time2[ii] - time2_base) - mean_x;
/device/google/contexthub/firmware/os/algos/calibration/sample_rate_estimator/
sample_rate_estimator.c
66
const float next_interval_nanos =
floatFromUint64
(
/device/google/contexthub/firmware/os/algos/common/math/
macros.h
80
static inline float
floatFromUint64
(uint64_t v) {
/device/google/contexthub/firmware/os/drivers/window_orientation/
window_orientation.c
424
alpha =
floatFromUint64
(time_delta) /
floatFromUint64
(FILTER_TIME_CONSTANT + time_delta);
/device/google/contexthub/firmware/os/drivers/orientation/
orientation.c
245
weight_next = (float)counter /
floatFromUint64
(sample_spacing_ns);
487
dT =
floatFromUint64
(mTask.ResamplePeriodNs[which]) * 1e-9f;
Completed in 65 milliseconds