Home
last modified time | relevance | path

Searched refs:f1 (Results 1 – 3 of 3) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/CMSIS/DSP/Source/ControllerFunctions/
Darm_sin_cos_f32.c81 float32_t f1, f2, d1, d2; /* Two nearest output values */ in arm_sin_cos_f32() local
105 f1 = sinTable_f32[indexC ]; in arm_sin_cos_f32()
110 temp = (1.0f - fract) * f1 + fract * f2; in arm_sin_cos_f32()
113 Df = f2 - f1; /* delta between the values of the functions */ in arm_sin_cos_f32()
120 *pCosVal = fract * temp + f1; in arm_sin_cos_f32()
123 f1 = sinTable_f32[indexS ]; in arm_sin_cos_f32()
128 temp = (1.0f - fract) * f1 + fract * f2; in arm_sin_cos_f32()
130 Df = f2 - f1; // delta between the values of the functions in arm_sin_cos_f32()
136 *pSinVal = fract * temp + f1; in arm_sin_cos_f32()
Darm_sin_cos_q31.c58 q31_t f1, f2, d1, d2; /* Two nearest output values */ in arm_sin_cos_q31() local
70 f1 = sinTable_q31[indexC ]; in arm_sin_cos_q31()
76 Df = f2 - f1; /* delta between the values of the functions */ in arm_sin_cos_q31()
87 *pCosVal = clip_q63_to_q31((temp >> 31) + (q63_t)f1); in arm_sin_cos_q31()
90 f1 = sinTable_q31[indexS ]; in arm_sin_cos_q31()
95 Df = f2 - f1; // delta between the values of the functions in arm_sin_cos_q31()
105 *pSinVal = clip_q63_to_q31((temp >> 31) + (q63_t)f1); in arm_sin_cos_q31()
/hal_nxp-latest/mcux/mcux-sdk/components/log/
Dfsl_component_log.h81 #define LOG_FILE_NAME_SET(f, f1, s, n) \ argument
82 f(f1, s, n) : \
83 f(f1, s, n + 8) : \
84 f(f1, s, n + 16) : \
85 f(f1, s, n + 24) : f(f1, s, n + 32) : f(f1, s, n + 40) : f(f1, s, n + 48) : f(f1, s, n + 56)