/external/python/cpython3/Doc/c-api/ |
D | number.rst | 15 .. c:function:: PyObject* PyNumber_Add(PyObject *o1, PyObject *o2) 17 Returns the result of adding *o1* and *o2*, or *NULL* on failure. This is the 18 equivalent of the Python expression ``o1 + o2``. 21 .. c:function:: PyObject* PyNumber_Subtract(PyObject *o1, PyObject *o2) 23 Returns the result of subtracting *o2* from *o1*, or *NULL* on failure. This is 24 the equivalent of the Python expression ``o1 - o2``. 27 .. c:function:: PyObject* PyNumber_Multiply(PyObject *o1, PyObject *o2) 29 Returns the result of multiplying *o1* and *o2*, or *NULL* on failure. This is 30 the equivalent of the Python expression ``o1 * o2``. 33 .. c:function:: PyObject* PyNumber_MatrixMultiply(PyObject *o1, PyObject *o2) [all …]
|
/external/openssh/regress/unittests/test_helper/ |
D | fuzz.c | 74 size_t o1, o2; member 112 fuzz->o1, fuzz->slen * 8, fuzz->o1); in fuzz_fmt() 117 (((fuzz_ullong)fuzz->o2) * fuzz->slen * 8) + fuzz->o1, in fuzz_fmt() 119 fuzz->o1, fuzz->o2); in fuzz_fmt() 124 fuzz->o1, fuzz->slen, fuzz->o1); in fuzz_fmt() 129 (((fuzz_ullong)fuzz->o2) * fuzz->slen) + fuzz->o1, in fuzz_fmt() 131 fuzz->o1, fuzz->o2); in fuzz_fmt() 136 fuzz->o1, fuzz->slen, fuzz->o1); in fuzz_fmt() 141 fuzz->o1, fuzz->slen, fuzz->o1); in fuzz_fmt() 147 (fuzz->o1 * (fuzz_ullong)64) + fuzz->o2, in fuzz_fmt() [all …]
|
/external/python/cpython2/Doc/c-api/ |
D | number.rst | 15 .. c:function:: PyObject* PyNumber_Add(PyObject *o1, PyObject *o2) 17 Returns the result of adding *o1* and *o2*, or *NULL* on failure. This is the 18 equivalent of the Python expression ``o1 + o2``. 21 .. c:function:: PyObject* PyNumber_Subtract(PyObject *o1, PyObject *o2) 23 Returns the result of subtracting *o2* from *o1*, or *NULL* on failure. This is 24 the equivalent of the Python expression ``o1 - o2``. 27 .. c:function:: PyObject* PyNumber_Multiply(PyObject *o1, PyObject *o2) 29 Returns the result of multiplying *o1* and *o2*, or *NULL* on failure. This is 30 the equivalent of the Python expression ``o1 * o2``. 33 .. c:function:: PyObject* PyNumber_Divide(PyObject *o1, PyObject *o2) [all …]
|
/external/libcxx/test/std/utilities/optional/optional.relops/ |
D | less_equal.pass.cpp | 33 constexpr O o1; // disengaged in main() local 39 static_assert((o1 <= o1), ""); in main() 40 static_assert((o1 <= o2), ""); in main() 41 static_assert((o1 <= o3), ""); in main() 42 static_assert((o1 <= o4), ""); in main() 43 static_assert((o1 <= o5), ""); in main() 45 static_assert((o2 <= o1), ""); in main() 51 static_assert(!(o3 <= o1), ""); in main() 57 static_assert(!(o4 <= o1), ""); in main() 63 static_assert(!(o5 <= o1), ""); in main() [all …]
|
D | equal.pass.cpp | 36 constexpr O o1; // disengaged in main() local 42 static_assert(o1 == o1, ""); in main() 43 static_assert(o1 == o2, ""); in main() 44 static_assert(!(o1 == o3), ""); in main() 45 static_assert(!(o1 == o4), ""); in main() 46 static_assert(!(o1 == o5), ""); in main() 48 static_assert(o2 == o1, ""); in main() 54 static_assert(!(o3 == o1), ""); in main() 60 static_assert(!(o4 == o1), ""); in main() 66 static_assert(!(o5 == o1), ""); in main() [all …]
|
D | less_than.pass.cpp | 31 constexpr O o1; // disengaged in main() local 37 static_assert(!(o1 < o1), ""); in main() 38 static_assert(!(o1 < o2), ""); in main() 39 static_assert((o1 < o3), ""); in main() 40 static_assert((o1 < o4), ""); in main() 41 static_assert((o1 < o5), ""); in main() 43 static_assert(!(o2 < o1), ""); in main() 49 static_assert(!(o3 < o1), ""); in main() 55 static_assert(!(o4 < o1), ""); in main() 61 static_assert(!(o5 < o1), ""); in main() [all …]
|
D | not_equal.pass.cpp | 36 constexpr O o1; // disengaged in main() local 42 static_assert(!(o1 != o1), ""); in main() 43 static_assert(!(o1 != o2), ""); in main() 44 static_assert((o1 != o3), ""); in main() 45 static_assert((o1 != o4), ""); in main() 46 static_assert((o1 != o5), ""); in main() 48 static_assert(!(o2 != o1), ""); in main() 54 static_assert((o3 != o1), ""); in main() 60 static_assert((o4 != o1), ""); in main() 66 static_assert((o5 != o1), ""); in main() [all …]
|
D | greater_equal.pass.cpp | 33 constexpr O o1; // disengaged in main() local 39 static_assert((o1 >= o1), ""); in main() 40 static_assert((o1 >= o2), ""); in main() 41 static_assert(!(o1 >= o3), ""); in main() 42 static_assert(!(o1 >= o4), ""); in main() 43 static_assert(!(o1 >= o5), ""); in main() 45 static_assert((o2 >= o1), ""); in main() 51 static_assert((o3 >= o1), ""); in main() 57 static_assert((o4 >= o1), ""); in main() 63 static_assert((o5 >= o1), ""); in main() [all …]
|
D | greater_than.pass.cpp | 31 constexpr O o1; // disengaged in main() local 37 static_assert(!(o1 > o1), ""); in main() 38 static_assert(!(o1 > o2), ""); in main() 39 static_assert(!(o1 > o3), ""); in main() 40 static_assert(!(o1 > o4), ""); in main() 41 static_assert(!(o1 > o5), ""); in main() 43 static_assert(!(o2 > o1), ""); in main() 49 static_assert((o3 > o1), ""); in main() 55 static_assert((o4 > o1), ""); in main() 61 static_assert((o5 > o1), ""); in main() [all …]
|
/external/mockito/src/main/java/org/mockito/internal/matchers/ |
D | Equality.java | 12 public static boolean areEqual(Object o1, Object o2) { in areEqual() argument 13 if (o1 == o2 ) { in areEqual() 15 } else if (o1 == null || o2 == null) { in areEqual() 17 } else if (isArray(o1)) { in areEqual() 18 return isArray(o2) && areArraysEqual(o1, o2); in areEqual() 20 return o1.equals(o2); in areEqual() 24 static boolean areArraysEqual(Object o1, Object o2) { in areArraysEqual() argument 25 return areArrayLengthsEqual(o1, o2) in areArraysEqual() 26 && areArrayElementsEqual(o1, o2); in areArraysEqual() 29 static boolean areArrayLengthsEqual(Object o1, Object o2) { in areArrayLengthsEqual() argument [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SPARC/ |
D | rem.ll | 8 ; CHECK-NEXT: sdivx %o0, %o1, %o2 9 ; CHECK-NEXT: mulx %o2, %o1, %o1 11 ; CHECK-NEXT: sub %o0, %o1, %o0 20 ; CHECK-NEXT: udivx %o0, %o1, %o2 21 ; CHECK-NEXT: mulx %o2, %o1, %o1 23 ; CHECK-NEXT: sub %o0, %o1, %o0 33 ; CHECK-NEXT: sethi 2545, %o1 34 ; CHECK-NEXT: or %o1, 379, %o1 35 ; CHECK-NEXT: mulx %o0, %o1, %o0 36 ; CHECK-NEXT: udivx %o0, 1021, %o1 [all …]
|
D | atomics.ll | 6 ; CHECK: ldub [%o1] 22 ; CHECK: lduh [%o1] 38 ; CHECK: ld [%o1] 54 ; CHECK: ldx [%o1] 72 ; CHECK: and %o1, -4, %o2 74 ; CHECK: andn %o3, %o1, %o1 75 ; CHECK: sll %o1, 3, %o1 77 ; CHECK: sll %o3, %o1, %o5 81 ; CHECK: sll %o4, %o1, %o4 83 ; CHECK: sll %o0, %o1, %o0 [all …]
|
/external/mesa3d/src/mesa/sparc/ |
D | xform.S | 67 LDMATRIX_0_1_2_3_12_13_14_15(%o1) 72 clr %o1 80 add %o1, 2, %o1 ! IEU0 106 cmp %o1, %o2 ! IEU1 110 cmp %o1, %g3 144 clr %o1 152 add %o1, 2, %o1 ! IEU0 155 cmp %o1, %o2 ! IEU1 160 cmp %o1, %g3 182 LDMATRIX_0_1_12_13(%o1) [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Sparc/ |
D | sparc-synthetic-instructions.s | 37 ! CHECK: sethi %hi(268431360), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 39 set 0x0ffff000, %o1 41 ! CHECK: sethi %hi(268433408), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 43 set 0x0ffff800, %o1 46 ! CHECK: sethi %hi(268434432), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 48 set 0x0ffffc00, %o1 51 ! CHECK: sethi %hi(2147483647), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 53 ! CHECK: or %o1, %lo(2147483647), %o1 ! encoding: [0x92,0x12,0b011000AA,A] 55 set 2147483647, %o1 173 ! V8: mov -1, %o1 ! encoding: [0x92,0x10,0x3f,0xff] [all …]
|
/external/llvm/test/MC/Sparc/ |
D | sparc-synthetic-instructions.s | 37 ! CHECK: sethi %hi(268431360), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 39 set 0x0ffff000, %o1 41 ! CHECK: sethi %hi(268433408), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 43 set 0x0ffff800, %o1 46 ! CHECK: sethi %hi(268434432), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 48 set 0x0ffffc00, %o1 51 ! CHECK: sethi %hi(2147483647), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 53 ! CHECK: or %o1, %lo(2147483647), %o1 ! encoding: [0x92,0x12,0b011000AA,A] 55 set 2147483647, %o1 173 ! V8: mov -1, %o1 ! encoding: [0x92,0x10,0x3f,0xff] [all …]
|
/external/python/cpython2/Include/ |
D | abstract.h | 231 PyAPI_FUNC(int) PyObject_Cmp(PyObject *o1, PyObject *o2, int *result); 660 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2); 669 PyAPI_FUNC(PyObject *) PyNumber_Subtract(PyObject *o1, PyObject *o2); 678 PyAPI_FUNC(PyObject *) PyNumber_Multiply(PyObject *o1, PyObject *o2); 688 PyAPI_FUNC(PyObject *) PyNumber_Divide(PyObject *o1, PyObject *o2); 697 PyAPI_FUNC(PyObject *) PyNumber_FloorDivide(PyObject *o1, PyObject *o2); 707 PyAPI_FUNC(PyObject *) PyNumber_TrueDivide(PyObject *o1, PyObject *o2); 717 PyAPI_FUNC(PyObject *) PyNumber_Remainder(PyObject *o1, PyObject *o2); 727 PyAPI_FUNC(PyObject *) PyNumber_Divmod(PyObject *o1, PyObject *o2); 737 PyAPI_FUNC(PyObject *) PyNumber_Power(PyObject *o1, PyObject *o2, [all …]
|
/external/libcxx/test/std/utilities/optional/optional.comp_with_t/ |
D | equal.pass.cpp | 36 constexpr O o1; // disengaged in main() local 40 static_assert(!(o1 == T(1)), ""); in main() 46 static_assert(!(T(1) == o1), ""); in main() 54 constexpr O o1(42); in main() local 55 static_assert(o1 == 42l, ""); in main() 56 static_assert(!(101l == o1), ""); in main() 60 constexpr O o1(42); in main() local 61 static_assert(o1 == 42, ""); in main() 62 static_assert(!(101 == o1), ""); in main()
|
D | not_equal.pass.cpp | 36 constexpr O o1; // disengaged in main() local 40 static_assert((o1 != T(1)), ""); in main() 46 static_assert((T(1) != o1), ""); in main() 54 constexpr O o1(42); in main() local 55 static_assert(o1 != 101l, ""); in main() 56 static_assert(!(42l != o1), ""); in main() 60 constexpr O o1(42); in main() local 61 static_assert(o1 != 101, ""); in main() 62 static_assert(!(42 != o1), ""); in main()
|
D | greater_equal.pass.cpp | 36 constexpr O o1; // disengaged in main() local 40 static_assert(!(o1 >= T(1)), ""); in main() 47 static_assert((T(1) >= o1), ""); in main() 56 constexpr O o1(42); in main() local 57 static_assert(o1 >= 42l, ""); in main() 58 static_assert(!(11l >= o1), ""); in main() 62 constexpr O o1(42); in main() local 63 static_assert(o1 >= 42, ""); in main() 64 static_assert(!(11 >= o1), ""); in main()
|
D | greater.pass.cpp | 34 constexpr O o1; // disengaged in main() local 38 static_assert(!(o1 > T(1)), ""); in main() 45 static_assert((T(1) > o1), ""); in main() 54 constexpr O o1(42); in main() local 55 static_assert(o1 > 11l, ""); in main() 56 static_assert(!(42l > o1), ""); in main() 60 constexpr O o1(42); in main() local 61 static_assert(o1 > 11, ""); in main() 62 static_assert(!(42 > o1), ""); in main()
|
D | less_than.pass.cpp | 34 constexpr O o1; // disengaged in main() local 38 static_assert((o1 < T(1)), ""); in main() 45 static_assert(!(T(1) < o1), ""); in main() 54 constexpr O o1(42); in main() local 55 static_assert(o1 < 101l, ""); in main() 56 static_assert(!(42l < o1), ""); in main() 60 constexpr O o1(42); in main() local 61 static_assert(o1 < 101, ""); in main() 62 static_assert(!(42 < o1), ""); in main()
|
D | less_equal.pass.cpp | 36 constexpr O o1; // disengaged in main() local 40 static_assert((o1 <= T(1)), ""); in main() 47 static_assert(!(T(1) <= o1), ""); in main() 56 constexpr O o1(42); in main() local 57 static_assert(o1 <= 42l, ""); in main() 58 static_assert(!(101l <= o1), ""); in main() 62 constexpr O o1(42); in main() local 63 static_assert(o1 <= 42, ""); in main() 64 static_assert(!(101 <= o1), ""); in main()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/ |
D | com_github_javaparser_symbolsolver_reflectionmodel_comparators_ClassComparator.txt | 1 …Line 13) o1.getCanonicalName().compareTo(o2.getCanonicalName()) ==> java.lang.String.compareTo(jav… 2 Line 13) o1.getCanonicalName() ==> java.lang.Class.getCanonicalName() 4 …Line 15) Boolean.compare(o1.isAnnotation(), o2.isAnnotation()) ==> java.lang.Boolean.compare(boole… 5 Line 15) o1.isAnnotation() ==> java.lang.Class.isAnnotation() 7 …Line 17) Boolean.compare(o1.isArray(), o2.isArray()) ==> java.lang.Boolean.compare(boolean, boolea… 8 Line 17) o1.isArray() ==> java.lang.Class.isArray() 10 Line 19) Boolean.compare(o1.isEnum(), o2.isEnum()) ==> java.lang.Boolean.compare(boolean, boolean) 11 Line 19) o1.isEnum() ==> java.lang.Class.isEnum() 13 …Line 21) Boolean.compare(o1.isInterface(), o2.isInterface()) ==> java.lang.Boolean.compare(boolean… 14 Line 21) o1.isInterface() ==> java.lang.Class.isInterface()
|
/external/python/cpython3/Include/ |
D | abstract.h | 617 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2); 622 PyAPI_FUNC(PyObject *) PyNumber_Subtract(PyObject *o1, PyObject *o2); 627 PyAPI_FUNC(PyObject *) PyNumber_Multiply(PyObject *o1, PyObject *o2); 631 PyAPI_FUNC(PyObject *) PyNumber_MatrixMultiply(PyObject *o1, PyObject *o2); 638 PyAPI_FUNC(PyObject *) PyNumber_FloorDivide(PyObject *o1, PyObject *o2); 644 PyAPI_FUNC(PyObject *) PyNumber_TrueDivide(PyObject *o1, PyObject *o2); 649 PyAPI_FUNC(PyObject *) PyNumber_Remainder(PyObject *o1, PyObject *o2); 656 PyAPI_FUNC(PyObject *) PyNumber_Divmod(PyObject *o1, PyObject *o2); 662 PyAPI_FUNC(PyObject *) PyNumber_Power(PyObject *o1, PyObject *o2, 688 PyAPI_FUNC(PyObject *) PyNumber_Lshift(PyObject *o1, PyObject *o2); [all …]
|
/external/llvm/test/CodeGen/SPARC/ |
D | atomics.ll | 6 ; CHECK: ldub [%o1] 22 ; CHECK: lduh [%o1] 38 ; CHECK: ld [%o1] 54 ; CHECK: ldx [%o1] 72 ; CHECK: and %o1, -4, %o2 74 ; CHECK: andn %o3, %o1, %o1 75 ; CHECK: sll %o1, 3, %o1 77 ; CHECK: sll %o3, %o1, %o5 81 ; CHECK: sll %o4, %o1, %o4 83 ; CHECK: sll %o0, %o1, %o0 [all …]
|