Lines Matching full:value

40  * @brief Convert a Q7 fixed-point value to a floating-point (float32_t) value with a left shift.
42 * @param src The input Q7 fixed-point value.
43 * @param m The number of bits to left shift the input value (0 to 7).
44 * @return The converted floating-point (float32_t) value.
49 * @brief Convert a Q15 fixed-point value to a floating-point (float32_t) value with a left shift.
51 * @param src The input Q15 fixed-point value.
52 * @param m The number of bits to left shift the input value (0 to 15).
53 * @return The converted floating-point (float32_t) value.
58 * @brief Convert a Q31 fixed-point value to a floating-point (float32_t) value with a left shift.
60 * @param src The input Q31 fixed-point value.
61 * @param m The number of bits to left shift the input value (0 to 31).
62 * @return The converted floating-point (float32_t) value.
67 * @brief Convert a Q7 fixed-point value to a floating-point (float64_t) value with a left shift.
69 * @param src The input Q7 fixed-point value.
70 * @param m The number of bits to left shift the input value (0 to 7).
71 * @return The converted floating-point (float64_t) value.
76 * @brief Convert a Q15 fixed-point value to a floating-point (float64_t) value with a left shift.
78 * @param src The input Q15 fixed-point value.
79 * @param m The number of bits to left shift the input value (0 to 15).
80 * @return The converted floating-point (float64_t) value.
85 * @brief Convert a Q31 fixed-point value to a floating-point (float64_t) value with a left shift.
87 * @param src The input Q31 fixed-point value.
88 * @param m The number of bits to left shift the input value (0 to 31).
89 * @return The converted floating-point (float64_t) value.
108 * @brief Convert a floating-point (float32_t) value to a Q7 fixed-point value with a right shift.
110 * @param src The input floating-point (float32_t) value.
111 * @param m The number of bits to right shift the input value (0 to 7).
112 * @return The converted Q7 fixed-point value.
118 * @brief Convert a floating-point (float32_t) value to a Q15 fixed-point value with a right shift.
120 * @param src The input floating-point (float32_t) value.
121 * @param m The number of bits to right shift the input value (0 to 15).
122 * @return The converted Q15 fixed-point value.
128 * @brief Convert a floating-point (float32_t) value to a Q31 fixed-point value with a right shift.
130 * @param src The input floating-point (float32_t) value.
131 * @param m The number of bits to right shift the input value (0 to 31).
132 * @return The converted Q31 fixed-point value.
138 * @brief Convert a floating-point (float64_t) value to a Q7 fixed-point value with a right shift.
140 * @param src The input floating-point (float64_t) value.
141 * @param m The number of bits to right shift the input value (0 to 7).
142 * @return The converted Q7 fixed-point value.
148 * @brief Convert a floating-point (float64_t) value to a Q15 fixed-point value with a right shift.
150 * @param src The input floating-point (float64_t) value.
151 * @param m The number of bits to right shift the input value (0 to 15).
152 * @return The converted Q15 fixed-point value.
158 * @brief Convert a floating-point (float64_t) value to a Q31 fixed-point value with a right shift.
160 * @param src The input floating-point (float64_t) value.
161 * @param m The number of bits to right shift the input value (0 to 31).
162 * @return The converted Q31 fixed-point value.