/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/ |
p6.cpp | 4 struct A0 { 8 template<int X, int Y> void f0(A0<X, Y>) { } // expected-note{{previous}} 9 template<int N, int M> void f0(A0<M, N>) { } 10 template<int V1, int V2> void f0(A0<V1, V2>) { } // expected-error{{redefinition}} 12 template<int X, int Y> void f1(A0<0, (X + Y)>) { } // expected-note{{previous}} 13 template<int X, int Y> void f1(A0<0, (X - Y)>) { } 14 template<int A, int B> void f1(A0<0, (A + B)>) { } // expected-error{{redefinition}} 16 template<int X, int Y> void A0<X, Y>::g0() { }
|
/external/clang/test/CodeGen/ |
pr5406.c | 4 typedef struct { char x[3]; } A0; 11 A0 a3;
|
/external/clang/INPUTS/ |
macro_pounder_obj.c | 6 #define A0 a b 7 #define A1 A0 A0 A0 A0 A0 A0
|
macro_pounder_fn.c | 6 #define A0(A, B) A B 7 #define A1(A, B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B) A0(A,B)
|
/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
Filters.h | 34 * Biquad with coefficients A0, A1, A2, B1 and B2 coefficients 39 LVM_INT16 A0; 49 * Biquad with coefficients A0, A1 and B1 coefficients 54 LVM_INT16 A0;
|
LVM_FO_HPF.c | 36 /* A0 = (1 - B1) / 2 */ 37 /* A1 = A0 */ 44 /* A0 -8388571 */ 56 /* Y = (A0 + A1*X + A2*X2 + A3*X3 + ?.. + AN*xN) << AN+1 */ 92 /* A0=(1-B1)/2= B1/2 - 0.5*/ 93 Y=Y>>1; /* A0=Y=B1/2*/ 94 Y=Y-0x40000000; /* A0=Y=(B1/2 - 0.5)*/ 95 MUL32x16INTO32(Y, FILTER_LOSS ,pCoeffs->A0 ,15) /* Apply loss to avoid overflow*/ 96 pCoeffs->A1=-pCoeffs->A0; /* Store A1=-A0*/ [all...] |
LVM_FO_LPF.c | 36 /* A0 = (1 + B1) / 2 */ 37 /* A1 = A0 */ 44 /* A0 -8388571 */ 56 /* Y = (A0 + A1*X + A2*X2 + A3*X3 + ?.. + AN*xN) << AN+1 */ 90 // A0=(1+B1)/2= B1/2 + 0.5 91 Y=Y>>1; // A0=Y=B1/2 92 Y=Y+0x40000000; // A0=Y=(B1/2 + 0.5) 93 MUL32x16INTO32(Y, FILTER_LOSS ,pCoeffs->A0 ,15) // Apply loss to avoid overflow 94 pCoeffs->A1=pCoeffs->A0;
|
BP_1I_D16F16Css_TRC_WRA_01_Init.c | 48 pBiquadState->coefs[0]=pCoef->A0;
|
BP_1I_D16F32Cll_TRC_WRA_01_Init.c | 58 pBiquadState->coefs[0] = pCoef->A0;
|
BP_1I_D32F32Cll_TRC_WRA_02_Init.c | 47 pBiquadState->coefs[0]=pCoef->A0;
|
PK_2I_D32F32CllGss_TRC_WRA_01_Init.c | 29 pBiquadState->coefs[0]=pCoef->A0;
|
PK_2I_D32F32CssGss_TRC_WRA_01_Init.c | 28 pBiquadState->coefs[0]=pCoef->A0;
|
FO_1I_D16F16Css_TRC_WRA_01_Init.c | 51 temp=pCoef->A0;
|
FO_1I_D32F32Cll_TRC_WRA_01_Init.c | 50 temp=pCoef->A0;
|
FO_2I_D16F32Css_LShx_TRC_WRA_01_Init.c | 50 temp=pCoef->A0;
|
BQ_1I_D16F16Css_TRC_WRA_01_Init.c | 52 temp=pCoef->A0;
|
BQ_1I_D16F32Css_TRC_WRA_01_init.c | 53 temp=pCoef->A0;
|
BQ_2I_D16F16Css_TRC_WRA_01_Init.c | 53 temp=pCoef->A0;
|
/cts/tools/signature-tools/test/signature/comparator/ |
AnnotationCompareTest.java | 34 CompilationUnit A0 = new CompilationUnit("a.A0", 36 "public @interface A0 {" + 45 "@A0 " + 49 "@A0 " + 51 IApi fromApi = convert(A0, A1, AnnotBDefault); 52 IApi toApi = convert(A0, A1, AnnotB); 58 CompilationUnit A0 = new CompilationUnit("a.A0", 60 "public @interface A0 {" [all...] |
/external/openssl/crypto/bn/asm/ |
x86_64-mont.pl | 701 my @A0=("%r10","%r11"); 703 my ($a0,$a1,$ai)=("%r14","%r15","%rbx"); 753 mov -32($aptr,$i),$a0 # a[0] 760 mul $a0 # a[1]*a[0] 761 mov %rax,$A0[0] # a[1]*a[0] 763 mov %rdx,$A0[1] 764 mov $A0[0],-24($tptr,$i) # t[1] 766 xor $A0[0],$A0[0] 767 mul $a0 # a[2]*a[0 [all...] |
/external/clang/test/CXX/temp/temp.res/temp.dep/ |
p3.cpp | 2 struct A0 { 6 template <typename T> struct B0: A0 {
|
/external/clang/test/SemaTemplate/ |
class-template-spec.cpp | 55 template<typename T> struct A0; 60 struct A0<void> { 67 struct A0 { 68 void foo(A0<void>::pointer p = 0);
|
/frameworks/av/media/libeffects/lvm/lib/Eq/src/ |
LVEQNB_CalcCoef.c | 60 /* a0 = (0.5 + b2) / 2 */ 102 LVM_INT32 A0; 142 factor = 0x7fff; /* Initialise to 1.0 for the a0 coefficient */ 153 * Calculate the B1 and A0 coefficients 156 A0 = ((B1 >> 16) * (CosErr >> 10)) >> 6; /* Temporary storage for (0.5 - b2/2) * coserr(t0) */ 157 B1 -= A0; /* B1 = (0.5 - b2/2) * (1 - coserr(t0)) */ 158 A0 = (0x40000000 + B2) >> 1; /* A0 = (0.5 + b2) */ 163 pCoefficients->A0 = A0; [all...] |
/hardware/qcom/media/mm-video/vidc/vdec/src/ |
frameparser.cpp | 50 parse_state(A0), 75 if (codec_type_parse > CODEC_TYPE_VC1 || parse_state != A0) 160 parse_state = A0; 164 while ( source->nFilledLen > 0 && parse_state != A0 199 parse_state = A0; 226 parse_state = A0; 248 parse_state = A0; 252 case A0: 287 case A0: 302 parse_state = A0; [all...] |
/frameworks/av/media/libeffects/lvm/lib/Common/lib/ |
BIQUAD.h | 47 LVM_INT16 A0; /* a0 */ 56 LVM_INT32 A0; /* a0 */ 65 LVM_INT16 A0; /* a0 */ 72 LVM_INT32 A0; /* a0 */ 80 LVM_INT16 A0; /* a0 */ [all...] |