| /external/python/cpython3/Doc/c-api/ |
| D | number.rst | 18 .. c:function:: PyObject* PyNumber_Add(PyObject *o1, PyObject *o2) 20 Returns the result of adding *o1* and *o2*, or ``NULL`` on failure. This is the 21 equivalent of the Python expression ``o1 + o2``. 24 .. c:function:: PyObject* PyNumber_Subtract(PyObject *o1, PyObject *o2) 26 Returns the result of subtracting *o2* from *o1*, or ``NULL`` on failure. This is 27 the equivalent of the Python expression ``o1 - o2``. 30 .. c:function:: PyObject* PyNumber_Multiply(PyObject *o1, PyObject *o2) 32 Returns the result of multiplying *o1* and *o2*, or ``NULL`` on failure. This is 33 the equivalent of the Python expression ``o1 * o2``. 36 .. c:function:: PyObject* PyNumber_MatrixMultiply(PyObject *o1, PyObject *o2) [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/XNNPACK/src/x24-transposec/gen/ |
| D | 4x2-scalar.c | 38 uint8_t* o1 = (uint8_t*) ((uintptr_t) o0 + output_stride); in xnn_x24_transposec_ukernel__4x2_scalar() local 42 o1 = o0; in xnn_x24_transposec_ukernel__4x2_scalar() 46 o1[0] = i0[3]; in xnn_x24_transposec_ukernel__4x2_scalar() 47 o1[1] = i0[4]; in xnn_x24_transposec_ukernel__4x2_scalar() 48 o1[2] = i0[5]; in xnn_x24_transposec_ukernel__4x2_scalar() 49 o1[3] = i1[3]; in xnn_x24_transposec_ukernel__4x2_scalar() 50 o1[4] = i1[4]; in xnn_x24_transposec_ukernel__4x2_scalar() 51 o1[5] = i1[5]; in xnn_x24_transposec_ukernel__4x2_scalar() 52 o1[6] = i2[3]; in xnn_x24_transposec_ukernel__4x2_scalar() 53 o1[7] = i2[4]; in xnn_x24_transposec_ukernel__4x2_scalar() [all …]
|
| D | 4x4-scalar.c | 38 uint8_t* o1 = (uint8_t*) ((uintptr_t) o0 + output_stride); in xnn_x24_transposec_ukernel__4x4_scalar() local 39 uint8_t* o2 = (uint8_t*) ((uintptr_t) o1 + output_stride); in xnn_x24_transposec_ukernel__4x4_scalar() 44 o1 = o0; in xnn_x24_transposec_ukernel__4x4_scalar() 80 o1[0] = i0[3]; in xnn_x24_transposec_ukernel__4x4_scalar() 81 o1[1] = i0[4]; in xnn_x24_transposec_ukernel__4x4_scalar() 82 o1[2] = i0[5]; in xnn_x24_transposec_ukernel__4x4_scalar() 83 o1[3] = i1[3]; in xnn_x24_transposec_ukernel__4x4_scalar() 84 o1[4] = i1[4]; in xnn_x24_transposec_ukernel__4x4_scalar() 85 o1[5] = i1[5]; in xnn_x24_transposec_ukernel__4x4_scalar() 86 o1[6] = i2[3]; in xnn_x24_transposec_ukernel__4x4_scalar() [all …]
|
| /external/cronet/net/data/ov_name_constraints/ |
| D | generate-certs.py | 30 # Intermediate with two organizations as two distinct SETs, ordered O1 and O2 35 dn.add_property('0.organizationName', 'O1') 37 gencerts.write_string_to_file(i_o1_o2.get_cert_pem(), 'int-o1-o2.pem') 39 # Intermediate with two organizations as two distinct SETs, ordered O2 and O1 45 dn.add_property('1.organizationName', 'O1') 46 gencerts.write_string_to_file(i_o2_o1.get_cert_pem(), 'int-o2-o1.pem') 56 # Intermediate with a single organization name, O1, encoded as BMPString 64 dn.add_property('organizationName', 'O1') 65 gencerts.write_string_to_file(i_bmp_o1.get_cert_pem(), 'int-bmp-o1.pem') 67 # Intermediate with two organizations as a single SET, ordered O1 and O2 [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/python/cpython3/Include/ |
| D | abstract.h | 419 /* Returns the result of adding o1 and o2, or NULL on failure. 421 This is the equivalent of the Python expression: o1 + o2. */ 422 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2); 424 /* Returns the result of subtracting o2 from o1, or NULL on failure. 426 This is the equivalent of the Python expression: o1 - o2. */ 427 PyAPI_FUNC(PyObject *) PyNumber_Subtract(PyObject *o1, PyObject *o2); 429 /* Returns the result of multiplying o1 and o2, or NULL on failure. 431 This is the equivalent of the Python expression: o1 * o2. */ 432 PyAPI_FUNC(PyObject *) PyNumber_Multiply(PyObject *o1, PyObject *o2); 435 /* This is the equivalent of the Python expression: o1 @ o2. */ [all …]
|
| /external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/optional/optional.relops/ |
| D | less_than.pass.cpp | 32 constexpr O o1; // disengaged in main() local 38 static_assert(!(o1 < o1), ""); in main() 39 static_assert(!(o1 < o2), ""); in main() 40 static_assert((o1 < o3), ""); in main() 41 static_assert((o1 < o4), ""); in main() 42 static_assert((o1 < o5), ""); in main() 44 static_assert(!(o2 < o1), ""); in main() 50 static_assert(!(o3 < o1), ""); in main() 56 static_assert(!(o4 < o1), ""); in main() 62 static_assert(!(o5 < o1), ""); in main() [all …]
|
| D | greater_than.pass.cpp | 32 constexpr O o1; // disengaged in main() local 38 static_assert(!(o1 > o1), ""); in main() 39 static_assert(!(o1 > o2), ""); in main() 40 static_assert(!(o1 > o3), ""); in main() 41 static_assert(!(o1 > o4), ""); in main() 42 static_assert(!(o1 > o5), ""); in main() 44 static_assert(!(o2 > o1), ""); in main() 50 static_assert((o3 > o1), ""); in main() 56 static_assert((o4 > o1), ""); in main() 62 static_assert((o5 > o1), ""); in main() [all …]
|
| D | greater_equal.pass.cpp | 34 constexpr O o1; // disengaged in main() local 40 static_assert((o1 >= o1), ""); in main() 41 static_assert((o1 >= o2), ""); in main() 42 static_assert(!(o1 >= o3), ""); in main() 43 static_assert(!(o1 >= o4), ""); in main() 44 static_assert(!(o1 >= o5), ""); in main() 46 static_assert((o2 >= o1), ""); in main() 52 static_assert((o3 >= o1), ""); in main() 58 static_assert((o4 >= o1), ""); in main() 64 static_assert((o5 >= o1), ""); in main() [all …]
|
| D | not_equal.pass.cpp | 37 constexpr O o1; // disengaged in main() local 43 static_assert(!(o1 != o1), ""); in main() 44 static_assert(!(o1 != o2), ""); in main() 45 static_assert((o1 != o3), ""); in main() 46 static_assert((o1 != o4), ""); in main() 47 static_assert((o1 != o5), ""); in main() 49 static_assert(!(o2 != o1), ""); in main() 55 static_assert((o3 != o1), ""); in main() 61 static_assert((o4 != o1), ""); in main() 67 static_assert((o5 != o1), ""); in main() [all …]
|
| D | less_equal.pass.cpp | 34 constexpr O o1; // disengaged in main() local 40 static_assert((o1 <= o1), ""); in main() 41 static_assert((o1 <= o2), ""); in main() 42 static_assert((o1 <= o3), ""); in main() 43 static_assert((o1 <= o4), ""); in main() 44 static_assert((o1 <= o5), ""); in main() 46 static_assert((o2 <= o1), ""); in main() 52 static_assert(!(o3 <= o1), ""); in main() 58 static_assert(!(o4 <= o1), ""); in main() 64 static_assert(!(o5 <= o1), ""); in main() [all …]
|
| D | equal.pass.cpp | 37 constexpr O o1; // disengaged in main() local 43 static_assert(o1 == o1, ""); in main() 44 static_assert(o1 == o2, ""); in main() 45 static_assert(!(o1 == o3), ""); in main() 46 static_assert(!(o1 == o4), ""); in main() 47 static_assert(!(o1 == o5), ""); in main() 49 static_assert(o2 == o1, ""); in main() 55 static_assert(!(o3 == o1), ""); in main() 61 static_assert(!(o4 == o1), ""); in main() 67 static_assert(!(o5 == o1), ""); in main() [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 | 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 | 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 …]
|
| 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 | 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 …]
|
| /external/python/cpython2/Include/ |
| D | abstract.h | 231 PyAPI_FUNC(int) PyObject_Cmp(PyObject *o1, PyObject *o2, int *result); 234 Compare the values of o1 and o2 using a routine provided by 235 o1, if one exists, otherwise with a routine provided by o2. 238 statement: result=cmp(o1,o2). 244 int PyObject_Compare(PyObject *o1, PyObject *o2); 246 Compare the values of o1 and o2 using a routine provided by 247 o1, if one exists, otherwise with a routine provided by o2. 250 Python expression: cmp(o1,o2). 660 PyAPI_FUNC(PyObject *) PyNumber_Add(PyObject *o1, PyObject *o2); 663 Returns the result of adding o1 and o2, or null on failure. [all …]
|
| /external/ltp/runtest/ |
| D | ltp-aio-stress | 33 ADS1031 aio-stress -o1 -r4k -t2 -f1 34 ADS1032 aio-stress -o1 -r8k -t2 -f1 35 ADS1033 aio-stress -o1 -r16k -t2 -f2 36 ADS1034 aio-stress -o1 -r32k -t4 -f4 37 ADS1035 aio-stress -o1 -r64k -t4 -f4 38 ADS1036 aio-stress -o1 -r128k -t4 -f4 39 ADS1037 aio-stress -o1 -r256k -t8 -f8 40 ADS1038 aio-stress -o1 -r512k -t8 -f8 41 ADS1039 aio-stress -o1 -O -r4k -t8 -f8 42 ADS1040 aio-stress -o1 -O -r8k -t2 -f2 [all …]
|
| /external/cronet/base/ |
| D | scoped_multi_source_observation_unittest.cc | 51 TestSourceObserver* o1() { return &o1_; } in o1() function in base::__anon6d8871d00111::ScopedMultiSourceObservationTest 63 TestScopedMultiSourceObservation obs(o1()); in TEST_F() 65 EXPECT_FALSE(s1()->HasObserver(o1())); in TEST_F() 69 EXPECT_TRUE(s1()->HasObserver(o1())); in TEST_F() 73 EXPECT_TRUE(s2()->HasObserver(o1())); in TEST_F() 82 TestScopedMultiSourceObservation obs(o1()); in TEST_F() 84 EXPECT_FALSE(s1()->HasObserver(o1())); in TEST_F() 86 EXPECT_FALSE(s2()->HasObserver(o1())); in TEST_F() 90 EXPECT_TRUE(s1()->HasObserver(o1())); in TEST_F() 94 EXPECT_TRUE(s2()->HasObserver(o1())); in TEST_F() [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/apache-commons-lang/src/test/java/org/apache/commons/lang3/builder/ |
| D | CompareToBuilderTest.java | 102 final TestObject o1 = new TestObject(4); in testReflectionCompare() local 104 assertEquals(0, CompareToBuilder.reflectionCompare(o1, o1)); in testReflectionCompare() 105 assertEquals(0, CompareToBuilder.reflectionCompare(o1, o2)); in testReflectionCompare() 107 assertTrue(CompareToBuilder.reflectionCompare(o1, o2) < 0); in testReflectionCompare() 108 assertTrue(CompareToBuilder.reflectionCompare(o2, o1) > 0); in testReflectionCompare() 113 final TestObject o1 = new TestObject(4); in testReflectionCompareEx1() local 114 … assertThrows(NullPointerException.class, () -> CompareToBuilder.reflectionCompare(o1, null)); in testReflectionCompareEx1() 119 final TestObject o1 = new TestObject(4); in testReflectionCompareEx2() local 121 assertThrows(ClassCastException.class, () -> CompareToBuilder.reflectionCompare(o1, o2)); in testReflectionCompareEx2() 250 final TestObject o1 = new TestObject(4); in testAppendSuper() local [all …]
|
| /external/llvm/test/Feature/ |
| D | optnone-opt.ll | 2 ; RUN: opt -O1 -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O1 3 ; RUN: opt -O2 -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O1 --check-prefix=OPT-O2O3 4 ; RUN: opt -O3 -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O1 --check-prefix=OPT-O2O3 39 ; IR passes run at -O1 and higher. 40 ; OPT-O1-DAG: Skipping pass 'Aggressive Dead Code Elimination' 41 ; OPT-O1-DAG: Skipping pass 'Combine redundant instructions' 42 ; OPT-O1-DAG: Skipping pass 'Dead Store Elimination' 43 ; OPT-O1-DAG: Skipping pass 'Early CSE' 44 ; OPT-O1-DAG: Skipping pass 'Jump Threading' 45 ; OPT-O1-DAG: Skipping pass 'MemCpy Optimization' [all …]
|