Home
last modified time | relevance | path

Searched refs:o3 (Results 1 – 25 of 203) sorted by relevance

123456789

/external/libcxx/test/std/utilities/optional/optional.relops/
Dequal.pass.cpp38 constexpr O o3{1}; // engaged in main() local
44 static_assert(!(o1 == o3), ""); in main()
50 static_assert(!(o2 == o3), ""); in main()
54 static_assert(!(o3 == o1), ""); in main()
55 static_assert(!(o3 == o2), ""); in main()
56 static_assert(o3 == o3, ""); in main()
57 static_assert(!(o3 == o4), ""); in main()
58 static_assert(o3 == o5, ""); in main()
62 static_assert(!(o4 == o3), ""); in main()
68 static_assert(o5 == o3, ""); in main()
Dgreater_equal.pass.cpp35 constexpr O o3{1}; // engaged in main() local
41 static_assert(!(o1 >= o3), ""); in main()
47 static_assert(!(o2 >= o3), ""); in main()
51 static_assert((o3 >= o1), ""); in main()
52 static_assert((o3 >= o2), ""); in main()
53 static_assert((o3 >= o3), ""); in main()
54 static_assert(!(o3 >= o4), ""); in main()
55 static_assert((o3 >= o5), ""); in main()
59 static_assert((o4 >= o3), ""); in main()
65 static_assert((o5 >= o3), ""); in main()
Dless_than.pass.cpp33 constexpr O o3{1}; // engaged in main() local
39 static_assert((o1 < o3), ""); in main()
45 static_assert((o2 < o3), ""); in main()
49 static_assert(!(o3 < o1), ""); in main()
50 static_assert(!(o3 < o2), ""); in main()
51 static_assert(!(o3 < o3), ""); in main()
52 static_assert((o3 < o4), ""); in main()
53 static_assert(!(o3 < o5), ""); in main()
57 static_assert(!(o4 < o3), ""); in main()
63 static_assert(!(o5 < o3), ""); in main()
Dless_equal.pass.cpp35 constexpr O o3{1}; // engaged in main() local
41 static_assert((o1 <= o3), ""); in main()
47 static_assert((o2 <= o3), ""); in main()
51 static_assert(!(o3 <= o1), ""); in main()
52 static_assert(!(o3 <= o2), ""); in main()
53 static_assert((o3 <= o3), ""); in main()
54 static_assert((o3 <= o4), ""); in main()
55 static_assert((o3 <= o5), ""); in main()
59 static_assert(!(o4 <= o3), ""); in main()
65 static_assert((o5 <= o3), ""); in main()
Dgreater_than.pass.cpp33 constexpr O o3{1}; // engaged in main() local
39 static_assert(!(o1 > o3), ""); in main()
45 static_assert(!(o2 > o3), ""); in main()
49 static_assert((o3 > o1), ""); in main()
50 static_assert((o3 > o2), ""); in main()
51 static_assert(!(o3 > o3), ""); in main()
52 static_assert(!(o3 > o4), ""); in main()
53 static_assert(!(o3 > o5), ""); in main()
57 static_assert((o4 > o3), ""); in main()
63 static_assert(!(o5 > o3), ""); in main()
Dnot_equal.pass.cpp38 constexpr O o3{1}; // engaged in main() local
44 static_assert((o1 != o3), ""); in main()
50 static_assert((o2 != o3), ""); in main()
54 static_assert((o3 != o1), ""); in main()
55 static_assert((o3 != o2), ""); in main()
56 static_assert(!(o3 != o3), ""); in main()
57 static_assert((o3 != o4), ""); in main()
58 static_assert(!(o3 != o5), ""); in main()
62 static_assert((o4 != o3), ""); in main()
68 static_assert(!(o5 != o3), ""); in main()
/external/libcxx/test/std/utilities/optional/optional.comp_with_t/
Dnot_equal.pass.cpp38 constexpr O o3{val}; // engaged in main() local
42 static_assert((o3 != T(1)), ""); in main()
43 static_assert(!(o3 != T(2)), ""); in main()
44 static_assert(!(o3 != val), ""); in main()
48 static_assert((T(1) != o3), ""); in main()
49 static_assert(!(T(2) != o3), ""); in main()
50 static_assert(!(val != o3), ""); in main()
Dequal.pass.cpp38 constexpr O o3{val}; // engaged in main() local
42 static_assert(!(o3 == T(1)), ""); in main()
43 static_assert((o3 == T(2)), ""); in main()
44 static_assert((o3 == val), ""); in main()
48 static_assert(!(T(1) == o3), ""); in main()
49 static_assert((T(2) == o3), ""); in main()
50 static_assert((val == o3), ""); in main()
Dgreater_equal.pass.cpp38 constexpr O o3{val}; // engaged in main() local
42 static_assert((o3 >= T(1)), ""); in main()
44 static_assert((o3 >= val), ""); // equal in main()
45 static_assert(!(o3 >= T(3)), ""); in main()
49 static_assert(!(T(1) >= o3), ""); in main()
51 static_assert((val >= o3), ""); // equal in main()
52 static_assert((T(3) >= o3), ""); in main()
Dgreater.pass.cpp36 constexpr O o3{val}; // engaged in main() local
40 static_assert((o3 > T(1)), ""); in main()
42 static_assert(!(o3 > val), ""); // equal in main()
43 static_assert(!(o3 > T(3)), ""); in main()
47 static_assert(!(T(1) > o3), ""); in main()
49 static_assert(!(val > o3), ""); // equal in main()
50 static_assert((T(3) > o3), ""); in main()
Dless_equal.pass.cpp38 constexpr O o3{val}; // engaged in main() local
42 static_assert(!(o3 <= T(1)), ""); in main()
44 static_assert((o3 <= val), ""); // equal in main()
45 static_assert((o3 <= T(3)), ""); in main()
49 static_assert((T(1) <= o3), ""); in main()
51 static_assert((val <= o3), ""); // equal in main()
52 static_assert(!(T(3) <= o3), ""); in main()
Dless_than.pass.cpp36 constexpr O o3{val}; // engaged in main() local
40 static_assert(!(o3 < T(1)), ""); in main()
42 static_assert(!(o3 < val), ""); // equal in main()
43 static_assert((o3 < T(3)), ""); in main()
47 static_assert((T(1) < o3), ""); in main()
49 static_assert(!(val < o3), ""); // equal in main()
50 static_assert(!(T(3) < o3), ""); in main()
/external/llvm/test/MC/Sparc/
Dsparc-coproc.s5 ! CHECK: ld [%i1+%o3], %c4 ! encoding: [0xc9,0x86,0x40,0x0b]
10 ld [%i1 +%o3], %c4
18 ! CHECK: ldd [%i7+%o3], %c4 ! encoding: [0xc9,0x9f,0xc0,0x0b]
23 ldd [%i7+%o3], %c4
66 ! CHECK: std %cq, [%o3] ! encoding: [0xc1,0xb2,0xc0,0x00]
67 ! CHECK: std %cq, [%o3+-93] ! encoding: [0xc1,0xb2,0xff,0xa3]
68 ! CHECK: std %cq, [%o3+%l5] ! encoding: [0xc1,0xb2,0xc0,0x15]
69 std %cq, [%o3]
70 std %cq, [%o3-93]
71 std %cq, [%o3+%l5]
/external/ltp/runtest/
Dltp-aio-stress.part230 ADS2002 aio-stress -I500 -o3 -S -r8 -t2 $TMPDIR/junkfile $TMPDIR/file2
31 ADS2003 aio-stress -I500 -o3 -S -r16 -t2 $TMPDIR/junkfile $TMPDIR/file2
32 ADS2004 aio-stress -I500 -o3 -S -r32 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file3 $TMPDIR/fi…
33 ADS2005 aio-stress -I500 -o3 -S -r64 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file3 $TMPDIR/fi…
35 ADS2007 aio-stress -I500 -o3 -O -r8 -t2 $TMPDIR/junkfile $TMPDIR/file2
36 ADS2008 aio-stress -I500 -o3 -O -r16 -t2 $TMPDIR/junkfile $TMPDIR/file2
37 ADS2009 aio-stress -I500 -o3 -O -r32 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file3 $TMPDIR/fi…
38 ADS2010 aio-stress -I500 -o3 -O -r64 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file3 $TMPDIR/fi…
Dltp-aio-stress.part134 ADS1005 aio-stress -I500 -o3 -S -r4 $TMPDIR/junkfile $TMPDIR/file2
35 ADS1006 aio-stress -I500 -o3 -S -r8 -t2 $TMPDIR/junkfile $TMPDIR/file2
36 ADS1007 aio-stress -I500 -o3 -S -r16 -t2 $TMPDIR/junkfile $TMPDIR/file2
37 ADS1008 aio-stress -I500 -o3 -S -r32 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file3 $TMPDIR/…
38 ADS1009 aio-stress -I500 -o3 -S -r64 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file3 $TMPDIR/…
39 ADS1010 aio-stress -I500 -o3 -S -r128 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file3 $TMPDIR/…
40 ADS1011 aio-stress -I500 -o3 -S -r256 -t8 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file3 $TMPDIR/…
41 ADS1012 aio-stress -I500 -o3 -S -r512 -t8 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file3 $TMPDIR/f…
47 ADS1018 aio-stress -I500 -o3 -O -r4 -t2 $TMPDIR/junkfile $TMPDIR/file2
48 ADS1019 aio-stress -I500 -o3 -O -r8 -t2 $TMPDIR/junkfile $TMPDIR/file2
[all …]
/external/llvm/test/CodeGen/SPARC/
D64spill.ll13 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
24 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
35 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
47 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
58 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
69 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
80 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
91 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
102 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
113 …,~{g7},~{l0},~{l1},~{l2},~{l3},~{l4},~{l5},~{l6},~{l7},~{o0},~{o1},~{o2},~{o3},~{o4},~{o5},~{o6}"(…
Datomics.ll73 ; CHECK: mov 3, %o3
74 ; CHECK: andn %o3, %o1, %o1
76 ; CHECK: mov 255, %o3
77 ; CHECK: sll %o3, %o1, %o5
78 ; CHECK: xor %o5, -1, %o3
96 ; CHECK: and %g3, %o3, %g4
116 ; CHECK: sethi 63, %o3
117 ; CHECK: or %o3, 1023, %o4
119 ; CHECK: xor %o5, -1, %o3
137 ; CHECK: and %g3, %o3, %g4
D32abi.ll96 ; SOFT-NEXT: mov %g2, %o3
104 ; SOFT-NEXT: mov %i1, %o3
112 ; SOFT-NEXT: mov %i1, %o3
120 ; SOFT-NEXT: mov %i1, %o3
129 ; SOFT-NEXT: mov %i1, %o3
159 ; HARD-NEXT: mov %o0, %o3
171 ; SOFT-NEXT: mov %i1, %o3
246 ; CHECK-NEXT: mov %i1, %o3
/external/swiftshader/third_party/LLVM/test/CodeGen/Generic/
Dnegintconst.ll12 ; setuw 4294967295, %o3 ! THE BUG: 0x00000000ffffffff
17 ; mulx %o1, %o3, %o1 ! ERROR: 0xffffffff; should be -1
19 ; mulx %o1, 12, %o3 !
20 ; add %o2, %o3, %o3 ! produces bad address!
/external/llvm/test/CodeGen/Generic/
Dnegintconst.ll12 ; setuw 4294967295, %o3 ! THE BUG: 0x00000000ffffffff
17 ; mulx %o1, %o3, %o1 ! ERROR: 0xffffffff; should be -1
19 ; mulx %o1, 12, %o3 !
20 ; add %o2, %o3, %o3 ! produces bad address!
/external/llvm/test/Transforms/ConstantHoisting/AArch64/
Dconst-addr.ll11 ; CHECK: %o3 = getelementptr %T, %T* %1, i32 0, i32 3
18 %o3 = getelementptr %T, %T* %at, i32 0, i32 3
19 %t3 = load i32, i32* %o3
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineSpecConstantUtil.hpp99 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3) in makeVector() argument
105 vec.push_back(o3); in makeVector()
110 std::vector<T> makeVector (const T& o1, const T& o2, const T& o3, const T& o4) in makeVector() argument
116 vec.push_back(o3); in makeVector()
/external/annotation-tools/asmx/src/org/objectweb/asm/commons/
DAdviceAdapter.java269 Object o3 = popValue(); in visitInsn() local
271 pushValue(o3); in visitInsn()
294 Object o3 = popValue(); in visitInsn() local
297 pushValue(o3); in visitInsn()
308 Object o3 = popValue(); in visitInsn() local
313 pushValue(o3); in visitInsn()
/external/python/cpython3/Doc/c-api/
Dnumber.rst70 .. c:function:: PyObject* PyNumber_Power(PyObject *o1, PyObject *o2, PyObject *o3)
75 equivalent of the Python expression ``pow(o1, o2, o3)``, where *o3* is optional.
76 If *o3* is to be ignored, pass :c:data:`Py_None` in its place (passing *NULL* for
77 *o3* would cause an illegal memory access).
189 .. c:function:: PyObject* PyNumber_InPlacePower(PyObject *o1, PyObject *o2, PyObject *o3)
195 statement ``o1 **= o2`` when o3 is :c:data:`Py_None`, or an in-place variant of
196 ``pow(o1, o2, o3)`` otherwise. If *o3* is to be ignored, pass :c:data:`Py_None`
197 in its place (passing *NULL* for *o3* would cause an illegal memory access).
/external/llvm/test/CodeGen/AArch64/
Darm64-const-addr.ll18 %o3 = getelementptr %T, %T* %at, i32 0, i32 3
19 %t3 = load i32, i32* %o3

123456789