HomeSort by relevance Sort by last modified time
    Searched defs:f1 (Results 276 - 300 of 788) sorted by null

<<11121314151617181920>>

  /external/v8/test/mjsunit/compiler/
variables.js 38 function f1(x) { return x; } function
39 assertEquals(1, f1(1));
  /external/v8/test/mjsunit/harmony/
block-scoping.js 34 function f1() { function
42 for (var j = 0; j < 5; ++j) f1();
43 %OptimizeFunctionOnNextCall(f1);
44 f1();
45 assertTrue(%GetOptimizationStatus(f1) != 2);
  /external/v8/test/mjsunit/regress/
regress-1229.js 56 function f1(y, z) { function
70 return f1(y, z); /* f should be inlined into g, note rotated arguments */
88 return f1(local_y, local_z); /* f should be inlined into h */
116 invoke(f1, [2, 3]);
  /external/v8/test/mjsunit/
simple-constructor.js 34 function f1() { class
45 this.z = f1;
52 this.z = f1;
55 o1_1 = new f1();
57 o1_2 = new f1();
  /external/valgrind/none/tests/s390x/
bfp-1.c 7 volatile float f1, f2; variable
31 register float r1 asm("f1") = f1;
37 printf("%f + %f = %f\n", f1, f2, r1);
42 register float r1 asm("f1") = f1;
48 printf("%f - %f = %f\n", f1, f2, r1);
53 register float r1 asm("f1") = f1;
59 printf("%f * %f = %f\n", f1, f2, r1)
    [all...]
  /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...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
isp_az.cpp 142 int32 f1[NC16k + 1], f2[NC16k]; local
154 Get_isp_pol_16kHz(&isp[0], f1, nc);
157 f1[i] = shl_int32(f1[i], 2);
167 Get_isp_pol(&isp[0], f1, nc);
181 * Scale F1(z) by (1+isp[m-1]) and F2(z) by (1-isp[m-1])
186 /* f1[i] *= (1.0 + isp[M-1]); */
189 t0 = f1[i];
193 f1[i] += t0;
199 * A(z) = (F1(z)+F2(z))/
    [all...]
  /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/sources/cxx-stl/gabi++/tests/
catch_class_02.cpp 37 void f1() function
53 f1();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostreams.base/ios.base/ios.base.locales/
imbue.pass.cpp 37 void f1(std::ios_base::event ev, std::ios_base& stream, int index) function
80 b.register_callback(f1, 4);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.async/
async.pass.cpp 35 int& f1() function
100 std::future<int&> f = std::async(f1);
108 std::future<int&> f = std::async(std::launch::async, f1);
116 std::future<int&> f = std::async(std::launch::any, f1);
124 std::future<int&> f = std::async(std::launch::deferred, f1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.assign/
move.pass.cpp 52 void f1() function
60 std::set_terminate(f1);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_class_02.cpp 37 void f1() function
53 f1();
inherited_exception.cpp 24 void f1() { function
52 f1();
70 f1();
88 f1();
  /ndk/sources/host-tools/toolbox/
cmp_win.c 57 FILE *f1 = _tfopen(argv[1], L"rb"); local
58 if (!f1) {
65 fclose(f1);
72 n1 = fread(buf1, 1, BUFSIZE, f1);
76 fclose(f1);
  /ndk/tests/device/math/jni/
math.c 23 float f, f1, fn; variable
41 sincosf(0.71f, &f, &f1);
47 TEST_EQ(f1, 0.7583619f);
math.cpp 23 float f, f1, fn; variable
41 sincosf(0.71f, &f, &f1);
47 TEST_EQ(f1, 0.7583619f);
  /cts/tools/vm-tests-tf/src/dot/junit/format/f1/
Test_f1.java 17 package dot.junit.format.f1;
30 Class.forName("dot.junit.format.f1.d.T_f1_1");
43 Class.forName("dot.junit.format.f1.d.T_f1_2");
56 Class.forName("dot.junit.format.f1.d.T_f1_3");
69 Class.forName("dot.junit.format.f1.d.T_f1_4");
82 Class.forName("dot.junit.format.f1.d.T_f1_5");
95 Class.forName("dot.junit.format.f1.d.T_f1_6");
108 Class.forName("dot.junit.format.f1.d.T_f1_7");
121 Class.forName("dot.junit.format.f1.d.T_f1_8");
134 Class.forName("dot.junit.format.f1.d.T_f1_9")
    [all...]
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
Blort.java 21 float f1 = 0.0f; local
  /external/clang/test/Analysis/
cxx-crashes.cpp 6 int f1(char *dst) { function
stream.c 16 void f1(void) { function
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6-0x.cpp 4 void f1() &&; // expected-error {{non-member function cannot have '&&' qualifier}}
9 void f1() &&;
46 func_type_rvalue f1; member in struct:Y
50 void (X::*mpf2)() && = &X::f1;
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p12.cpp 50 void f1(int i) { // expected-note{{declared here}} function
  /external/clang/test/CXX/temp/temp.spec/
no-body.cpp 44 template<typename T> void f1(T) { } function
51 template void f1<int>(int) { } // expected-error {{explicit template instantiation cannot have a definition; if this definition is meant to be an explicit specialization, add '<>' after the 'template' keyword}} \ function in namespace:args_bad
52 expected-error {{no function template matches function template specialization 'f1'}}
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p1.cpp 33 void f1(T t) { function in struct:X0
59 template<> void X0<void*>::f1(void *) { } function in class:X0
62 xvp.f1(vp);

Completed in 868 milliseconds

<<11121314151617181920>>