HomeSort by relevance Sort by last modified time
    Searched refs:f1 (Results 226 - 250 of 948) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/test-stlport_static-exception/jni/
ice990323-2.cpp 11 void f1() function
37 f1();
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
Blort.java 21 float f1 = 0.0f; local
  /external/chromium_org/v8/tools/
v8-rolls.sh 53 git show $1:DEPS | grep -n $DEPS_STRING | cut -d":" -f1
65 cut -d" " -f1
74 h=$(echo $msg | cut -d" " -f1)
78 a1=$(echo $a | cut -d"@" -f1)
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 9 void f1(const Types &...args);
  /external/clang/test/CodeGen/
builtins-nvptx.c 150 void nvvm_math(float f1, float f2, double d1, double d2) {
152 float t1 = __nvvm_fmax_f(f1, f2);
154 float t2 = __nvvm_fmin_f(f1, f2);
156 float t3 = __nvvm_sqrt_rn_f(f1);
  /external/clang/test/CodeGenCXX/
mangle-extern-local.cpp 14 int f1() { function
visibility-inlines-hidden.cpp 8 void __attribute__((visibility("default"))) f1() { } function in struct:X0
19 void __attribute__((visibility("default"))) f1() { } function in struct:X1
41 x0->f1();
51 x1->f1();
  /external/clang/test/Parser/
cxx-stmt.cpp 3 void f1() function
attributes.c 16 void f1(__attribute__(()) int x);
31 void g1(void (*f1)(__attribute__(()) int x));
37 void (*h1)(void (*f1)(__attribute__(()) int x));
  /external/clang/test/Sema/
overloadable.c 23 void test_funcptr(int (*f1)(int, double),
25 float *fp = accept_funcptr(f1);
67 f1_type __attribute__((overloadable)) f1; // expected-error{{'overloadable' function 'f1' must have a prototype}} variable
71 f1();
sentinel-attribute.c 4 void f1(int a, ...) __attribute__ ((sentinel));
  /external/clang/test/SemaTemplate/
anonymous-union.cpp 19 void f1(T1<A> *S) { S->f0(); } // expected-note{{instantiation of member function}} function
canonical-expr-type.cpp 31 void f1(T (&array)[N + M]) { } // expected-note{{previous}}
34 void f1(T (&array)[M + N]) { }
37 void f1(T (&array)[M + N]) { } // expected-error{{redefinition}}
injected-class-name.cpp 29 void f1(const X0&); // expected-note{{here}}
30 void f1(X0&);
31 void f1(const X0<type, U_type2>&); // expected-error{{redecl}}
  /external/icu4c/layout/
AnchorTables.cpp 21 const Format1AnchorTable *f1 = (const Format1AnchorTable *) this; local
23 f1->getAnchor(fontInstance, anchor);
45 const Format1AnchorTable *f1 = (const Format1AnchorTable *) this; local
47 f1->getAnchor(fontInstance, anchor);
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 474 public static float max(float f1, float f2) {
475 if (f1 > f2)
476 return f1;
477 if (f1 < f2)
480 if (f1 != f2)
483 if (f1 == 0.0f
484 && ((Float.floatToIntBits(f1) & Float.floatToIntBits(f2)) & 0x80000000) == 0)
486 return f1;
544 public static float min(float f1, float f2) {
545 if (f1 > f2
    [all...]
  /external/chromium_org/v8/test/mjsunit/
elide-double-hole-check-4.js 30 function f1(a, i) { function
34 assertEquals(0.5, f1(arr, 0));
35 assertEquals(0.5, f1(arr, 0));
36 %OptimizeFunctionOnNextCall(f1);
37 assertEquals(0.5, f1(arr, 0));
39 assertEquals(2, f1(arr, 1));
elide-double-hole-check-6.js 30 function f1(a, i) { function
34 assertEquals(0.5, f1(arr, 0));
35 assertEquals(0.5, f1(arr, 0));
36 %OptimizeFunctionOnNextCall(f1);
37 assertEquals(0.5, f1(arr, 0));
39 assertEquals(2, f1(arr, 1));
elide-double-hole-check-8.js 30 function f1(a, i) { function
34 assertEquals(0.5, f1(arr, 0));
35 assertEquals(0.5, f1(arr, 0));
36 %OptimizeFunctionOnNextCall(f1);
37 assertEquals(0.5, f1(arr, 0));
40 assertEquals(2, f1(arr, 1));
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
partial-ordering.cpp 46 int &f1(T1, T2, Rest...);
49 float &f1(T1, T2, ...);
52 int &ir1 = f1(1, 2.0, 'a');
  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 21 friend void f1(X3) { function in struct:X3
38 template<typename U> void f1();
42 template<typename T> template<typename U = int> void X2<T>::f1() { } // expected-error{{cannot add a default template argument to the definition of a member of a class template}} function in class:PR8748::X2
  /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);
  /external/clang/test/SemaCXX/
trailing-return-0x.cpp 75 auto f1(T t) -> decltype(f1(t)) {} // expected-note{{candidate template ignored}} function in namespace:PR12053
78 f1(0); // expected-error{{no matching function for call to 'f1'}}
warn-func-as-bool.cpp 3 void f1();
21 b = f1; // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
23 if (f1) {} // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
warn-unused-parameters.cpp 5 T f1(T x);
13 template<typename T> T X<T>::f1(T) { return T(); } function in class:X
21 x.f1(i);

Completed in 724 milliseconds

1 2 3 4 5 6 7 8 91011>>