OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:floatFromUint64
(Results
1 - 5
of
5
) sorted by null
/device/google/contexthub/firmware/inc/
floatRt.h
29
float
floatFromUint64
(uint64_t v);
45
static inline float
floatFromUint64
(uint64_t v)
/device/google/contexthub/firmware/src/
floatRt.c
126
float
floatFromUint64
(uint64_t v)
144
return -
floatFromUint64
(-v);
146
return
floatFromUint64
(v);
/device/google/contexthub/firmware/src/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/src/drivers/window_orientation/
window_orientation.c
420
alpha =
floatFromUint64
(time_delta) /
floatFromUint64
(FILTER_TIME_CONSTANT + time_delta);
/device/google/contexthub/firmware/src/drivers/orientation/
orientation.c
245
weight_next = (float)counter /
floatFromUint64
(sample_spacing_ns);
450
dT =
floatFromUint64
(mTask.ResamplePeriodNs[which]) * 1e-9f;
Completed in 578 milliseconds