HomeSort by relevance Sort by last modified time
    Searched refs:f1 (Results 151 - 175 of 744) sorted by null

1 2 3 4 5 67 8 91011>>

  /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);
  /external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/
p3-0x.cpp 5 int f1();
10 float &k = g(f1());
16 float &k2 = g2(f1());
  /external/clang/test/SemaCXX/
ambig-user-defined-conversions.cpp 48 void f1(A); // expected-note {{candidate function}}
49 void f1(C); // expected-note {{candidate function}}
54 f1(b); // expected-error {{call to 'f1' is ambiguous}}
warn-unused-value.cpp 28 void b(Foo f1, Foo f2) {
29 NOP(f1 == f2); // expected-warning {{expression result unused}}
  /ndk/tests/device/test-stlport_shared-exception/jni/
delete2.cpp 44 void f1 (D*);
49 f1 (::new D);
53 void f1 ( D* p) { ::delete p; } function
  /ndk/tests/device/test-stlport_static-exception/jni/
delete2.cpp 44 void f1 (D*);
49 f1 (::new D);
53 void f1 ( D* p) { ::delete p; } function
  /external/libffi/testsuite/libffi.call/
struct8.c 11 float f1; member in struct:__anon10122
19 ts.f1 += 1;
56 ts8_arg.f1 = 5.55f;
61 printf ("%g\n", ts8_arg.f1);
68 printf ("%g\n", ts8_result->f1);
73 CHECK(ts8_result->f1 == 5.55f + 1);
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p4.cpp 26 template<typename T> void f1(T); // expected-note{{previous}}
29 void f1(T = T()); // expected-error{{cannot be added}}
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1-retmem.cpp 12 value_type *f1();
22 typename X0<U>::value_type *X0<U>::f1() { function in class:X0
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p2.cpp 28 template<typename T> A<T> f1(T);
31 A<X> a0 = f1(get_X());
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p2.cpp 38 void f1(T) {} // expected-note{{explicit instantiation refers here}} function in namespace:N
43 template void f1(int); // expected-warning{{must occur in}}
  /external/clang/test/CodeGen/
alias.c 14 extern void f1(void);
15 extern void f1(void) __attribute((alias("f0")));
16 // CHECKBASIC: @f1 = alias void ()* @f0
arm-arguments.c 11 // APCS-GNU: define i8 @f1()
12 // AAPCS: define arm_aapcscc i8 @f1()
14 struct s1 f1(void) {} function
34 struct s5 { struct { } f0; int f1; }; member in struct:s5
72 union u12 { char f0; short f1; int f2; }; member in union:u12
99 struct s17 { short f0 : 13; char f1 : 4; }; member in struct:s17
104 struct s18 { short f0; char f1 : 4; }; member in struct:s18
110 struct s19 { int f0; struct s8 f1; }; member in struct:s19
116 struct s20 { struct s8 f1; int f0; }; member in struct:s20
121 struct s21 { struct {} f1; int f0 : 4; } member in struct:s21
    [all...]
le32-regparm.c 12 void FASTCALL f1(int i, int j, int k);
13 // CHECK: define void @f1(i32 inreg %i, i32 inreg %j, i32 %k)
14 void f1(int i, int j, int k) { } function
2008-07-31-promotion-of-compound-pointer-arithmetic.c 4 // CHECK: define i32 @f1
20 int f1(int *a) { function
c-strings.c 7 // CHECK: @f1.x = internal global i8* getelementptr inbounds ([6 x i8]* @.str, i32 0, i32 0)
21 // CHECK: define void @f1()
22 void f1() { function
25 // CHECK: [[T1:%.*]] = load i8** @f1.x
cleanup-stack.c 13 int f1(void) { function
  /external/clang/test/Sema/
attr-deprecated-message.c 15 INT1 f1(void) __attribute__ ((deprecated("Please avoid f1"))); // expected-note {{'f1' declared here}}
28 int (*pf)() = f1; // expected-warning {{'f1' is deprecated: Please avoid f1}}
  /external/clang/test/SemaTemplate/
instantiate-decl-init.cpp 44 template<int N> void f1() { function
47 template<> void f1<2>();
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
float-weight.h 159 float f1 = w1.Value(), f2 = w2.Value(); local
160 if (f1 == kPosInfinity)
165 return TropicalWeight(f1 + f2);
171 float f1 = w1.Value(), f2 = w2.Value(); local
174 else if (f1 == kPosInfinity)
177 return TropicalWeight(f1 - f2);
220 float f1 = w1.Value(), f2 = w2.Value(); local
221 if (f1 == 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/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/Regress/
function-001.js 45 eval("function f1 (a){ var a,b; }");
51 "eval(\"function f1 (a){ var a,b; }\"); "+
52 "function f2( a ) { var a, b; }; typeof f1",
54 typeof f1 );
60 "typeof f1.toString()",
62 typeof f1.toString() );
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.threads/thread.thread.class/thread.thread.destr/
dtor.pass.cpp 43 void f1() function
50 std::set_terminate(f1);
  /cts/tools/vm-tests-tf/src/dot/junit/format/
AllTests.java 35 suite.addTestSuite(dot.junit.format.f1.Test_f1.class);
  /external/clang/test/Analysis/
stackaddrleak.c 10 void f1() { function
  /external/clang/test/CXX/expr/
p10-0x.cpp 11 void f1(volatile int *x, volatile S* s) { function

Completed in 973 milliseconds

1 2 3 4 5 67 8 91011>>