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

1 2 3 4 5

  /toolchain/binutils/binutils-2.25/gold/testsuite/
tls_test_file2.cc 30 __thread int o3; variable
tls_test.h 56 extern __thread int o3;
  /external/libcxx/test/std/experimental/optional/optional.relops/
equal.pass.cpp 43 constexpr O o3{1}; // engaged
49 static_assert ( !(o1 == o3), "" );
55 static_assert ( !(o2 == o3), "" );
59 static_assert ( !(o3 == o1), "" );
60 static_assert ( !(o3 == o2), "" );
61 static_assert ( o3 == o3 , "" );
62 static_assert ( !(o3 == o4), "" );
63 static_assert ( o3 == o5 , "" );
67 static_assert ( !(o4 == o3), "" );
    [all...]
greater_equal.pass.cpp 40 constexpr O o3{1}; // engaged
46 static_assert ( !(o1 >= o3), "" );
52 static_assert ( !(o2 >= o3), "" );
56 static_assert ( (o3 >= o1), "" );
57 static_assert ( (o3 >= o2), "" );
58 static_assert ( (o3 >= o3), "" );
59 static_assert ( !(o3 >= o4), "" );
60 static_assert ( (o3 >= o5), "" );
64 static_assert ( (o4 >= o3), "" );
    [all...]
greater_than.pass.cpp 40 constexpr O o3{1}; // engaged
46 static_assert ( !(o1 > o3), "" );
52 static_assert ( !(o2 > o3), "" );
56 static_assert ( (o3 > o1), "" );
57 static_assert ( (o3 > o2), "" );
58 static_assert ( !(o3 > o3), "" );
59 static_assert ( !(o3 > o4), "" );
60 static_assert ( !(o3 > o5), "" );
64 static_assert ( (o4 > o3), "" );
    [all...]
less_equal.pass.cpp 40 constexpr O o3{1}; // engaged
46 static_assert ( (o1 <= o3), "" );
52 static_assert ( (o2 <= o3), "" );
56 static_assert ( !(o3 <= o1), "" );
57 static_assert ( !(o3 <= o2), "" );
58 static_assert ( (o3 <= o3), "" );
59 static_assert ( (o3 <= o4), "" );
60 static_assert ( (o3 <= o5), "" );
64 static_assert ( !(o4 <= o3), "" );
    [all...]
less_than.pass.cpp 40 constexpr O o3{1}; // engaged
46 static_assert ( (o1 < o3), "" );
52 static_assert ( (o2 < o3), "" );
56 static_assert ( !(o3 < o1), "" );
57 static_assert ( !(o3 < o2), "" );
58 static_assert ( !(o3 < o3), "" );
59 static_assert ( (o3 < o4), "" );
60 static_assert ( !(o3 < o5), "" );
64 static_assert ( !(o4 < o3), "" );
    [all...]
not_equal.pass.cpp 43 constexpr O o3{1}; // engaged
49 static_assert ( (o1 != o3), "" );
55 static_assert ( (o2 != o3), "" );
59 static_assert ( (o3 != o1), "" );
60 static_assert ( (o3 != o2), "" );
61 static_assert ( !(o3 != o3), "" );
62 static_assert ( (o3 != o4), "" );
63 static_assert ( !(o3 != o5), "" );
67 static_assert ( (o4 != o3), "" );
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.relops/
equal.pass.cpp 43 constexpr O o3{1}; // engaged
49 static_assert ( !(o1 == o3), "" );
55 static_assert ( !(o2 == o3), "" );
59 static_assert ( !(o3 == o1), "" );
60 static_assert ( !(o3 == o2), "" );
61 static_assert ( o3 == o3 , "" );
62 static_assert ( !(o3 == o4), "" );
63 static_assert ( o3 == o5 , "" );
67 static_assert ( !(o4 == o3), "" );
    [all...]
less_than.pass.cpp 40 constexpr O o3{1}; // engaged
46 static_assert ( o1 < o3 , "" );
52 static_assert ( o2 < o3 , "" );
56 static_assert ( !(o3 < o1), "" );
57 static_assert ( !(o3 < o2), "" );
58 static_assert ( !(o3 < o3), "" );
59 static_assert ( o3 < o4 , "" );
60 static_assert ( !(o3 < o5), "" );
64 static_assert ( !(o4 < o3), "" );
    [all...]
  /external/libcxx/test/std/experimental/optional/optional.comp_with_t/
