/external/clang/test/CodeGen/ |
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
|
/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/ |
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'}}
|
overloadable.c | 22 void test_funcptr(int (*f1)(int, double), 24 float *fp = accept_funcptr(f1); 66 f1_type __attribute__((overloadable)) f1; // expected-error{{'overloadable' function 'f1' must have a prototype}} variable 70 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)
|
/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...] |
/external/v8/test/mjsunit/tools/ |
profile.js | 69 'lib1-f1': 0x11110, 'lib1-f2': 0x11210, 70 'lib2-f1': 0x21110, 'lib2-f2': 0x21210, 71 'T: F1': 0x50110, 'T: F2': 0x50210, 'T: F3': 0x50410 }; 76 this.profile.addStaticCode('lib1-f1', 0x11100, 0x11900); 79 this.profile.addStaticCode('lib2-f1', 0x21100, 0x21900); 81 this.profile.addCode('T', 'F1', 0x50100, 0x100); 106 this.enter('lib1-f1'); 108 this.enter('T: F1'); 112 this.enter('lib2-f1'); 113 this.enter('lib2-f1'); [all...] |
/external/v8/test/mjsunit/compiler/ |
optimized-function-calls.js | 61 function f1(a) { function 78 return f4(f3(f2(f1(f0()),f0()),f1(f0()),f0()),f2(f1(f0()),f0()),f1(f0()),f0()) 79 + f4(f0(),f1(f0()),f2(f1(f0()),f0()),f3(f2(f1(f0()),f0()),f1(f0()),f0()));
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/statements/ |
switch2.js | 74 function f1(i) { function 89 f1("a"), "ab*"); 92 f1("b"), "ab*"); 95 f1("*"), "ab*"); 98 f1("c"), "c"); 101 f1("d"), "d");
|