Home
last modified time | relevance | path

Searched refs:x2 (Results 1 – 20 of 20) sorted by relevance

/device/google/dragon/audio/hal/dsp/
Deq.c49 float x2 = q->x2; in eq_process1() local
60 + b1*x1 + b2*x2 in eq_process1()
63 x2 = x1; in eq_process1()
69 q->x2 = x2; in eq_process1()
84 float x2 = q->x2; in eq_process() local
95 + b1*x1 + b2*x2 in eq_process()
98 x2 = x1; in eq_process()
104 q->x2 = x2; in eq_process()
111 float x2 = q->x2; in eq_process() local
131 + qb1*x1 + qb2*x2 in eq_process()
[all …]
Ddrc_math.h102 float x2 = x * x; in decibels_to_linear()
103 return ((A3 * x + A2)*x2 + (A1 * x + A0)) * db_to_linear[i+100]; in decibels_to_linear()
153 float x2 = x * x; in linear_to_decibels() local
154 float x4 = x2 * x2; in linear_to_decibels()
155 return ((A5 * x + A4)*x4 + (A3 * x + A2)*x2 + (A1 * x + A0)) * 20.0f in linear_to_decibels()
175 float x2 = x * x; in warp_sinf()
176 float x4 = x2 * x2; in warp_sinf()
177 return x * ((A7 * x2 + A5) * x4 + (A3 * x2 + A1)); in warp_sinf()
Deq2.c59 float x2L = qL->x2; in eq2_process_one()
69 float x2R = qR->x2; in eq2_process_one()
104 qL->x2 = x2L; in eq2_process_one()
108 qR->x2 = x2R; in eq2_process_one()
124 float32x2_t x2 = {qL->x2, qR->x2}; in eq2_process_two_neon() local
171 [x2]"+w"(x2), in eq2_process_two_neon()
192 qL->x2 = x2[0]; in eq2_process_two_neon()
198 qR->x2 = x2[1]; in eq2_process_two_neon()
217 __m128 x2 = {qL->x2, qR->x2}; in eq2_process_two_sse3() local
282 [x2]"+x"(x2), in eq2_process_two_sse3()
[all …]
Dcrossover2.c36 float32x4_t x2 = {lp->x2L, hp->x2L, lp->x2R, hp->x2R}; in lr42_split() local
81 [x2]"+w"(x2), in lr42_split()
102 lp->x2L = x2[0]; lp->x2R = x2[2]; in lr42_split()
109 hp->x2L = x2[1]; hp->x2R = x2[3]; in lr42_split()
122 __m128 x2 = {lp->x2L, hp->x2L, lp->x2R, hp->x2R}; in lr42_split() local
189 [x2]"+x"(x2), in lr42_split()
205 lp->x2L = x2[0]; lp->x2R = x2[2]; in lr42_split()
212 hp->x2L = x2[1]; hp->x2R = x2[3]; in lr42_split()
320 float32x4_t x2 = {lp->x2L, hp->x2L, lp->x2R, hp->x2R}; in lr42_merge() local
362 [x2]"+w"(x2), in lr42_merge()
[all …]
Dcrossover.c19 lr4->x2 = 0; in lr4_set()
37 float lx2 = lp->x2; in lr4_split()
49 float hx2 = hp->x2; in lr4_split()
86 lp->x2 = lx2; in lr4_split()
93 hp->x2 = hx2; in lr4_split()
110 float lx2 = lp->x2; in lr4_merge()
122 float hx2 = hp->x2; in lr4_merge()
158 lp->x2 = lx2; in lr4_merge()
165 hp->x2 = hx2; in lr4_merge()
Ddrc_kernel.c132 float x2 = x * 1.001; in slope_at() local
135 float x2Db = linear_to_decibels(x2); in slope_at()
138 float y2Db = linear_to_decibels(knee_curve(dk, x2, k)); in slope_at()
373 float x2 = x * x; in dk_update_envelope() local
374 float x3 = x2 * x; in dk_update_envelope()
375 float x4 = x2 * x2; in dk_update_envelope()
376 float release_frames = kA + kB * x + kC * x2 + kD * x3 + in dk_update_envelope()
572 float32x4_t x, x2, x4, left, right, tmp1, tmp2; in dk_compress_output() local
605 [x2]"=&w"(x2), in dk_compress_output()
631 float32x4_t x2, x4, left, right, tmp1, tmp2; in dk_compress_output() local
[all …]
Dbiquad.h24 float x1, x2; member
Dcrossover.h23 float x1, x2; member
Dbiquad.c336 bq->x2 = 0; in biquad_set()
/device/google/contexthub/lib/nanohub/
Daes.c206 …uint32_t x0, x1, x2, x3; //we CAN use an array, but then GCC will not use registers. so we use sep… in aesEncr() local
212 x2 = *src++ ^ *k++; in aesEncr()
222 ror(FwdTab0[(x2 >> 8) & 0xff], 16) ^ in aesEncr()
227 ror(FwdTab0[(x2 >> 16) & 0xff], 8) ^ in aesEncr()
232 ror(FwdTab0[(x2 >> 24) & 0xff], 0) ^ in aesEncr()
241 ror(FwdTab0[(x2 >> 0) & 0xff], 24); in aesEncr()
245 x2 = t2; in aesEncr()
252 (((uint32_t)(FwdSbox[(x2 >> 8) & 0xff])) << 8) ^ in aesEncr()
257 (((uint32_t)(FwdSbox[(x2 >> 16) & 0xff])) << 16) ^ in aesEncr()
262 (((uint32_t)(FwdSbox[(x2 >> 24) & 0xff])) << 24) ^ in aesEncr()
[all …]
/device/huawei/angler/
Dbcmdhd-pme.cal100 pdoffsetcckma0=0x2
101 pdoffsetcckma1=0x2
Dbcmdhd-low.cal106 pdoffsetcckma0=0x2
107 pdoffsetcckma1=0x2
Dbcmdhd.cal106 pdoffsetcckma0=0x2
107 pdoffsetcckma1=0x2
Dbcmdhd-high.cal106 pdoffsetcckma0=0x2
107 pdoffsetcckma1=0x2
/device/moto/shamu/camera/QCamera/HAL/core/src/
DQCameraHWI_Parm.cpp1852 pAreas[index].x2 = values[2]; in parseCameraAreaString()
1868 && (areas[i].x2 == 0) && (areas[i].y2 == 0) && (areas[i].weight == 0)) { in validateCameraAreas()
1873 if(areas[i].x2 > 1000) return false; // right should be <= 1000 in validateCameraAreas()
1877 if(areas[i].x1 >= areas[i].x2) { // left should be < right in validateCameraAreas()
1908 (areas[i].x2), (areas[i].y2), (areas[i].weight)); in setFocusAreas()
1928 && (areas[0].x2 == 0) && (areas[0].y2 == 0) && (areas[0].weight == 0)) { in setFocusAreas()
1933 uint16_t x1, x2, y1, y2, dx, dy; in setFocusAreas() local
1939 x2 = (uint16_t)((areas[0].x2 + 1000.0f)*(previewWidth/2000.0f)); in setFocusAreas()
1941 dx = x2 - x1; in setFocusAreas()
1983 (areas[i].x2), (areas[i].y2), (areas[i].weight)); in setMeteringAreas()
[all …]
/device/google/accessory/demokit/firmware/demokit/
Ddemokit.pde157 if (msg[0] == 0x2) {
162 else if (msg[1] == 0x2)
/device/google/contexthub/firmware/inc/platform/stm32f4xx/cmsis/
Darm_math.h7213 q31_t x1, x2, y1, y2; /* Nearest output values */ in arm_bilinear_interp_q31() local
7242 x2 = pYData[(rI) + nCols * (cI) + 1u]; in arm_bilinear_interp_q31()
7257 out = ((q31_t) ((q63_t) x2 * (0x7FFFFFFF - yfract) >> 32)); in arm_bilinear_interp_q31()
7288 q15_t x1, x2, y1, y2; /* Nearest output values */ in arm_bilinear_interp_q15() local
7317 x2 = pYData[(rI) + nCols * (cI) + 1u]; in arm_bilinear_interp_q15()
7336 out = (q31_t) (((q63_t) x2 * (0xFFFFF - yfract)) >> 4u); in arm_bilinear_interp_q15()
7369 q7_t x1, x2, y1, y2; /* Nearest output values */ in arm_bilinear_interp_q7() local
7397 x2 = pYData[(rI) + nCols * (cI) + 1u]; in arm_bilinear_interp_q7()
7413 out = ((x2 * (0xFFFFF - yfract))); in arm_bilinear_interp_q7()
/device/moto/shamu/camera/QCamera/HAL/core/inc/
DQCameraHWI.h207 int x1, y1, x2, y2; member
/device/lge/bullhead/wifi/
DWCNSS_qcom_cfg.ini373 # VHT Tx/Rx MCS values for 2x2
/device/google/accessory/demokit/hardware/eng/m256c/
Dmega2560 BOM rev 01.rtf1238 \cf0 CONN HEADER FMAL 18x2 .1" DL GOLD\cell