HomeSort by relevance Sort by last modified time
    Searched refs:f2 (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /system/extras/tests/bionic/libc/bionic/
test_relocs.c 13 int f1, f2, expect1 = 1, expect2 = 2; local
16 f2 = func2();
19 printf( "func2() returns %d: %s\n", f2, (f2 == expect2) ? "OK" : "FAIL" );
21 if (f1 != expect1 || f2 != expect2)
  /cts/tools/dx-tests/src/dxc/junit/opcodes/ret/jm/
T_ret_4.java 21 private void f2() { method in class:T_ret_4
25 f2(); method
T_ret_4_w.java 21 private void f2() { method in class:T_ret_4_w
25 f2(); method
  /external/bluetooth/glib/gio/tests/
filter-streams.c 20 GInputStream *base, *f1, *f2; local
25 f2 = g_buffered_input_stream_new (base);
30 g_assert (g_filter_input_stream_get_base_stream (G_FILTER_INPUT_STREAM (f2)) == base);
34 g_assert (!g_input_stream_is_closed (f2));
39 g_assert (!g_input_stream_is_closed (f2));
41 g_object_unref (f2);
51 GOutputStream *base, *f1, *f2; local
55 f2 = g_buffered_output_stream_new (base);
60 g_assert (g_filter_output_stream_get_base_stream (G_FILTER_OUTPUT_STREAM (f2)) == base);
64 g_assert (!g_output_stream_is_closed (f2));
102 GInputStream *base, *f1, *f2; local
174 GOutputStream *base, *f1, *f2; local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-001.js 47 function f2( a ) { var a, b; }; function
52 "function f2( a ) { var a, b; }; typeof f1",
66 "typeof f2",
68 typeof f2 );
74 "typeof f2.toString()",
76 typeof f2.toString() );
  /dalvik/dx/tests/044-dex-math-ops/
Blort.java 56 public void blort(float f1, float f2) {
58 f = f1 + f2;
59 f = f1 - f2;
60 f = f1 * f2;
61 f = f1 / f2;
62 f = f1 % f2;
  /external/libffi/testsuite/libffi.call/
struct7.c 12 float f2; member in struct:__anon3296
19 ts.f2 += 1;
55 ts7_arg.f2 = 55.5f;
59 printf ("%g\n", ts7_arg.f2);
65 printf ("%g\n", ts7_result->f2);
69 CHECK(ts7_result->f2 == 55.5f + 1);
struct8.c 12 float f2; member in struct:__anon3297
20 ts.f2 += 1;
57 ts8_arg.f2 = 55.5f;
62 printf ("%g\n", ts8_arg.f2);
69 printf ("%g\n", ts8_result->f2);
74 CHECK(ts8_result->f2 == 55.5f + 1);
many.c 13 float f2,
28 (double) f1, (double) f2, (double) f3, (double) f4, (double) f5,
33 return ((f1/f2+f3/f4+f5/f6+f7/f8+f9/f10+f11/f12) * f13);
  /external/opencore/codecs_v2/audio/gsm_amr/amr_wb/dec/src/
isp_az.cpp 142 int32 f1[NC16k + 1], f2[NC16k]; local
159 Get_isp_pol_16kHz(&isp[1], f2, nc - 1);
162 f2[i] = shl_int32(f2[i], 2);
168 Get_isp_pol(&isp[1], f2, nc - 1);
172 * Multiply F2(z) by (1 - z^-2)
177 f2[i] -= f2[i - 2]; /* f2[i] -= f2[i-2]; *
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
isp_az.cpp 142 int32 f1[NC16k + 1], f2[NC16k]; local
159 Get_isp_pol_16kHz(&isp[1], f2, nc - 1);
162 f2[i] = shl_int32(f2[i], 2);
168 Get_isp_pol(&isp[1], f2, nc - 1);
172 * Multiply F2(z) by (1 - z^-2)
177 f2[i] -= f2[i - 2]; /* f2[i] -= f2[i-2]; *
    [all...]
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
DateFormatTest.java 228 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getDateInstance(); local
229 assertTrue("Wrong class", f2.getClass() == SimpleDateFormat.class);
230 assertTrue("Wrong default", f2.equals(DateFormat.getDateInstance(
232 assertTrue("Wrong symbols", f2.getDateFormatSymbols().equals(
235 f2.format(new Date()).getClass() == String.class);
251 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
253 assertTrue("Wrong class1", f2.getClass() == SimpleDateFormat.class);
254 assertTrue("Wrong default1", f2.equals(DateFormat.getDateInstance(
256 assertTrue("Wrong symbols1", f2.getDateFormatSymbols().equals(
259 f2.format(new Date()).getClass() == String.class)
307 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getDateInstance( local
358 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
370 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
425 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
490 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getInstance(); local
526 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getTimeInstance(); local
546 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat local
602 SimpleDateFormat f2 = (SimpleDateFormat) DateFormat.getTimeInstance( local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/
Math.java 521 * @param f2
523 * @return the larger of {@code f1} and {@code f2}.
525 public static float max(float f1, float f2) {
526 if (f1 > f2) {
529 if (f1 < f2) {
530 return f2;
533 if (f1 != f2) {
539 return f2;
623 * @param f2
625 * @return the smaller of {@code f1} and {@code f2}
    [all...]
StrictMath.java 517 * @param f2
519 * @return the larger of {@code f1} and {@code f2}.
521 public static float max(float f1, float f2) {
522 if (f1 > f2)
524 if (f1 < f2)
525 return f2;
527 if (f1 != f2)
531 && ((Float.floatToIntBits(f1) & Float.floatToIntBits(f2)) & 0x80000000) == 0)
611 * @param f2
613 * @return the smaller of {@code f1} and {@code f2}
    [all...]
  /external/bluetooth/glib/tests/
bit-test.c 97 #define TEST(f1, f2, i) \
98 if (f1 (i) != f2 (i)) { \
100 G_STRINGIFY (f2) " (%lu) = %d; ", \
102 i, f2 (i)); \
105 #define TEST2(f1, f2, i, n) \
106 if (f1 (i, n) != f2 (i, n)) { \
108 G_STRINGIFY (f2) " (%lu, %d) = %d; ", \
110 i, n, f2 (i, n)); \
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 159 float f1 = w1.Value(), f2 = w2.Value(); local
162 else if (f2 == kPosInfinity)
165 return TropicalWeight(f1 + f2);
171 float f1 = w1.Value(), f2 = w2.Value(); local
172 if (f2 == kPosInfinity)
177 return TropicalWeight(f1 - f2);
220 float f1 = w1.Value(), f2 = w2.Value(); local
223 else if (f2 == kPosInfinity)
225 else if (f1 > f2)
226 return LogWeight(f2 - LogExp(f1 - f2))
232 float f1 = w1.Value(), f2 = w2.Value(); local
244 float f1 = w1.Value(), f2 = w2.Value(); local
    [all...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/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) +
96 F2(z))/2.
160 This function finds the polynomial F1(z) or F2(z) from the LSPs. If the LSP
162 address 1, F2(z) is computed.
168 F2(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]
518 Word32 f2[6]; local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-85880.js 50 function f2() function
52 return f2.arguments;
55 actual = (f2() == null);
60 actual = (f2(0) == null);
84 f2();
regress-137181.js 68 function f2(x) function
75 actual = f2(0); // (bug: Rhino was returning -1)
  /frameworks/base/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) +
96 F2(z))/2.
160 This function finds the polynomial F1(z) or F2(z) from the LSPs. If the LSP
162 address 1, F2(z) is computed.
168 F2(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]
518 Word32 f2[6]; local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/function/
definition-1.js 42 function f2() { f3 = function() { return "passed!" }; return f3(); } function
50 'function f2() { f3 = function { return "passed!" }; return f3() }; f2()',
52 f2() );
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-185165.js 58 var f2; variable
59 eval("f2=" + s1);
60 var s2 = f2.toString();
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/
regress-154693.js 60 var f2 = f();
63 actual = (f1 != f2);
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
Blort.java 22 float f2 = 0.0f; local
  /external/webkit/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);

Completed in 299 milliseconds

1 2 3 4 5 6 7