Searched defs:XX (Results 1 - 25 of 39) sorted by relevance

12

/external/clang/test/Preprocessor/
H A Dinclude-directive1.c3 // XX expands to nothing.
4 #define XX macro
8 #include XX FILE
H A Dmacro_paste_bad.c29 #define XX BL ## ARG macro
30 XX // expected-error {{attempt to use a poisoned identifier}}
/external/clang/test/CodeGenCXX/
H A D2005-01-03-StaticInitializers.cpp9 int XX = (int)(long)&(((struct S*)0)->A[1]); variable
H A Dx86_32-arguments.cpp37 CallSite(unsigned XX) : Ptr(XX) {} argument
/external/clang/test/CodeGen/
H A D2002-02-18-StaticData.c6 float XX = 12.0f; variable
12 void *Data[] = { &FOO, &BAR, &XX };
H A D2004-03-09-LargeArrayInitializers.c6 const int XX[1000] = { 0, 0 }; local
H A D2006-03-03-MissingInitializer.c3 struct X { int *XX; int Y;}; member in struct:X
/external/libopus/silk/fixed/
H A Dregularize_correlations_FIX.c36 opus_int32 *XX, /* I/O Correlation matrices */
39 opus_int D /* I Dimension of XX */
44 matrix_ptr( &XX[ 0 ], i, i, D ) = silk_ADD32( matrix_ptr( &XX[ 0 ], i, i, D ), noise );
35 silk_regularize_correlations_FIX( opus_int32 *XX, opus_int32 *xx, opus_int32 noise, opus_int D ) argument
H A DcorrMatrix_FIX.c80 opus_int32 *XX, /* O Pointer to X'*X correlation matrix [ order x order ] */
109 matrix_ptr( XX, 0, 0, order ) = energy;
114 matrix_ptr( XX, j, j, order ) = energy;
128 matrix_ptr( XX, lag, 0, order ) = energy;
129 matrix_ptr( XX, 0, lag, order ) = energy;
133 matrix_ptr( XX, lag + j, j, order ) = energy;
134 matrix_ptr( XX, j, lag + j, order ) = energy;
142 matrix_ptr( XX, lag, 0, order ) = energy;
143 matrix_ptr( XX, 0, lag, order ) = energy;
148 matrix_ptr( XX, la
75 silk_corrMatrix_FIX( const opus_int16 *x, const opus_int L, const opus_int order, const opus_int head_room, opus_int32 *XX, opus_int *rshifts ) argument
[all...]
/external/libopus/silk/float/
H A Dregularize_correlations_FLP.c36 silk_float *XX, /* I/O Correlation matrices */
39 const opus_int D /* I Dimension of XX */
45 matrix_ptr( &XX[ 0 ], i, i, D ) += noise;
35 silk_regularize_correlations_FLP( silk_float *XX, silk_float *xx, const silk_float noise, const opus_int D ) argument
/external/valgrind/helgrind/tests/
H A Dtc04_free_lock.c10 pthread_mutex_t lock; int morestuff[2000]; } XX; typedef in typeref:struct:__anon16351
17 XX* xx = malloc(sizeof(XX));
/external/apache-harmony/luni/src/test/resources/net.resources/HTTP/html/testres231/UCL/
H A DUCL.jarucl/ResClass.class ResClass.java package ucl public ucl.ResClass extends java.lang.Object { ...
/external/valgrind/memcheck/tests/
H A Dvarinfo4.c36 typedef struct { short c1; char* c2[3]; } XX; typedef in typeref:struct:__anon16598
39 struct _str { int bing; int bong; XX xyzzy[77]; }
H A Dvarinfo5so.c126 typedef struct { short c1; char* c2[3]; } XX; typedef in typeref:struct:__anon16600
129 struct _str { int bing; int bong; XX xyzzy[77]; }
/external/clang/test/SemaCXX/
H A Ddefault2.cpp121 class XX { class
/external/clang/test/SemaTemplate/
H A Dms-lookup-template-base-classes.cpp32 XX; //expected-error {{use of undeclared identifier 'XX'}}
33 A2::XX; //expected-error {{no member named 'XX' in 'A2'}} member in class:A2::A2
41 XX; //expected-error {{use of undeclared identifier 'XX'}}
49 XX; //expected-error {{use of undeclared identifier 'XX'}}
H A Dinstantiate-expr-2.cpp45 typedef N4::BinOpOverload<N1::X, N1::X>::type XX; typedef
46 XX *xx = a4;
/external/icu/icu4c/source/test/intltest/
H A Dloctest.h133 XX = 6, enumerator in enum:LocaleTest::__anon5910
/external/ppp/pppd/
H A Dmd4.c215 unsigned char XX[64]; local
251 /* Copy X into XX since we need to modify it */
253 for (i=0;i<=byte;i++) XX[i] = X[i];
254 for (i=byte+1;i<64;i++) XX[i] = 0;
257 XX[byte] = (XX[byte] | mask) & ~( mask - 1);
261 for (i=0;i<8;i++) XX[56+i] = MDp->count[i];
262 MDblock(MDp,XX);
266 MDblock(MDp,XX);
267 for (i=0;i<56;i++) XX[
[all...]
/external/skia/src/core/
H A DSkBitmapProcState_sample.h164 uint32_t XX = *xy++; // x0:14 | 4 | x1:14 local
165 unsigned x0 = XX >> 14;
166 unsigned x1 = XX & 0x3FFF;
/external/clang/test/Parser/
H A Ddeclarators.c9 int f4(*XX)(void); /* expected-error {{cannot return}} expected-warning {{type specifier missing, defaults to 'int'}} */ variable
/external/skia/src/opts/
H A DSkBitmapProcState_opts_SSE2.cpp54 uint32_t XX = *xy++; // x0:14 | 4 | x1:14 local
55 unsigned x0 = XX >> 18;
56 unsigned x1 = XX & 0x3FFF;
59 __m128i allX = _mm_cvtsi32_si128((XX >> 14) & 0x0F);
164 uint32_t XX = *xy++; // x0:14 | 4 | x1:14 local
165 unsigned x0 = XX >> 18;
166 unsigned x1 = XX & 0x3FFF;
169 __m128i allX = _mm_cvtsi32_si128((XX >> 14) & 0x0F);
682 uint32_t XX = *xy++; // x0:14 | 4 | x1:14 local
683 unsigned x0 = XX >> 1
[all...]
/external/clang/test/Sema/
H A Ddesignated-initializers.c144 struct XX { int a, *b; }; struct
145 struct XY { int before; struct XX xx, *xp; float* after; } xy[] = {
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsABIFlagsSection.h81 enum class FpABIKind { ANY, XX, S32, S64 }; member in class:llvm::MipsABIFlagsSection::FpABIKind
224 FpABI = FpABIKind::XX;
/external/mdnsresponder/mDNSCore/
H A DDNSDigest.c1041 # define X(i) XX##i
1043 mDNSu32 XX[MD5_LBLOCK]; local
1044 # define X(i) XX[i]

Completed in 7597 milliseconds

12