equal.pass.cpp 43 constexpr O o3{val}; // engaged
47 static_assert ( !(o3 == T(1)), "" );
48 static_assert ( (o3 == T(2)), "" );
49 static_assert ( (o3 == val), "" );
53 static_assert ( !(T(1) == o3), "" );
54 static_assert ( (T(2) == o3), "" );
55 static_assert ( (val == o3), "" );
greater.pass.cpp 44 constexpr O o3{val}; // engaged
48 static_assert ( (o3 > T(1)), "" );
50 static_assert ( !(o3 > val), "" ); // equal
51 static_assert ( !(o3 > T(3)), "" );
55 static_assert ( !(T(1) > o3), "" );
57 static_assert ( !(val > o3), "" ); // equal
58 static_assert ( (T(3) > o3), "" );
greater_equal.pass.cpp 44 constexpr O o3{val}; // engaged
48 static_assert ( (o3 >= T(1)), "" );
50 static_assert ( (o3 >= val), "" ); // equal
51 static_assert ( !(o3 >= T(3)), "" );
55 static_assert ( !(T(1) >= o3), "" );
57 static_assert ( (val >= o3), "" ); // equal
58 static_assert ( (T(3) >= o3), "" );
less_equal.pass.cpp 44 constexpr O o3{val}; // engaged
48 static_assert ( !(o3 <= T(1)), "" );
50 static_assert ( (o3 <= val), "" ); // equal
51 static_assert ( (o3 <= T(3)), "" );
55 static_assert ( (T(1) <= o3), "" );
57 static_assert ( (val <= o3), "" ); // equal
58 static_assert ( !(T(3) <= o3), "" );
less_than.pass.cpp 44 constexpr O o3{val}; // engaged
48 static_assert ( !(o3 < T(1)), "" );
50 static_assert ( !(o3 < val), "" ); // equal
51 static_assert ( (o3 < T(3)), "" );
55 static_assert ( (T(1) < o3), "" );
57 static_assert ( !(val < o3), "" ); // equal
58 static_assert ( !(T(3) < o3), "" );
not_equal.pass.cpp 43 constexpr O o3{val}; // engaged
47 static_assert ( (o3 != T(1)), "" );
48 static_assert ( !(o3 != T(2)), "" );
49 static_assert ( !(o3 != val), "" );
53 static_assert ( (T(1) != o3), "" );
54 static_assert ( !(T(2) != o3), "" );
55 static_assert ( !(val != o3), "" );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.comp_with_t/
equal.pass.cpp 43 constexpr O o3{val}; // engaged
47 static_assert ( !(o3 == T(1)), "" );
48 static_assert ( o3 == T(2) , "" );
49 static_assert ( o3 == val, "" );
53 static_assert ( !(T(1) == o3), "" );
54 static_assert ( T(2) == o3 , "" );
55 static_assert ( val == o3 , "" );
less_than.pass.cpp 44 constexpr O o3{val}; // engaged
48 static_assert ( !(o3 < T(1)), "" );
51 static_assert ( o3 < T(3) , "" );
55 static_assert ( T(1) < o3 , "" );
58 static_assert ( !(T(3) < o3), "" );
  /ndk/sources/cxx-stl/stlport/src/
sparc_atomic.s 17 mov %o1, %o3 ! Set the new value
18 ! swap [%o0], %o3 ! Do the compare and swap
19 cas [%o0], %o2, %o3
20 cmp %o2, %o3 ! Check whether successful
36 add %o2, 0x1, %o3 ! Increment and store current
37 ! swap [%o0], %o3 ! Do the compare and swap
38 cas [%o0], %o2, %o3
39 cmp %o3, %o2 ! Check whether successful
58 sub %o2, 0x1, %o3 ! decrement and store current
59 ! swap [%o0], %o3 ! Do the compare and swa
    [all...]
sparc_atomic64.s 15 mov %o1, %o3 ! Set the new value
16 casx [%o0], %o2, %o3 ! Do the compare and swap
17 cmp %o2, %o3 ! Check whether successful
34 addx %o2, 0x1, %o3 ! Increment and store current
35 casx [%o0], %o2, %o3 ! Do the compare and swap
36 cmp %o3, %o2 ! Check whether successful
54 subx %o2, 0x1, %o3 ! decrement and store current
55 casx [%o0], %o2, %o3 ! Do the compare and swap
56 cmp %o3, %o2 ! Check whether successful
  /external/v8/test/mjsunit/
keyed-named-access.js 10 var o3 = {x: 12, y: 20, z: 100};
32 f(o3);
33 f(o3);
34 f(o3);
36 assertEquals(1200, f(o3));
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sparc/
tlssunbin32.s 32 sethi %tie_hi22(sG6), %o3
33 add %o3, %tie_lo10(sG6), %o3
34 ld [%l4 + %o3], %o2, %tie_ld(sG6)
39 sethi %tie_hi22(bg6), %o3
40 add %o3, %tie_lo10(bg6), %o5
46 sethi %tie_hi22(bl6), %o3
47 add %o3, %tie_lo10(bl6), %o5
53 sethi %tie_hi22(bl8), %o3
54 add %o3, %tie_lo10(bl8), %o
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/
cfr.s 6 rd %cfr, %o3
  /external/v8/test/mjsunit/regress/
regress-crbug-351320.js 11 o3 = o2.y;
15 result += o1.x + o3.foo;
regress-crbug-430846.js 13 var o3 = JSON.parse(json); variable
14 assertTrue(%HaveSameMap(o2, o3));

Completed in 2505 milliseconds

1 2 3 4 5