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

1 2 3 4 5 6 7 8 91011

  /toolchain/binutils/binutils-2.25/opcodes/
ia64-opc-f.c 26 #define f2 IA64_TYPE_F, 2 macro
89 {"frcpa.s0", f2, OpXbQSf (0, 1, 0, 0), {F1, P2, F2, F3}, EMPTY},
90 {"frcpa", f2, OpXbQSf (0, 1, 0, 0), {F1, P2, F2, F3}, PSEUDO, 0, NULL},
91 {"frcpa.s1", f2, OpXbQSf (0, 1, 0, 1), {F1, P2, F2, F3}, EMPTY},
92 {"frcpa.s2", f2, OpXbQSf (0, 1, 0, 2), {F1, P2, F2, F3}, EMPTY},
93 {"frcpa.s3", f2, OpXbQSf (0, 1, 0, 3), {F1, P2, F2, F3}, EMPTY}
621 #undef f2 macro
    [all...]
  /external/clang/test/Lexer/
11-27-2007-FloatLiterals.c 11 float F2 = 01e-19f;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
eval_if.hpp 29 , typename BOOST_MPL_AUX_NA_PARAM(F2)
37 typedef typename if_<C,F1,F2>::type f_;
40 : if_<C,F1,F2>::type
43 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,eval_if,(C,F1,F2))
51 , typename F2
59 typedef typename if_c<C,F1,F2>::type f_;
62 : if_c<C,F1,F2>::type
  /external/clang/test/SemaCXX/
