Home
last modified time | relevance | path

Searched refs:yp (Results 1 – 25 of 66) sorted by relevance

123

/external/libopus/celt/mips/
Dmdct_mipsr1.h100 kiss_fft_scalar * OPUS_RESTRICT yp = f; in clt_mdct_forward() local
106 *yp++ = S_MUL_ADD(*wp2, xp1[N2],*wp1,*xp2); in clt_mdct_forward()
107 *yp++ = S_MUL_SUB(*wp1, *xp1,*wp2, xp2[-N2]); in clt_mdct_forward()
118 *yp++ = *xp2; in clt_mdct_forward()
119 *yp++ = *xp1; in clt_mdct_forward()
126 *yp++ = S_MUL_SUB(*wp2, *xp2, *wp1, xp1[-N2]); in clt_mdct_forward()
127 *yp++ = S_MUL_ADD(*wp2, *xp1, *wp1, xp2[N2]); in clt_mdct_forward()
136 kiss_fft_scalar * OPUS_RESTRICT yp = f; in clt_mdct_forward() local
145 re = *yp++; in clt_mdct_forward()
146 im = *yp++; in clt_mdct_forward()
[all …]
/external/libopus/celt/arm/
Dcelt_ne10_mdct.c78 kiss_fft_scalar * OPUS_RESTRICT yp = f; in clt_mdct_forward_neon() local
84 *yp++ = MULT16_32_Q15(*wp2, xp1[N2]) + MULT16_32_Q15(*wp1,*xp2); in clt_mdct_forward_neon()
85 *yp++ = MULT16_32_Q15(*wp1, *xp1) - MULT16_32_Q15(*wp2, xp2[-N2]); in clt_mdct_forward_neon()
96 *yp++ = *xp2; in clt_mdct_forward_neon()
97 *yp++ = *xp1; in clt_mdct_forward_neon()
104 *yp++ = -MULT16_32_Q15(*wp1, xp1[-N2]) + MULT16_32_Q15(*wp2, *xp2); in clt_mdct_forward_neon()
105 *yp++ = MULT16_32_Q15(*wp2, *xp1) + MULT16_32_Q15(*wp1, xp2[N2]); in clt_mdct_forward_neon()
114 kiss_fft_scalar * OPUS_RESTRICT yp = f; in clt_mdct_forward_neon() local
123 re = *yp++; in clt_mdct_forward_neon()
124 im = *yp++; in clt_mdct_forward_neon()
[all …]
/external/libopus/celt/
Dmdct.c157 kiss_fft_scalar * OPUS_RESTRICT yp = f; in clt_mdct_forward_c() local
163 *yp++ = MULT16_32_Q15(*wp2, xp1[N2]) + MULT16_32_Q15(*wp1,*xp2); in clt_mdct_forward_c()
164 *yp++ = MULT16_32_Q15(*wp1, *xp1) - MULT16_32_Q15(*wp2, xp2[-N2]); in clt_mdct_forward_c()
175 *yp++ = *xp2; in clt_mdct_forward_c()
176 *yp++ = *xp1; in clt_mdct_forward_c()
183 *yp++ = -MULT16_32_Q15(*wp1, xp1[-N2]) + MULT16_32_Q15(*wp2, *xp2); in clt_mdct_forward_c()
184 *yp++ = MULT16_32_Q15(*wp2, *xp1) + MULT16_32_Q15(*wp1, xp2[N2]); in clt_mdct_forward_c()
193 kiss_fft_scalar * OPUS_RESTRICT yp = f; in clt_mdct_forward_c() local
202 re = *yp++; in clt_mdct_forward_c()
203 im = *yp++; in clt_mdct_forward_c()
[all …]
/external/llvm/test/Transforms/MergeFunc/
Dapply_function_attributes.ll9 define void @B(%Opaque_type* sret %a, %S2i* %b, i32* %xp, i32* %yp) {
11 %y = load i32, i32* %yp
18 define void @C(%Opaque_type* sret %a, %S2i* %b, i32* %xp, i32* %yp) {
20 %y = load i32, i32* %yp
27 define void @A(%Opaque_type* sret %a, %D2i* %b, i32* %xp, i32* %yp) {
29 %y = load i32, i32* %yp
/external/dhcpcd-6.8.2/dhcpcd-hooks/
D50-yp.conf12 local cf=/etc/yp.conf."$ifname" prefix= x= pid=
33 save_conf /etc/yp.conf
34 cat "$cf" > /etc/yp.conf
45 restore_conf /etc/yp.conf || return 0
/external/clang/test/Modules/
Dhidden-definition.cpp12 Y *yp; variable
13 X *xp = yp; // expected-error {{cannot initialize}}
15 X &xr = *yp; // expected-error {{unrelated type}}
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
DUtils.java57 public static double[] interp(double[] x, double[] xp, double[] yp) { in interp() argument
72 y[i] = yp[ip]; in interp()
74 double dy = yp[ip] - yp[ip-1]; in interp()
76 y[i] = yp[ip-1] + dy/dx * (x[i] - xp[ip-1]); in interp()
/external/deqp/framework/common/
DtcuInterval.cpp81 TCU_INTERVAL_APPLY_MONOTONE2(ret, xp, x, yp, y, val, in operator -()
82 TCU_SET_INTERVAL(val, point, point = xp - yp)); in operator -()
90 TCU_INTERVAL_APPLY_MONOTONE2(ret, xp, x, yp, y, val, in operator *()
91 TCU_SET_INTERVAL(val, point, point = xp * yp)); in operator *()
/external/walt/ios/WALT/
DDragLatencyController.mm50 /** Linear interpolation of (xp, yp) at x. */
54 const std::vector<T>& yp) {
56 NSCAssert(xp.size() == yp.size(), @"xp and yp must have matching lengths.");
64 y.push_back(yp.front()); // Pad out y with yp.front() for x values before xp.front().
67 size_t ip = 0; // Index into xp/yp.
78 y.push_back(Lerp(yp[ip - 1], yp[ip], alpha));
82 y.push_back(yp.back()); // Pad out y with yp.back() for values after xp.back().
/external/llvm/test/CodeGen/PowerPC/
D2011-12-08-DemandedBitsMiscompile.ll3 define void @test(i32* nocapture %x, i64* %xx, i32* %yp) nounwind uwtable ssp {
5 %yy = load i32, i32* %yp
/external/webrtc/webrtc/modules/audio_coding/neteq/test/
DRTPjitter.cc221 int compare_arr_time(const void *xp, const void *yp) { in compare_arr_time() argument
223 if(((arr_time *)xp)->time == ((arr_time *)yp)->time) in compare_arr_time()
225 else if(((arr_time *)xp)->time > ((arr_time *)yp)->time) in compare_arr_time()
/external/openssh/
DPROTOCOL.chacha20poly130598 http://cr.yp.to/chacha/chacha-20080128.pdf
101 http://cr.yp.to/mac/poly1305-20050329.pdf
/external/llvm/test/CodeGen/X86/
Davx512-vec-cmp.ll27 define <16 x i32> @test3(<16 x i32> %x, <16 x i32> %x1, <16 x i32>* %yp) nounwind {
33 %y = load <16 x i32>, <16 x i32>* %yp, align 4
930 define <2 x double> @test31(<2 x double> %x, <2 x double> %x1, <2 x double>* %yp) nounwind {
943 %y = load <2 x double>, <2 x double>* %yp, align 4
949 define <4 x double> @test32(<4 x double> %x, <4 x double> %x1, <4 x double>* %yp) nounwind {
962 %y = load <4 x double>, <4 x double>* %yp, align 4
968 define <8 x double> @test33(<8 x double> %x, <8 x double> %x1, <8 x double>* %yp) nounwind {
974 %y = load <8 x double>, <8 x double>* %yp, align 4
980 define <4 x float> @test34(<4 x float> %x, <4 x float> %x1, <4 x float>* %yp) nounwind {
992 %y = load <4 x float>, <4 x float>* %yp, align 4
[all …]
Davx512bwvl-vec-cmp.ll48 define <16 x i16> @test256_5(<16 x i16> %x, <16 x i16> %x1, <16 x i16>* %yp) nounwind {
54 %y = load <16 x i16>, <16 x i16>* %yp, align 4
198 define <8 x i16> @test128_5(<8 x i16> %x, <8 x i16> %x1, <8 x i16>* %yp) nounwind {
204 %y = load <8 x i16>, <8 x i16>* %yp, align 4
Davx512bw-vec-cmp.ll48 define <32 x i16> @test5(<32 x i16> %x, <32 x i16> %x1, <32 x i16>* %yp) nounwind {
54 %y = load <32 x i16>, <32 x i16>* %yp, align 4
Davx512vl-vec-cmp.ll48 define <8 x i32> @test256_5(<8 x i32> %x, <8 x i32> %x1, <8 x i32>* %yp) nounwind {
54 %y = load <8 x i32>, <8 x i32>* %yp, align 4
260 define <4 x i32> @test128_5(<4 x i32> %x, <4 x i32> %x1, <4 x i32>* %yp) nounwind {
266 %y = load <4 x i32>, <4 x i32>* %yp, align 4
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/it-IT/
Dit-IT_cm0_kdt_mgc1.pkb40 KxV?��f�`��C�4�vu��@��`گ�Y��Pf�C�a� :J���?N�yp�82�ۡ����N
/external/pdfium/third_party/libtiff/
Dtif_luv.c776 float* yp = (float*) op; in L16toY() local
779 *yp++ = (float)LogL16toY(*l16++); in L16toY()
798 float* yp = (float*) op; in L16fromY() local
801 *l16++ = (int16) (LogL16fromY(*yp++, sp->encode_meth)); in L16fromY()
/external/ImageMagick/PerlMagick/t/reference/filter/
DColorize.miff15 …&$�" ����)%�#�'%�)*�*1�+7�'8�+<�,8�-5�,3�(*�:7�qp�������}|�}{�xx�ge�yp�~w�%�$� ���…
DRaise.miff15 …<.�:*�VG�mj�ag�bm�nq�dl�Wpu�iBR3����������������������������{o�{o�{n�zn�zn�yp�zn�zk�zv���wx�������…
/external/dhcpcd-6.8.2/
Dconfigure1206 if strings "$YPBIND" | $GREP -q yp\\.conf; then
1213 elif strings "$YPBIND" | $GREP -q /etc/yp; then
/external/v8/benchmarks/
Draytrace.js656 var yp = y * 1.0 / canvasHeight * 2 - 1;
659 var ray = scene.camera.getRay(xp, yp);
/external/ImageMagick/PerlMagick/t/
Dinput_rgb_lsb_08bit.mat1 …����|xxysrnou������������������������������������Ŵ�������q0L���������������yp}��������������������…
/external/ImageMagick/PerlMagick/t/reference/write/filter/
DColorize.miff43 …&$�! ����($�"�'$�()�*0�+7�'7�*<�+7�-4�+2�'*�:7�pp���|{�}z�wx�gd�yp�}w�$�#� ���…
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/
Des-ES_zl0_kdt_dur.pkb74 ��<!�G%I*��<$x�� ���_�I�}ħ= z��+�=�?�8/yp����͚y���

123