/external/clang/test/CodeGen/ |
cleanup-stack.c | 13 int f1(void) { function
|
tentative-decls.c | 24 int *f1() { function
|
unreachable.c | 12 int f1(int i) { function
|
/external/clang/test/CodeGenCXX/ |
alloca-align.cpp | 15 // CHECK: define void @f1 17 extern "C" void f1() { function
|
cxx11-special-members.cpp | 15 void f1(B &x) { function
|
mangle-ms-arg-qualifiers.cpp | 176 void foo_fnptrbackref1(ArrayFunPtr f1, ArrayFunPtr f2) { } 180 void foo_fnptrbackref2(ArrayFunPtr f1, ConstFunPtr f2) { } 185 void foo_fnptrbackref3(ArrayFunPtr f1, NormalFunPtr f2) { } 189 void foo_fnptrbackref4(NormalFunPtr f1, ArrayFunPtr f2) { }
|
/external/clang/test/FixIt/ |
fixit-function-call.cpp | 13 void f1(double *a); 14 void f1(intTy &a); 17 // CHECK: error: no matching function for call to 'f1 19 // CHECK: void f1(intTy &a); 22 // CHECK: void f1(double *a); 23 f1(a + 1); 26 // CHECK: error: no matching function for call to 'f1 29 f1((int *)0);
|
/external/clang/test/Parser/ |
cxx-attributes.cpp | 4 virtual void f1(const char* a, ...)
|
for.cpp | 3 void f1() { function
|
/external/clang/test/Sema/ |
attr-used.c | 15 void f1() { function
|
builtin-object-size.c | 9 int f1() { function
|
floating-point-compare.c | 3 int f1(float x, float y) { function
|
fp16-sema.c | 22 extern __fp16 f1 (void); // expected-error {{function return value cannot have __fp16 type; did you forget * ?}}
|
function-redecl.c | 33 int f1; local 35 void f1(double); 37 void f1(double); // expected-note{{previous declaration is here}} 39 int f1(int); // expected-error{{conflicting types for 'f1'}}
|
warn-unused-variables.c | 15 void f1(void) { function
|
/external/clang/test/SemaCXX/ |
type-definition-in-specifier.cpp | 23 struct S5 { int x; } f1() { return S5(); } // expected-error{{result type}} function
|
/external/clang/test/SemaTemplate/ |
dependent-sized_array.cpp | 13 void f1() { function
|
instantiate-using-decl.cpp | 68 T f1() const; 71 using s1::f1; 72 T f1() const; 80 b.f1();
|
value-dependent-null-pointer-constant.cpp | 9 const char *f1(bool Cond) { function in struct:X0
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
isp_az.c | 47 Word32 f1[NC16k + 1], f2[NC16k]; local 56 Get_isp_pol_16kHz(&isp[0], f1, nc); 59 f1[i] = f1[i] << 2; 62 Get_isp_pol(&isp[0], f1, nc); 84 * Scale F1(z) by (1+isp[m-1]) and F2(z) by (1-isp[m-1]) * 89 /* f1[i] *= (1.0 + isp[M-1]); */ 91 hi = f1[i] >> 16; 92 lo = (f1[i] & 0xffff)>>1; 95 f1[i] = vo_L_add(f1[i], t0) [all...] |
/ndk/tests/device/test-stlport_shared-exception/jni/ |
fp-regs.cpp | 21 double a1, b1, c1, d1, e1, f1, g1, h1, i1, j1; local 39 f1 = e1 + 1; 40 g1 = f1 + 1; 82 if (f1 != 5.0)
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
fp-regs.cpp | 21 double a1, b1, c1, d1, e1, f1, g1, h1, i1, j1; local 39 f1 = e1 + 1; 40 g1 = f1 + 1; 82 if (f1 != 5.0)
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/ |
MatrixUtilsTests.java | 30 private static void assertEqualsFloat(float f0, float f1) { 31 assertEqualsFloat(f0, f1, EPSILON); 34 /* package */ static void assertEqualsFloat(float f0, float f1, float error) { 35 assertTrue(Math.abs(f0 - f1) < error);
|
/external/eigen/test/ |
array_replicate.cpp | 35 int f1 = internal::random<int>(1,10), local 38 x1.resize(rows*f1,cols*f2); 40 for(int i=0; i<f1; i++) 42 VERIFY_IS_APPROX(x1, m1.replicate(f1,f2)); 49 x2.resize(rows,f1); 50 for (int j=0; j<f1; ++j) 52 VERIFY_IS_APPROX(x2, v1.rowwise().replicate(f1));
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
lsp_az.cpp | 94 F1(z) and F2(z), and Lsp_Az, which converts LSP to LPC by multiplying 95 F1(z) by 1+z^(-1) and F2(z) by 1-z^(-1), then calculating A(z) = (F1(z) + 160 This function finds the polynomial F1(z) or F2(z) from the LSPs. If the LSP 161 vector is passed at address 0, F1(z) is computed and if it is passed at 166 F1(z) = product ( 1 - 2 lsp[i] z^-1 + z^-2 ) 438 (1) Find the coefficients of F1(z) and F2(z) (see Get_lsp_pol) 439 (2) Multiply F1(z) by 1+z^{-1} and F2(z) by 1-z^{-1} 440 (3) A(z) = ( F1(z) + F2(z) ) / 2 461 Word32 f1[6], f2[6] 517 Word32 f1[6]; local [all...] |