derived-to-base-ambig.cpp 18 class F2 : public E2, public A2 { }; // expected-warning{{direct base 'A2' is inaccessible due to ambiguity:\n class F2 -> class E2 -> class D2 -> class B2 -> class A2\n class F2 -> class A2}}
20 void g(E2* e2, F2* f2) {
23 o2 = f2; // expected-error{{ambiguous conversion from derived class 'F2' to base class 'Object2':}} expected-error{{assigning to 'Object2 *' from incompatible type 'F2 *'}}
31 void overload_call(F2* f2) {
    [all...]
  /external/libcxx/test/std/utilities/function.objects/arithmetic.operations/
divides.pass.cpp 27 typedef std::divides<> F2;
28 const F2 f2 = F2(); local
29 assert(f2(36, 4) == 9);
30 assert(f2(36.0, 4) == 9);
31 assert(f2(18, 4.0) == 4.5); // exact in binary
minus.pass.cpp 27 typedef std::minus<> F2;
28 const F2 f2 = F2(); local
29 assert(f2(3,2) == 1);
30 assert(f2(3.0, 2) == 1);
31 assert(f2(3, 2.5) == 0.5);
multiplies.pass.cpp 27 typedef std::multiplies<> F2;
28 const F2 f2 = F2(); local
29 assert(f2(3,2) == 6);
30 assert(f2(3.0, 2) == 6);
31 assert(f2(3, 2.5) == 7.5); // exact in binary
negate.pass.cpp 26 typedef std::negate<> F2;
27 const F2 f2 = F2(); local
28 assert(f2(36) == -36);
29 assert(f2(36L) == -36);
30 assert(f2(36.0) == -36);
plus.pass.cpp 27 typedef std::plus<> F2;
28 const F2 f2 = F2(); local
29 assert(f2(3,2) == 5);
30 assert(f2(3.0, 2) == 5);
31 assert(f2(3, 2.5) == 5.5);
  /external/libcxx/test/std/utilities/function.objects/logical.operations/
logical_not.pass.cpp 27 typedef std::logical_not<> F2;
28 const F2 f2 = F2(); local
29 assert(!f2(36));
30 assert( f2(0));
31 assert(!f2(36L));
32 assert( f2(0L));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/arithmetic.operations/
divides.pass.cpp 25 typedef std::divides<> F2;
26 const F2 f2 = F2(); local
27 assert(f2(36, 4) == 9);
28 assert(f2(36.0, 4) == 9);
29 assert(f2(18, 4.0) == 4.5); // exact in binary
minus.pass.cpp 25 typedef std::minus<> F2;
26 const F2 f2 = F2(); local
27 assert(f2(3,2) == 1);
28 assert(f2(3.0, 2) == 1);
29 assert(f2(3, 2.5) == 0.5);
modulus.pass.cpp 25 typedef std::modulus<> F2;
26 const F2 f2 = F2(); local
27 assert(f2(36, 8) == 4);
28 assert(f2(36L, 8) == 4);
29 assert(f2(36, 8L) == 4);
multiplies.pass.cpp 25 typedef std::multiplies<> F2;
26 const F2 f2 = F2(); local
27 assert(f2(3,2) == 6);
28 assert(f2(3.0, 2) == 6);
29 assert(f2(3, 2.5) == 7.5); // exact in binary
negate.pass.cpp 25 typedef std::negate<> F2;
26 const F2 f2 = F2(); local
27 assert(f2(36) == -36);
28 assert(f2(36L) == -36);
29 assert(f2(36.0) == -36);
plus.pass.cpp 25 typedef std::plus<> F2;
26 const F2 f2 = F2(); local
27 assert(f2(3,2) == 5);
28 assert(f2(3.0, 2) == 5);
29 assert(f2(3, 2.5) == 5.5);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/comparisons/
equal_to.pass.cpp 26 typedef std::equal_to<> F2;
27 const F2 f2 = F2(); local
28 assert(f2(36, 36));
29 assert(!f2(36, 6));
30 assert(f2(36, 36.0));
31 assert(f2(36.0, 36L));
greater.pass.cpp 27 typedef std::greater<> F2;
28 const F2 f2 = F2(); local
29 assert(!f2(36, 36));
30 assert(f2(36, 6));
31 assert(!f2(6, 36));
32 assert( f2(36, 6.0));
33 assert( f2(36.0, 6));
34 assert(!f2(6, 36.0))
    [all...]
greater_equal.pass.cpp 27 typedef std::greater_equal<> F2;
28 const F2 f2 = F2(); local
29 assert(f2(36, 36));
30 assert(f2(36, 6));
31 assert(!f2(6, 36));
32 assert( f2(36, 6.0));
33 assert( f2(36.0, 6));
34 assert(!f2(6, 36.0))
    [all...]
less.pass.cpp 27 typedef std::less<> F2;
28 const F2 f2 = F2(); local
29 assert(!f2(36, 36));
30 assert(!f2(36, 6));
31 assert( f2(6, 36));
32 assert(!f2(36, 6.0));
33 assert(!f2(36.0, 6));
34 assert( f2(6, 36.0))
    [all...]
less_equal.pass.cpp 27 typedef std::less_equal<> F2;
28 const F2 f2 = F2(); local
29 assert( f2(36, 36));
30 assert(!f2(36, 6));
31 assert( f2(6, 36));
32 assert(!f2(36, 6.0));
33 assert(!f2(36.0, 6));
34 assert( f2(6, 36.0))
    [all...]
not_equal_to.pass.cpp 26 typedef std::not_equal_to<> F2;
27 const F2 f2 = F2(); local
28 assert(!f2(36, 36));
29 assert( f2(36, 6));
30 assert( f2(36, 6.0));
31 assert( f2(36.0, 6));
32 assert(!f2(36.0, 36));
33 assert(!f2(36, 36.0))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/logical.operations/
logical_not.pass.cpp 26 typedef std::logical_not<> F2;
27 const F2 f2 = F2(); local
28 assert(!f2(36));
29 assert( f2(0));
30 assert(!f2(36L));
31 assert( f2(0L));
  /external/clang/test/CodeGen/
2002-05-23-TypeNameCollision.c 11 struct foo *F2;
  /external/compiler-rt/test/asan/TestCases/Posix/
coverage-direct-large.cc 29 #define F2(Q, x) \
33 F2(Q, x##0) F2(Q, x##1) F2(Q, x##2) F2(Q, x##3) F2(Q, x##4) F2(Q, x##5) \
34 F2(Q, x##6) F2(Q, x##7) F2(Q, x##8) F2(Q, x##9
    [all...]

Completed in 189 milliseconds

1 2 3 4 5 6 7 8 91011