HomeSort by relevance Sort by last modified time
    Searched refs:f2 (Results 201 - 225 of 709) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/statements/
switch2.js 104 function f2(i) { function
117 f2(0), 1);
120 f2(1), 1);
123 f2(2), 2);
126 f2(3), 3);
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
SimpleDateFormatTest.java 111 SimpleDateFormat f2 = new SimpleDateFormat(); local
112 assertTrue("Wrong class", f2.getClass() == SimpleDateFormat.class);
113 assertTrue("Wrong default", f2.equals(DateFormat.getDateTimeInstance(
115 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
118 f2.format(new Date()).getClass() == String.class);
126 SimpleDateFormat f2 = new SimpleDateFormat("yyyy"); local
127 assertTrue("Wrong class", f2.getClass() == SimpleDateFormat.class);
128 assertEquals("Wrong pattern", "yyyy", f2.toPattern());
129 assertTrue("Wrong locale", f2.equals(new SimpleDateFormat("yyyy",
131 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals
163 SimpleDateFormat f2 = new SimpleDateFormat("y'y'yy", symbols); local
178 SimpleDateFormat f2 = new SimpleDateFormat("'yyyy' MM yy", local
194 SimpleDateFormat f2 = new SimpleDateFormat("y", new Locale("de", "CH")); local
238 SimpleDateFormat f2 = new SimpleDateFormat("y", new Locale("de", "CH")); local
273 SimpleDateFormat f2 = new SimpleDateFormat(); local
832 SimpleDateFormat f2 = new SimpleDateFormat("GyMdkHmsSEDFwWahKz", local
    [all...]
  /frameworks/native/libs/ui/
Fence.cpp 73 const sp<Fence>& f2) {
79 if (f1->isValid() && f2->isValid()) {
80 result = sync_merge(name.string(), f1->mFenceFd, f2->mFenceFd);
83 } else if (f2->isValid()) {
84 result = sync_merge(name.string(), f2->mFenceFd, f2->mFenceFd);
91 name.string(), f1->mFenceFd, f2->mFenceFd,
  /external/openfst/src/include/fst/
signed-log-weight.h 115 T f2 = w2.Value2().Value(); local
118 else if (f2 == FloatLimits<T>::PosInfinity())
120 else if (f1 == f2) {
122 return SignedLogWeightTpl<T>(w1.Value1(), (f2 - log(2.0F)));
125 } else if (f1 > f2) {
128 w1.Value1(), (f2 - log(1.0F + exp(f2 - f1))));
131 w2.Value1(), (f2 - log(1.0F - exp(f2 - f1))));
136 w2.Value1(), (f1 - log(1.0F + exp(f1 - f2))));
159 T f2 = w2.Value2().Value(); local
175 T f2 = w2.Value2().Value(); local
    [all...]
accumulator.h 116 double f2 = to_log_weight_(v).Value(); local
117 if (f1 > f2)
118 return to_weight_(f2 - LogPosExp(f1 - f2));
120 return to_weight_(f1 - LogPosExp(f2 - f1));
296 double f2 = to_log_weight_(v).Value(); local
297 if (f1 > f2)
298 return to_weight_(f2 - LogPosExp(f1 - f2));
300 return to_weight_(f1 - LogPosExp(f2 - f1))
304 double f2 = to_log_weight_(v).Value(); local
316 << " and f2 = " << f2; local
551 double f2 = to_log_weight_(v).Value(); local
559 double f2 = to_log_weight_(v).Value(); local
571 << " and f2 = " << f2; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
file.c 635 struct file *f2;
664 for (f2 = d->file; f2 != 0; f2 = f2->prev)
665 f2->precious = 1;
669 for (f2 = d->file; f2 != 0; f2 = f2->prev
632 struct file *f2; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
az_isp.c 25 * The ISPs are the roots of the two polynomials F1(z) and F2(z) *
28 * and F2(z) = A(z) - z^-m A(z^-1) *
31 * circle and F2(z) has M/2-1 conjugate roots on the unit circle in *
34 * For a 16th order LP analysis, F1(z) and F2(z) can be written as *
39 * F2(z) = (1 - a[M]) (1 - z^-2) PRODUCT (1 - 2 cos(w_i) z^-1 + z^-2 ) *
70 Word16 f1[NC + 1], f2[NC]; local
73 * find the sum and diff polynomials F1(z) and F2(z) *
75 * F2(z) = [A(z) - z^M A(z^-1)]/(1-z^-2) *
80 * f2[i] = a[i] - a[M-i]; *
85 * f2[i] += f2[i-2];
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 100 template<typename R, typename T> void f2(R (* const&)(T), T); // expected-note{{candidate template ignored: couldn't infer template argument 'R'}}
110 f2(g, 1); // expected-error{{no matching function for call to 'f2'}}
111 f2(&g, 1);
  /external/clang/test/SemaTemplate/
explicit-instantiation.cpp 52 template<typename T, typename U> void f2(T, U*) { } // expected-note{{candidate}} function in struct:X2
53 template<typename T, typename U> void f2(T*, U) { } // expected-note{{candidate}} function in struct:X2
60 template void X2::f2(int *, int *); // expected-error{{ambiguous}}
  /external/v8/test/mjsunit/regress/
regress-2071.js 34 function f2() {
37 return f2;
47 function f2() {
53 return f2();
64 function f2() {
70 return f2();
  /external/valgrind/unittest/
test_utils.h 90 MyThreadArray(F f1, F f2 = NULL, F f3 = NULL, F f4 = NULL, F f5 = NULL) {
92 ar_[1] = f2 ? new MyThread(f2) : NULL;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/ExecutionContexts/
10.1.3-2.js 92 function f2(x,x,x,x) function
94 var ret = eval(f2.arguments.toSource());
98 actual = f2(1,2,3,4);
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 474 public static float max(float f1, float f2) {
475 if (f1 > f2)
477 if (f1 < f2)
478 return f2;
480 if (f1 != f2)
484 && ((Float.floatToIntBits(f1) & Float.floatToIntBits(f2)) & 0x80000000) == 0)
544 public static float min(float f1, float f2) {
545 if (f1 > f2)
546 return f2;
547 if (f1 < f2)
    [all...]
  /external/clang/test/CodeGen/
blocks.c 16 struct s0 f2(struct s0 a0) { function
builtin-attributes.c 16 char* f2(char* a, char* b) { function
functions.c 26 void f2(void) { function
le32-arguments.c 20 // CHECK: define void @f2(%struct.s2* noalias sret %agg.result)
21 s2 f2() { function
le32-regparm.c 17 // CHECK: define void @f2(%struct.foo* inreg %a)
18 void __attribute__((regparm(1))) f2(foo* a) {} function
  /external/clang/test/Sema/
attr-noreturn.c 16 int f2() __attribute__((noreturn(1, 2))); // expected-error {{attribute takes no arguments}}
attr-unused.c 12 int f2() __attribute__((unused(1, 2))); // expected-error {{attribute takes no arguments}}
complex-imag.c 10 void f2() { function
decl-in-prototype.c 9 int f2(enum {AA=7,BB} E) { function
implicit-builtin-decl.c 24 void f2() { function
  /external/clang/test/SemaCXX/
value-dependent-exprs.cpp 43 int f2() {
  /external/skia/include/core/
SkEndian.h 130 #define SK_UINT8_BITFIELD(f0, f1, f2, f3, f4, f5, f6, f7) \
133 SK_OT_BYTE f2 : 1; \
140 #define SK_UINT8_BITFIELD(f0, f1, f2, f3, f4, f5, f6, f7) \
146 SK_OT_BYTE f2 : 1; \

Completed in 1591 milliseconds

1 2 3 4 5 6 7 891011>>