Home
last modified time | relevance | path

Searched full:o1 (Results 1 – 25 of 1817) sorted by relevance

12345678910>>...73

/external/python/cpython3/Doc/c-api/
Dnumber.rst18 .. 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/
Dnumber.rst15 .. 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/mesa3d/src/mesa/sparc/
Dxform.S67 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/
Dabstract.h419 /* 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/python/cpython2/Include/
Dabstract.h231 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/libcxx/test/std/utilities/optional/optional.relops/
Dgreater_equal.pass.cpp33 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 …]
Dless_than.pass.cpp31 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 …]
Dnot_equal.pass.cpp36 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 …]
Dequal.pass.cpp36 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 …]
Dless_equal.pass.cpp33 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 …]
Dgreater_than.pass.cpp31 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/
DEquality.java12 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/llvm/test/Feature/
Doptnone-opt.ll2 ; 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 …]
/external/llvm/test/MC/Sparc/
Dsparc-synthetic-instructions.s37 ! 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/CodeGen/SPARC/
Datomics.ll6 ; 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/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
Dhlsl.targetStruct2.frag.out5 …uct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector of float o1, temp 4-component v…
11 0:14 o1: direct index for structure ( temp 4-component vector of float)
12 0:14 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector…
31 0:15 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector…
47 0:18 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector o…
65 0:12 move second child to first child ( temp structure{ temp 4-component vector of float o1,…
66 0:12 'flattenTemp' ( temp structure{ temp 4-component vector of float o1, temp 4-componen…
67 …uct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector of float o1, temp 4-component v…
71 0:? '@entryPointOutput.o1' (layout( location=2) out 4-component vector of float)
72 0:12 o1: direct index for structure ( temp 4-component vector of float)
[all …]
Dhlsl.targetStruct1.frag.out5 …uct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector of float o1, temp 4-component v…
11 0:14 o1: direct index for structure ( temp 4-component vector of float)
12 0:14 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector…
31 0:15 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector…
47 0:18 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector o…
65 0:12 move second child to first child ( temp structure{ temp 4-component vector of float o1,…
66 0:12 'flattenTemp' ( temp structure{ temp 4-component vector of float o1, temp 4-componen…
67 …uct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector of float o1, temp 4-component v…
71 0:? '@entryPointOutput.o1' (layout( location=2) out 4-component vector of float)
72 0:12 o1: direct index for structure ( temp 4-component vector of float)
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.targetStruct1.frag.out5 …uct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector of float o1, temp 4-component v…
11 0:14 o1: direct index for structure ( temp 4-component vector of float)
12 0:14 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector…
31 0:15 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector…
47 0:18 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector o…
65 0:12 move second child to first child ( temp structure{ temp 4-component vector of float o1,…
66 0:12 'flattenTemp' ( temp structure{ temp 4-component vector of float o1, temp 4-componen…
67 …uct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector of float o1, temp 4-component v…
71 0:? '@entryPointOutput.o1' (layout( location=2) out 4-component vector of float)
72 0:12 o1: direct index for structure ( temp 4-component vector of float)
[all …]
Dhlsl.targetStruct2.frag.out5 …uct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector of float o1, temp 4-component v…
11 0:14 o1: direct index for structure ( temp 4-component vector of float)
12 0:14 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector…
31 0:15 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector…
47 0:18 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector o…
65 0:12 move second child to first child ( temp structure{ temp 4-component vector of float o1,…
66 0:12 'flattenTemp' ( temp structure{ temp 4-component vector of float o1, temp 4-componen…
67 …uct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector of float o1, temp 4-component v…
71 0:? '@entryPointOutput.o1' (layout( location=2) out 4-component vector of float)
72 0:12 o1: direct index for structure ( temp 4-component vector of float)
[all …]
/external/XNNPACK/src/f32-prelu/gen/
Dneon-2x16.c34 float* o1 = (float*) ((uintptr_t) o0 + output_stride); in xnn_f32_prelu_ukernel__neon_2x16() local
42 o1 = o0; in xnn_f32_prelu_ukernel__neon_2x16()
92 vst1q_f32(o1, vacc1x0123); o1 += 4; in xnn_f32_prelu_ukernel__neon_2x16()
93 vst1q_f32(o1, vacc1x4567); o1 += 4; in xnn_f32_prelu_ukernel__neon_2x16()
94 vst1q_f32(o1, vacc1x89AB); o1 += 4; in xnn_f32_prelu_ukernel__neon_2x16()
95 vst1q_f32(o1, vacc1xCDEF); o1 += 4; in xnn_f32_prelu_ukernel__neon_2x16()
114 vst1q_f32(o1, vacc1x0123); o1 += 4; in xnn_f32_prelu_ukernel__neon_2x16()
136 vst1_f32(o1, vacc1x01); o1 += 2; in xnn_f32_prelu_ukernel__neon_2x16()
143 vst1_lane_f32(o1, vacc1x01, 0); o1 += 1; in xnn_f32_prelu_ukernel__neon_2x16()
149 o1 = (float*) ((uintptr_t) o1 + output_increment); in xnn_f32_prelu_ukernel__neon_2x16()
Davx-2x16.c36 float* o1 = (float*) ((uintptr_t) o0 + output_stride); in xnn_f32_prelu_ukernel__avx_2x16() local
44 o1 = o0; in xnn_f32_prelu_ukernel__avx_2x16()
74 _mm256_storeu_ps(o1, vacc1x01234567); in xnn_f32_prelu_ukernel__avx_2x16()
75 _mm256_storeu_ps(o1 + 8, vacc1x89ABCDEF); in xnn_f32_prelu_ukernel__avx_2x16()
76 o1 += 16; in xnn_f32_prelu_ukernel__avx_2x16()
95 _mm256_storeu_ps(o1, vacc1); in xnn_f32_prelu_ukernel__avx_2x16()
96 o1 += 8; in xnn_f32_prelu_ukernel__avx_2x16()
120 _mm_storeu_ps(o1, vacc1_lo); in xnn_f32_prelu_ukernel__avx_2x16()
126 o1 += 4; in xnn_f32_prelu_ukernel__avx_2x16()
130 _mm_storel_pi((__m64*) o1, vacc1_lo); in xnn_f32_prelu_ukernel__avx_2x16()
[all …]
/external/XNNPACK/src/f16-prelu/gen/
Dneonfp16arith-2x16.c34 __fp16* o1 = (__fp16*) ((uintptr_t) o0 + output_stride); in xnn_f16_prelu_ukernel__neonfp16arith_2x16() local
42 o1 = o0; in xnn_f16_prelu_ukernel__neonfp16arith_2x16()
72 vst1q_f16(o1, vacc1x001234567); o1 += 8; in xnn_f16_prelu_ukernel__neonfp16arith_2x16()
73 vst1q_f16(o1, vacc1x089ABCDEF); o1 += 8; in xnn_f16_prelu_ukernel__neonfp16arith_2x16()
92 vst1q_f16(o1, vacc1x01234567); o1 += 8; in xnn_f16_prelu_ukernel__neonfp16arith_2x16()
114 vst1_f16(o1, vacc1x0123); o1 += 4; in xnn_f16_prelu_ukernel__neonfp16arith_2x16()
122 vst1_lane_u32((void*) o1, vreinterpret_u32_f16(vacc1x0123), 0); o1 += 2; in xnn_f16_prelu_ukernel__neonfp16arith_2x16()
127 vst1_lane_f16(o1, vacc1x0123, 0); o1 += 1; in xnn_f16_prelu_ukernel__neonfp16arith_2x16()
133 o1 = (__fp16*) ((uintptr_t) o1 + output_increment); in xnn_f16_prelu_ukernel__neonfp16arith_2x16()
Df16c-2x16.c34 uint16_t* o1 = (uint16_t*) ((uintptr_t) o0 + output_stride); in xnn_f16_prelu_ukernel__f16c_2x16() local
42 o1 = o0; in xnn_f16_prelu_ukernel__f16c_2x16()
73 _mm_storeu_si128((__m128i*) o1, _mm256_cvtps_ph(vacc1x089ABCDEF, _MM_FROUND_NO_EXC)); in xnn_f16_prelu_ukernel__f16c_2x16()
74 _mm_storeu_si128((__m128i*) (o1 + 0), _mm256_cvtps_ph(vacc1x001234567, _MM_FROUND_NO_EXC)); in xnn_f16_prelu_ukernel__f16c_2x16()
75 _mm_storeu_si128((__m128i*) (o1 + 8), _mm256_cvtps_ph(vacc1x089ABCDEF, _MM_FROUND_NO_EXC)); in xnn_f16_prelu_ukernel__f16c_2x16()
76 o1 += 16; in xnn_f16_prelu_ukernel__f16c_2x16()
95 _mm_storeu_si128((__m128i*) o1, _mm256_cvtps_ph(vacc1x01234567, _MM_FROUND_NO_EXC)); in xnn_f16_prelu_ukernel__f16c_2x16()
96 o1 += 8; in xnn_f16_prelu_ukernel__f16c_2x16()
116 _mm_storel_epi64((__m128i*) o1, vh1x01234567); in xnn_f16_prelu_ukernel__f16c_2x16()
122 o1 += 4; in xnn_f16_prelu_ukernel__f16c_2x16()
[all …]
/external/ltp/runtest/
Dltp-aio-stress.part160 ADS1031 aio-stress -I500 -o1 -S -r4 -t2 $TMPDIR/junkfile $TMPDIR/file2
61 ADS1032 aio-stress -I500 -o1 -S -r8 -t2 $TMPDIR/junkfile $TMPDIR/file2
62 ADS1033 aio-stress -I500 -o1 -S -r16 -t2 $TMPDIR/junkfile $TMPDIR/file2
63 ADS1034 aio-stress -I500 -o1 -S -r32 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file7 $TMPD…
64 ADS1035 aio-stress -I500 -o1 -S -r64 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file7 $T…
65 ADS1036 aio-stress -I500 -o1 -S -r128 -t4 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file7 $T…
66 ADS1037 aio-stress -I500 -o1 -S -r256 -t8 $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file7 $TMP…
67 ADS1038 aio-stress -I500 -o1 -S -r512 -t8 -x $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file7 $TMP…
68 ADS1039 aio-stress -I500 -o1 -O -r4 -t8 -x $TMPDIR/junkfile $TMPDIR/file2 $TMPDIR/file…
69 ADS1040 aio-stress -I500 -o1 -O -r8 -t2 -x $TMPDIR/junkfile $TMPDIR/file2
[all …]
/external/XNNPACK/src/f16-vmulcaddc/gen/
Dc16-minmax-neonfp16arith-2x.c35 __fp16* o1 = (__fp16*) ((uintptr_t) o0 + output_stride); in xnn_f16_vmulcaddc_minmax_ukernel_c16__neonfp16arith_2x() local
45 o1 = o0; in xnn_f16_vmulcaddc_minmax_ukernel_c16__neonfp16arith_2x()
79 vst1q_f16(o1, vacc1x01234567); o1 += 8; in xnn_f16_vmulcaddc_minmax_ukernel_c16__neonfp16arith_2x()
80 vst1q_f16(o1, vacc1x89ABCDEF); o1 += 8; in xnn_f16_vmulcaddc_minmax_ukernel_c16__neonfp16arith_2x()
101 vst1q_f16(o1, vacc1x01234567); o1 += 8; in xnn_f16_vmulcaddc_minmax_ukernel_c16__neonfp16arith_2x()
124 vst1_f16(o1, vacc1x0123); o1 += 4; in xnn_f16_vmulcaddc_minmax_ukernel_c16__neonfp16arith_2x()
131 vst1_lane_u32((void*) o1, vreinterpret_u32_f16(vacc1x0123), 0); o1 += 2; in xnn_f16_vmulcaddc_minmax_ukernel_c16__neonfp16arith_2x()
138 vst1_lane_f16(o1, vacc1x0123, 0); o1 += 1; in xnn_f16_vmulcaddc_minmax_ukernel_c16__neonfp16arith_2x()
144 o1 = (__fp16*) ((uintptr_t) o1 + output_increment); in xnn_f16_vmulcaddc_minmax_ukernel_c16__neonfp16arith_2x()

12345678910>>...73