Home
last modified time | relevance | path

Searched refs:n8 (Results 1 – 25 of 32) sorted by relevance

12

/third_party/ffmpeg/libavcodec/
Dmdct_template.c107 int k, n8, n4, n2, n, j; in ff_imdct_half_c() local
117 n8 = n >> 3; in ff_imdct_half_c()
131 for(k = 0; k < n8; k++) { in ff_imdct_half_c()
133 CMUL(r0, i1, z[n8-k-1].im, z[n8-k-1].re, tsin[n8-k-1], tcos[n8-k-1]); in ff_imdct_half_c()
134 CMUL(r1, i0, z[n8+k ].im, z[n8+k ].re, tsin[n8+k ], tcos[n8+k ]); in ff_imdct_half_c()
135 z[n8-k-1].re = r0; in ff_imdct_half_c()
136 z[n8-k-1].im = i0; in ff_imdct_half_c()
137 z[n8+k ].re = r1; in ff_imdct_half_c()
138 z[n8+k ].im = i1; in ff_imdct_half_c()
169 int i, j, n, n8, n4, n2, n3; in ff_mdct_calc_c() local
[all …]
/third_party/ffmpeg/libavcodec/mips/
Dfft_mips.c326 int k, n8, n4, n2, n, j; in ff_imdct_half_mips() local
342 n8 = n >> 3; in ff_imdct_half_mips()
405 for(k = 0; k < n8; k += 2) { in ff_imdct_half_mips()
406 tcos1 = &tcos[n8 - k - 2]; in ff_imdct_half_mips()
407 tsin1 = &tsin[n8 - k - 2]; in ff_imdct_half_mips()
408 tcos2 = &tcos[n8 + k]; in ff_imdct_half_mips()
409 tsin2 = &tsin[n8 + k]; in ff_imdct_half_mips()
410 z1 = &z[n8 - k - 2]; in ff_imdct_half_mips()
411 z2 = &z[n8 + k ]; in ff_imdct_half_mips()
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dpngshim.c104 v82 n8 = { 8, 8, 8, 8, 8, 8, 8, 8 }; in premultiply_data() local
113 s1 = s >> n8; /* G A G A G A G A */ in premultiply_data()
123 s0 = ( s0 + ( s0 >> n8 ) ) >> n8; in premultiply_data()
124 s1 = ( s1 + ( s1 >> n8 ) ) >> n8; in premultiply_data()
126 s = s0 | ( s1 << n8 ); in premultiply_data()
/third_party/vixl/src/aarch64/
Dpointer-auth-aarch64.cc95 uint64_t n8 = GetNibble(in_data, 4 * (i + 8)); in BigShuffle() local
99 uint64_t t0 = RotNibble(n8, 2) ^ RotNibble(n4, 1) ^ RotNibble(n0, 1); in BigShuffle()
101 uint64_t t2 = RotNibble(n12, 2) ^ RotNibble(n8, 1) ^ RotNibble(n0, 1); in BigShuffle()
102 uint64_t t3 = RotNibble(n12, 1) ^ RotNibble(n8, 1) ^ RotNibble(n4, 2); in BigShuffle()
/third_party/ffmpeg/libavcodec/arm/
Dmdct_vfp.S122 .set trig_lo_head, n8 - k - 2
123 .set trig_hi_head, n8 + k
126 .set trig_lo_tail, n8 - (k - 2) - 2
127 .set trig_hi_tail, n8 + (k - 2)
243 .set n8, n/8 define
256 .rept n8/2
268 .rept n8/2 - 1
Dmdct_neon.S78 lsr lr, r12, #3 @ n8 = n >> 3
257 lsr lr, r12, #3 @ n8 = n >> 3
/third_party/ffmpeg/libavcodec/ppc/
Dfft_init.c51 int n8 = n >> 3; in imdct_half_altivec() local
55 const vec_f *tcos = (const vec_f*)(s->tcos+n8); in imdct_half_altivec()
56 const vec_f *tsin = (const vec_f*)(s->tsin+n8); in imdct_half_altivec()
/third_party/mesa3d/docs/drivers/
Danv.rst81 label="binding 0 - STORAGE_IMAGE\n anv_storage_image_descriptor" ] n8;
86 n8 -> n9 -> n10 -> n11 [style=invis];
147 n3 -> n8 [lhead=cluster_2];
149 n8 -> n12;
/third_party/typescript/tests/baselines/reference/
DlogicalAndOperatorStrictMode.js72 const n8 = n && z; constant
147 var n8 = n && z; variable
DlogicalAndOperatorStrictMode.types369 const n8 = n && z;
370 >n8 : null
DlogicalAndOperatorStrictMode.symbols306 const n8 = n && z;
307 >n8 : Symbol(n8, Decl(logicalAndOperatorStrictMode.ts, 70, 5))
DlogicalAndOperatorStrictMode.errors.txt98 const n8 = n && z;
/third_party/ffmpeg/libavcodec/x86/
Dfft.asm804 %macro PREROTATER 5 ;-2*k, 2*k, input+n4, tcos+n8, tsin+n8
805 %if mmsize == 8 ; j*2+2-n4, n4-2-j*2, input+n4, tcos+n8, tsin+n8
881 %macro POSROTATESHUF 5 ;j, k, z+n8, tcos+n8, tsin+n8
1009 mov r6, [esp] ; rrevtab = ptr+n8
/third_party/glslang/Test/
Ddecls.frag12 int n8[8], p;
/third_party/typescript/tests/cases/conformance/expressions/binaryOperators/logicalAndOperator/
DlogicalAndOperatorStrictMode.ts73 const n8 = n && z; constant
/third_party/pcre2/pcre2/src/
Dpcre2_compile.c5006 unsigned int n8 = 0; in add_to_class_internal() local
5028 if (rc > 0) n8 += add_list_to_class_internal(classbits, uchardptr, options, cb, in add_to_class_internal()
5045 else n8 += add_to_class_internal(classbits, uchardptr, options, cb, oc, od); in add_to_class_internal()
5056 n8++; in add_to_class_internal()
5067 if (start > cb->class_range_start && end < cb->class_range_end) return n8; in add_to_class_internal()
5075 n8++; in add_to_class_internal()
5127 return n8; /* Number of 8-bit characters */ in add_to_class_internal()
5159 unsigned int n8 = 0; in add_list_to_class_internal() local
5166 n8 += add_to_class_internal(classbits, uchardptr, options, cb, p[0], p[n]); in add_list_to_class_internal()
5170 return n8; in add_list_to_class_internal()
[all …]
/third_party/ffmpeg/tests/checkasm/x86/
Dcheckasm.asm45 n8: dq 0x75b6ba21077c48ad define
/third_party/ltp/testcases/kernel/mce-test/kvm/
DREADME126 kernel /boot/vmlinuz-2.6.32kvm ro root=/dev/sda1 console=tty0 console=ttyS0,115200n8
/third_party/glslang/Test/baseResults/
Ddecls.frag.out197 0:? 'n8' ( global 8-element array of int)
442 0:? 'n8' ( global 8-element array of int)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DREADME-SSE.txt780 …i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
/third_party/skia/third_party/externals/libjpeg-turbo/testimages/
Dtestorig.ppm4n8,x:-;.�;.�<4�<5�>3�@3�A2�B1�A2�A1�>1�@4�B7�B9�A7�>5�>3�?2�?-�?-�>,�=+�;,�<-�<-�<-�;.�;.�<.�;-�;…
/third_party/mesa3d/docs/
Drelease-maintainers-keys.asc963 KSvEEUfdUdgnjIBwSvo//9mISQQwEQIACQUCU/n8/AIdIAAKCRDh7L4H19cIlSm4
/third_party/ffmpeg/tests/
Dreference.pnm713 …�����������������������������������������������������������������޺���rC�rD�n8�l6�l3�q9�k/�n2�`,�\&…
1017 …sX�R:�9(�5)�4'�3*�1%�-!�6+�A5�?$s+X GIIWU`!Z(L�^1�f3�h4�e3�n8�l7�k3�a)�d.��Kٵu�ȇ�؞…
1137 zD�O�Z%�['�a+�Z&�`,�^*�X#�S�Q�N|IxG n=n8rAvCxD
1341 …ѢR͚Dɔ<ƕC‘AƗGʚJاWڭXڭ[ڰa٭^׬^Ԩ\СSɚN��F��<��:�x/�t*�h �n,�k4�`�WX}Y%�^*�q8�n8�e,�f3�m<�o?�oA�]-lS!…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonPatterns.td1485 def: Pat<(mul I32:$Rs, n8_0ImmPred:$n8),
1486 (M2_mpysin I32:$Rs, (NegImm8 imm:$n8))>;
/third_party/cups-filters/cupsfilters/
Dimage.ppm425 …[(d&!\ [,d'&^!+b(J�Gl20E > I:-�.!(/&?(R$'`- e,h*j'i) t9!n8#i7#b5%\5*W60T:5S;9R<…
452 &?'"Y9b;^2 Z*^.h6p@r@p=n8k3f.&c(*`$1Z"1R/J4F:G?G@DBB D=!<56043.2,58E)JZ=cvZ…
458 ""� ;1V@Y:U3 O+M% Q%[,d2&j7&k5(m7)n8,o:-p;.q>0p>4n<0i6+d-*d*+e(+f&)d"'b #^)d$YT%^+!…
475 …!�"��( 54",8$"@( N1]8c9`3\.].c2 c1 h5l9n8l4"h,$a&&\ ,U.O2H9F@F DD"C> E7?%86…
544 …TI%XI)]G,aE/eC0g@*a7'^4'^4&]3U-R**a:?vOLt50T/N8S /I-L".W-R&`1g3k7!n8*j6/e11]*/Y'PRW…
2705 Z/]2a5`4h:qCzJq>n8s=s; h._$]$]*W)K@�H�b<tR%xZ&�h/�k*~k&~n!�u#��*��3��3��#��)��,…
5351 …V!I"='(!$"$4!M+*\42W,%Q'M!S(a3#k>+n@)l<%d2^+V$S�W!�a+n8sB�a9�`;zT0b;E 8…

12