Home
last modified time | relevance | path

Searched refs:y2 (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/plc/
Dsbc_plc.c89 float y2 = 0; in CrossCorrelation() local
94 y2 += ((float)y[m]) * y[m]; in CrossCorrelation()
96 den = (float)SqrtByCarmack(x2 * y2); in CrossCorrelation()
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/srce/
Dsynthesis-sbc.c480 OI_INT32 y0, y1, y2, y3; in cosineModulateSynth4() local
490 y2 = -SCALE(LONG_MULT_DCT(DCTII_4_K06_FIX, f4), DCT_SHIFT); in cosineModulateSynth4()
498 out[0] = (OI_INT16) - y2; in cosineModulateSynth4()
502 out[4] = (OI_INT16)y2; in cosineModulateSynth4()
/hal_espressif-latest/components/bt/host/bluedroid/stack/smp/
Dp_256_ecc_pp.c104 DWORD *y2; in ECC_Add() local
111 x2 = q->x; y2 = q->y; z2 = q->z; in ECC_Add()
129 multiprecision_mersenns_mult_mod(t2, y2, t2, keyLength); // t2=t2*y2 in ECC_Add()
/hal_espressif-latest/components/esp_adc/deprecated/esp32/
Desp_adc_cal_legacy.c258 static inline uint32_t interpolate_two_points(uint32_t y1, uint32_t y2, uint32_t x_step, uint32_t x) in interpolate_two_points() argument
261 return ((y1 * x_step) + (y2 * x) - (y1 * x) + (x_step / 2)) / x_step; in interpolate_two_points()
/hal_espressif-latest/zephyr/esp32/src/esp_adc_cal/
Desp_adc_cal.c264 static inline uint32_t interpolate_two_points(uint32_t y1, uint32_t y2, uint32_t x_step, uint32_t x) in interpolate_two_points() argument
267 return ((y1 * x_step) + (y2 * x) - (y1 * x) + (x_step / 2)) / x_step; in interpolate_two_points()
/hal_espressif-latest/components/esp_adc/esp32/
Dadc_cali_line_fitting.c130 static inline uint32_t interpolate_two_points(uint32_t y1, uint32_t y2, uint32_t x_step, uint32_t x) in interpolate_two_points() argument
133 return ((y1 * x_step) + (y2 * x) - (y1 * x) + (x_step / 2)) / x_step; in interpolate_two_points()