Home
last modified time | relevance | path

Searched refs:f1 (Results 1 – 25 of 866) sorted by relevance

12345678910>>...35

/external/clang/test/Sema/
Dpragma-pack-2.c11 int f1; member
13 extern int a0[offsetof(struct s0, f1) == 4 ? 1 : -1];
18 int f1; member
20 extern int a1[offsetof(struct s1, f1) == 2 ? 1 : -1];
26 int f1; member
31 int f1; member
33 extern int a3_0[offsetof(struct s3_0, f1) == 1 ? 1 : -1];
34 extern int a3_1[offsetof(struct s3_1, f1) == 4 ? 1 : -1];
40 int f1; member
45 int f1; member
[all …]
Dpragma-align-mac68k.c16 int f1; member
19 extern int a1_1[offsetof(struct s1, f1) == 2 ? 1 : -1];
25 double f1; member
28 extern int a2_1[offsetof(struct s2, f1) == 2 ? 1 : -1];
34 v4f_t f1; member
37 extern int a3_1[offsetof(struct s3, f1) == 2 ? 1 : -1];
43 char f1; member
46 extern int a4_1[offsetof(struct s4, f1) == 1 ? 1 : -1];
52 unsigned f1 : 9; member
81 char f1; member
[all …]
/external/v8/test/mjsunit/
Dapply.js32 function f1(a) { function
52 assertEquals(void 0, f1.apply(), "1-1");
54 assertEquals(void 0, f1.apply(this), "5a");
55 assertEquals(void 0, f1.apply(this, new Array(1)), "5b");
56 assertEquals(void 0, f1.apply(this, new Array(2)), "5c");
57 assertEquals(void 0, f1.apply(this, new Array(4242)), "5d");
58 assertEquals(42, f1.apply(this, new Array(42, 43)), "5e");
59 assertEquals("foo", f1.apply(this, new Array("foo", "bar", "baz", "bo")), "5f");
61 assertEquals(void 0, f1.apply(null), "6a");
62 assertEquals(void 0, f1.apply(null, new Array(1)), "6b");
[all …]
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DDeflaterOutputStreamTest.java88 File f1 = new File("hyts_ConstruOD.tst"); in test_ConstructorLjava_io_OutputStreamLjava_util_zip_Deflater() local
89 FileOutputStream fos = new FileOutputStream(f1); in test_ConstructorLjava_io_OutputStreamLjava_util_zip_Deflater()
107 f1.delete(); in test_ConstructorLjava_io_OutputStreamLjava_util_zip_Deflater()
114 File f1 = new File("hyts_ConstruO.tst"); in test_ConstructorLjava_io_OutputStream() local
115 FileOutputStream fos = new FileOutputStream(f1); in test_ConstructorLjava_io_OutputStream()
124 f1.delete(); in test_ConstructorLjava_io_OutputStream()
137 File f1 = new File("hyts_ConstruODI.tst"); in test_ConstructorLjava_io_OutputStreamLjava_util_zip_DeflaterI() local
138 FileOutputStream fos = new FileOutputStream(f1); in test_ConstructorLjava_io_OutputStreamLjava_util_zip_DeflaterI()
171 f1.delete(); in test_ConstructorLjava_io_OutputStreamLjava_util_zip_DeflaterI()
178 File f1 = File.createTempFile("close", ".tst"); in test_close() local
[all …]
/external/llvm/test/Transforms/InstCombine/
Dfast-math.ll31 ; C * f1 + f1 = (C+1) * f1
32 define double @fold3(double %f1) {
33 %t1 = fmul fast double 2.000000e+00, %f1
34 %t2 = fadd fast double %f1, %t1
37 ; CHECK: fmul fast double %f1, 3.000000e+00
41 define float @fold4(float %f1, float %f2) {
42 %sub = fsub float 4.000000e+00, %f1
47 ; CHECK: %1 = fadd fast float %f1, %f2
52 define float @fold5(float %f1, float %f2) {
53 %add = fadd float %f1, 4.000000e+00
[all …]
/external/clang/test/SemaCXX/
Dqualified-id-lookup.cpp30 int& f1();
34 struct f1 { struct
43 int &i1 = f1(); in test_f1()
47 void N::f1::foo(int i) { in foo() argument
48 f1::member = i; in foo()
49 f1::type &ir = i; in foo()
53 float& f1(int x) { in f1() function
54 N::f1::type& i1 = x; in f1()
55 f1::type& i2 = x; in f1()
64 int i1 = N::f1::member;
[all …]
/external/llvm/test/CodeGen/Mips/
Dselect.ll6 define i32 @sel1(i32 %s, i32 %f0, i32 %f1) nounwind readnone {
10 %cond = select i1 %tobool, i32 %f1, i32 %f0
14 define float @sel2(i32 %s, float %f0, float %f1) nounwind readnone {
18 %cond = select i1 %tobool, float %f0, float %f1
22 define double @sel2_1(i32 %s, double %f0, double %f1) nounwind readnone {
26 %cond = select i1 %tobool, double %f0, double %f1
30 define float @sel3(float %f0, float %f1, float %f2, float %f3) nounwind readnone {
35 %cond = select i1 %cmp, float %f0, float %f1
39 define float @sel4(float %f0, float %f1, float %f2, float %f3) nounwind readnone {
44 %cond = select i1 %cmp, float %f0, float %f1
[all …]
/external/clang/test/CodeGen/
Dbitfield-2.c64 signed f1 : 10; member
72 return a0->f1; in f1_load()
75 return (a0->f1 = 1234); in f1_store()
78 return (a0->f1 += 1234); in f1_reload()
87 res ^= g1.f0 ^ g1.f1; in test_1()
89 res ^= g1.f0 ^ g1.f1; in test_1()
141 long long f1 : 32; member
165 res ^= g3.f0 ^ g3.f1; in test_3()
167 res ^= g3.f0 ^ g3.f1; in test_3()
178 unsigned f1 : 28 __attribute__ ((packed)); member
[all …]
Darm-arguments.c14 struct s1 f1(void) {} in f1() function
34 struct s5 { struct { } f0; int f1; }; member
72 union u12 { char f0; short f1; int f2; }; member
99 struct s17 { short f0 : 13; char f1 : 4; }; member
104 struct s18 { short f0; char f1 : 4; }; member
110 struct s19 { int f0; struct s8 f1; }; member
116 struct s20 { struct s8 f1; int f0; }; member
121 struct s21 { struct {} f1; int f0 : 4; }; member
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.funcaddr/
Dp1.cpp12 template<typename T> T f1(T, int);
13 template<typename T> T f1(T);
16 float (*f1a)(float, int) = f1; in test_f1()
17 float (*f1b)(float, int) = &f1; in test_f1()
18 float (*f1c)(float) = f1; in test_f1()
19 float (*f1d)(float) = (f1); in test_f1()
20 float (*f1e)(float) = &f1; in test_f1()
21 float (*f1f)(float) = (&f1); in test_f1()
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dfloat-weight.h159 float f1 = w1.Value(), f2 = w2.Value(); in Times() local
160 if (f1 == kPosInfinity) in Times()
165 return TropicalWeight(f1 + f2); in Times()
171 float f1 = w1.Value(), f2 = w2.Value();
174 else if (f1 == kPosInfinity)
177 return TropicalWeight(f1 - f2);
220 float f1 = w1.Value(), f2 = w2.Value(); in Plus() local
221 if (f1 == kPosInfinity) in Plus()
225 else if (f1 > f2) in Plus()
226 return LogWeight(f2 - LogExp(f1 - f2)); in Plus()
[all …]
/external/v8/test/mjsunit/compiler/
Doptimized-function-calls.js61 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/oprofile/libutil++/tests/
Dglob_filter_tests.cpp28 glob_filter f1("foo,*bar", "foobar"); in main() local
29 check(f1, "foo/barfoobar", true); in main()
30 check(f1, "foo/bar", true); in main()
31 check(f1, "/foo/foobar/foo", false); in main()
32 check(f1, "fooobar1", false); in main()
33 check(f1, "foo1", false); in main()
34 check(f1, "foobar", false); in main()
35 check(f1, "bar1", false); in main()
Dpath_filter_tests.cpp28 path_filter f1("foo,*bar", "foobar"); in main() local
29 check(f1, "foo/barfoobar", true); in main()
30 check(f1, "foo/bar", true); in main()
31 check(f1, "/foo/foobar/foo", false); in main()
32 check(f1, "fooobar1", false); in main()
33 check(f1, "foo1", false); in main()
34 check(f1, "foobar", false); in main()
35 check(f1, "bar1", false); in main()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DFileTest.java164 File f1 = new File("a"); in test_ConstructorLjava_io_FileLjava_lang_String6() local
166 assertEquals("Trailing slash file name is incorrect", f1, f2); in test_ConstructorLjava_io_FileLjava_lang_String6()
342 File f1 = new File("thisFile.file"); in test_compareToLjava_io_File() local
345 assertEquals("Equal files did not answer zero for compareTo", 0, f1 in test_compareToLjava_io_File()
348 .compareTo(f1) < 0); in test_compareToLjava_io_File()
349 assertTrue("f1.compareTo(f3) did not result in value > 0", f1 in test_compareToLjava_io_File()
390 File f1 = new File(dir, "tempfile.tst"); in test_createNewFile() local
391 f1.createNewFile(); in test_createNewFile()
399 File f1 = new File(dir, "tempfile.tst"); in test_createNewFile() local
401 f1.deleteOnExit(); in test_createNewFile()
[all …]
/external/clang/test/SemaTemplate/
Dmember-template-access-expr.cpp8 int &f1(T t) { in f1() function
26 int &ir = f1<X>(xd); in test_f1()
54 int* f1(int);
55 template<typename T> float* f1(T);
62 float *fp1 = x1.f1<>(17); in test_X1()
63 …float *fp2 = x1.f1<int>(3.14); // expected-warning {{implicit conversion from 'double' to 'int' ch… in test_X1()
64 int *ip1 = x1.f1(17); in test_X1()
65 float *ip2 = x1.f1(3.14); in test_X1()
67 float* (X1::*mf1)(int) = &X1::f1; in test_X1()
68 float* (X1::*mf2)(int) = &X1::f1<>; in test_X1()
[all …]
Dmember-function-template.cpp11 template<typename T> T& f1(T);
12 template<typename T, typename U> U& f1(T, U);
15 int &ir1 = f1(i); in g1()
16 int &ir2 = f1(d, i); in g1()
17 int &ir3 = f1(i, i); in g1()
27 int &ir1 = x.f1(i); in test_X_f1()
28 int &ir2 = x.f1(f, i); in test_X_f1()
29 int &ir3 = x.f1(i, i); in test_X_f1()
38 int& (X::*pm1)(int) = &X::f1; in test_X_f1_address()
39 float& (X::*pm2)(float) = &X::f1; in test_X_f1_address()
[all …]
Dfunction-template-specialization.cpp18 template<typename T, int N> void f1(T (&array)[N]); // expected-note{{matches}}
19 template<int N> void f1(int (&array)[N]); // expected-note{{matches}}
21 template<> void f1(float (&array)[1]);
22 template<> void f1(int (&array)[1]);
25 template<typename T> void f1(T (&array)[17]); // expected-note{{matches}}
26 template<> void f1(int (&array)[17]); // expected-error{{ambiguous}}
/external/llvm/test/CodeGen/PowerPC/
Dfsqrt.ll5 ; RUN: grep "fsqrt f1, f1"
7 ; RUN: grep "fsqrt f1, f1"
9 ; RUN: not grep "fsqrt f1, f1"
11 ; RUN: not grep "fsqrt f1, f1"
/external/openfst/src/include/fst/
Daccumulator.h115 double f1 = to_log_weight_(w).Value(); in LogPlus() local
117 if (f1 > f2) in LogPlus()
118 return to_weight_(f2 - LogPosExp(f1 - f2)); in LogPlus()
120 return to_weight_(f1 - LogPosExp(f2 - f1)); in LogPlus()
295 double f1 = to_log_weight_(w).Value(); in LogPlus() local
297 if (f1 > f2) in LogPlus()
298 return to_weight_(f2 - LogPosExp(f1 - f2)); in LogPlus()
300 return to_weight_(f1 - LogPosExp(f2 - f1)); in LogPlus()
303 double LogPlus(double f1, Weight v) { in LogPlus() argument
305 if (f1 == FloatLimits<double>::PosInfinity()) in LogPlus()
[all …]
/external/eigen/unsupported/test/
Dalignedvector3.cpp23 FastType f1(r1), f2(r2), f3(r3), f4(r4), f5(r5), f6(r6); in alignedvector3() local
26 VERIFY_IS_APPROX(f1,r1); in alignedvector3()
29 VERIFY_IS_APPROX(f4+f1,r4+r1); in alignedvector3()
30 VERIFY_IS_APPROX(f4-f1,r4-r1); in alignedvector3()
31 VERIFY_IS_APPROX(f4+f1-f2,r4+r1-r2); in alignedvector3()
34 VERIFY_IS_APPROX(f4-=f5+f1,r4-=r5+r1); in alignedvector3()
35 VERIFY_IS_APPROX(f5+f1-s1*f2,r5+r1-s1*r2); in alignedvector3()
36 VERIFY_IS_APPROX(f5+f1/s2-s1*f2,r5+r1/s2-s1*r2); in alignedvector3()
47 VERIFY_IS_APPROX((f2+f1).normalized(),(r2+r1).normalized()); in alignedvector3()
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
Dp3-0x.cpp26 template<typename T> X<T> f1(const T&&); // expected-note{{candidate function [with T = int] not vi…
30 X<int> xi0 = f1(prvalue<int>()); in test_f1()
31 X<int> xi1 = f1(xvalue<int>()); in test_f1()
32 f1(lvalue<int>()); // expected-error{{no matching function for call to 'f1'}} in test_f1()
33 X<Y> xy0 = f1(prvalue<Y>()); in test_f1()
34 X<Y> xy1 = f1(xvalue<Y>()); in test_f1()
35 f1(lvalue<Y>()); // expected-error{{no matching function for call to 'f1'}} in test_f1()
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DChoiceFormatTest.java35 ChoiceFormat f1 = new ChoiceFormat(limits, formats); field in ChoiceFormatTest
141 ChoiceFormat f = (ChoiceFormat) f1.clone(); in test_applyPatternLjava_lang_String()
198 ChoiceFormat f = (ChoiceFormat) f1.clone(); in test_clone()
199 assertTrue("Not equal", f.equals(f1)); in test_clone()
201 assertTrue("Equal", !f.equals(f1)); in test_clone()
240 assertTrue("Not equal", f1.equals(f2)); in test_equalsLjava_lang_Object()
253 String r = f1.format(-1, buf, field).toString(); in test_formatDLjava_lang_StringBufferLjava_text_FieldPosition()
256 r = f1.format(0, buf, field).toString(); in test_formatDLjava_lang_StringBufferLjava_text_FieldPosition()
259 r = f1.format(1, buf, field).toString(); in test_formatDLjava_lang_StringBufferLjava_text_FieldPosition()
262 r = f1.format(2, buf, field).toString(); in test_formatDLjava_lang_StringBufferLjava_text_FieldPosition()
[all …]
/external/clang/test/CXX/temp/temp.arg/temp.arg.type/
Dp2.cpp24 template <typename T> int f1(T);
25 template <typename T, typename U> int f1(T, U);
35 &f1<__typeof__(e1)>); // expected-warning{{template argument uses unnamed type}} in f()
36 int (*fp1)(int, __typeof__(e2)) = f1; // expected-warning{{template argument uses unnamed type}} in f()
37 f1(e2); // expected-warning{{template argument uses unnamed type}} in f()
38 f1(e2); in f()
/external/dnsmasq/contrib/dnsmasq_MacOSX/
DREADME.rtf2 {\fonttbl\f0\fswiss\fcharset77 Helvetica;\f1\fnil\fcharset77 Monaco;}
8 \f1 /etc/hostconfig
12 \f1 /etc/hostconfig
16 \f1 DNSMASQ=-YES-
22 \f1 sudo mkdir -p /Library/StartupItems/DNSmasq\
26 \f1 DNSmasq
28 \f1 StartupParameters.plist
32 \f1 sudo cp DNSmasq StartupParameters.plist /Library/StartupItems/DNSmasq\
39 \f1 sudo /Library/StartupItems/DNSmasq/DNSmasq start\

12345678910>>...35