Lines Matching refs:s32
20 #define FIX32TOPRINT(f) (((s32)(f)) >> 16),(((((s32)(f)) & 0xffff) * 1000) >> 16)
29 int (*set_value)(struct wf_control *ct, s32 val);
30 int (*get_value)(struct wf_control *ct, s32 *val);
31 s32 (*get_min)(struct wf_control *ct);
32 s32 (*get_max)(struct wf_control *ct);
64 s32 vmax = ct->ops->get_max(ct); in wf_control_set_max()
70 s32 vmin = ct->ops->get_min(ct); in wf_control_set_min()
74 static inline int wf_control_set(struct wf_control *ct, s32 val) in wf_control_set()
79 static inline int wf_control_get(struct wf_control *ct, s32 *val) in wf_control_get()
84 static inline s32 wf_control_get_min(struct wf_control *ct) in wf_control_get_min()
89 static inline s32 wf_control_get_max(struct wf_control *ct) in wf_control_get_max()
101 int (*get_value)(struct wf_sensor *sr, s32 *val);
121 static inline int wf_sensor_get(struct wf_sensor *sr, s32 *val) in wf_sensor_get()