/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/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/openssh/regress/unittests/test_helper/ |
D | fuzz.c | 55 /* For base-64 fuzzing */ 74 size_t o1, o2; member 106 return -1; in fuzz_fmt() 108 switch (fuzz->strategy) { in fuzz_fmt() 111 fuzz_ntop(fuzz->strategy), in fuzz_fmt() 112 fuzz->o1, fuzz->slen * 8, fuzz->o1); in fuzz_fmt() 116 fuzz_ntop(fuzz->strategy), in fuzz_fmt() 117 (((fuzz_ullong)fuzz->o2) * fuzz->slen * 8) + fuzz->o1, in fuzz_fmt() 118 ((fuzz_ullong)fuzz->slen * 8) * fuzz->slen * 8, in fuzz_fmt() 119 fuzz->o1, fuzz->o2); in fuzz_fmt() [all …]
|
/external/libcxx/test/std/utilities/optional/optional.relops/ |
D | less_than.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 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() [all …]
|
D | greater_equal.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 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() [all …]
|
D | not_equal.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 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() [all …]
|
D | greater_than.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 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() [all …]
|
D | less_equal.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 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() [all …]
|
D | equal.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 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() [all …]
|
/external/python/cpython2/Include/ |
D | abstract.h | 57 suggested by Guido in off-line discussions): 59 - "Very high level layer": two or three functions that let you exec or 68 - "Abstract objects layer": which is the subject of this proposal. 73 - "Concrete objects layer": This is the public type-dependent 74 interface provided by the standard built-in types, such as floats, 82 - "Python module interface": this interface consist of the basic 84 current extensions-writing guide deals with this interface. 86 - "Built-in object interface": this is the interface that a new 87 built-in type must provide and the mechanisms and rules that a 88 developer of a new built-in type must use and follow. [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SPARC/ |
D | rem.ll | 2 ; RUN: llc < %s -mtriple=sparcv9 | FileCheck %s 5 ; CHECK-LABEL: test1: 7 ; CHECK-NEXT: ! %bb.0: 8 ; CHECK-NEXT: sdivx %o0, %o1, %o2 9 ; CHECK-NEXT: mulx %o2, %o1, %o1 10 ; CHECK-NEXT: retl 11 ; CHECK-NEXT: sub %o0, %o1, %o0 17 ; CHECK-LABEL: test2: 19 ; CHECK-NEXT: ! %bb.0: 20 ; CHECK-NEXT: udivx %o0, %o1, %o2 [all …]
|
D | atomics.ll | 1 ; RUN: llc < %s -march=sparcv9 -verify-machineinstrs | FileCheck %s 3 ; CHECK-LABEL: test_atomic_i8 6 ; CHECK: ldub [%o1] 19 ; CHECK-LABEL: test_atomic_i16 22 ; CHECK: lduh [%o1] 35 ; CHECK-LABEL: test_atomic_i32 38 ; CHECK: ld [%o1] 51 ; CHECK-LABEL: test_atomic_i64 54 ; CHECK: ldx [%o1] 71 ; CHECK-LABEL: test_cmpxchg_i8 [all …]
|
/external/python/cpython3/Include/ |
D | abstract.h | 15 Print an object 'o' on file 'fp'. Returns -1 on error. The flags argument 68 to the value 'v'. Raise an exception and return -1 on failure; return 0 on 79 'v'. an exception and return -1 on failure; return 0 on success. 88 -1 on failure. 98 Delete attribute named attr_name, for object o. Returns -1 113 Called by the repr() built-in function. */ 125 Called by the str() and print() built-in functions. */ 185 Return 0 on success, raise an exception and return -1 on error. 208 function calls of the Python standard library. On 64-bit CPU, it allocates 287 arguments. The C arguments are described using a mkvalue-style format [all …]
|
/external/llvm/test/Feature/ |
D | optnone-opt.ll | 1 ; RUN: opt -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O0 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 5 ; RUN: opt -bb-vectorize -dce -die -loweratomic -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT… 6 …-indvars -licm -loop-deletion -loop-extract -loop-idiom -loop-instsimplify -loop-reduce -loop-rero… 10 ; This test verifies that we don't run target independent IR-level 22 %dec = add nsw i32 %0, -1 36 ; Nothing that runs at -O0 gets skipped. 37 ; OPT-O0-NOT: Skipping pass [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Feature/ |
D | optnone-opt.ll | 1 ; RUN: opt -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O0 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 5 ; RUN: opt -dce -die -gvn-hoist -loweratomic -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-MO… 6 …-indvars -licm -loop-deletion -loop-extract -loop-idiom -loop-instsimplify -loop-reduce -loop-rero… 10 ; This test verifies that we don't run target independent IR-level 22 %dec = add nsw i32 %0, -1 36 ; Nothing that runs at -O0 gets skipped. 37 ; OPT-O0-NOT: Skipping pass [all …]
|
/external/llvm/test/MC/Sparc/ |
D | sparc-synthetic-instructions.s | 1 ! RUN: llvm-mc %s -arch=sparc -show-encoding | FileCheck %s 2 ! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s 10 ! jmp and call are tested in sparc-ctrl-instructions. 26 …! CHECK: ! fixup A - offset: 0, value: %hi(40000), kind: fixup_… 28 …! CHECK: ! fixup A - offset: 0, value: %lo(40000), kind: fixup_… 33 …! CHECK: ! fixup A - offset: 0, value: %hi(32768), kind: fixup_… 37 ! CHECK: sethi %hi(268431360), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 38 …! CHECK: ! fixup A - offset: 0, value: %hi(268431360), kind: fix… 39 set 0x0ffff000, %o1 41 ! CHECK: sethi %hi(268433408), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Sparc/ |
D | sparc-synthetic-instructions.s | 1 ! RUN: llvm-mc %s -arch=sparc -show-encoding | FileCheck %s 2 ! RUN: llvm-mc %s -arch=sparcv9 -show-encoding | FileCheck %s 10 ! jmp and call are tested in sparc-ctrl-instructions. 26 …! CHECK: ! fixup A - offset: 0, value: %hi(40000), kind: fixup_… 28 …! CHECK: ! fixup A - offset: 0, value: %lo(40000), kind: fixup_… 33 …! CHECK: ! fixup A - offset: 0, value: %hi(32768), kind: fixup_… 37 ! CHECK: sethi %hi(268431360), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] 38 …! CHECK: ! fixup A - offset: 0, value: %hi(268431360), kind: fix… 39 set 0x0ffff000, %o1 41 ! CHECK: sethi %hi(268433408), %o1 ! encoding: [0x13,0b00AAAAAA,A,A] [all …]
|
/external/llvm/test/CodeGen/SPARC/ |
D | atomics.ll | 1 ; RUN: llc < %s -march=sparcv9 -verify-machineinstrs | FileCheck %s 3 ; CHECK-LABEL: test_atomic_i8 6 ; CHECK: ldub [%o1] 19 ; CHECK-LABEL: test_atomic_i16 22 ; CHECK: lduh [%o1] 35 ; CHECK-LABEL: test_atomic_i32 38 ; CHECK: ld [%o1] 51 ; CHECK-LABEL: test_atomic_i64 54 ; CHECK: ldx [%o1] 71 ; CHECK-LABEL: test_cmpxchg_i8 [all …]
|
D | basictest.ll | 1 ; RUN: llc < %s -march=sparc | FileCheck %s 6 ; CHECK-LABEL: test0: 14 %B = xor i32 %A, -1 16 ; CHECK-LABEL: test1: 17 ; CHECK: xnor %o0, %o1, %o0 21 %A = xor i32 %X, -1 24 ; CHECK-LABEL: test2: 25 ; CHECK: xnor %o0, %o1, %o0 28 ; CHECK-LABEL: store_zero: 30 ; CHECK: st %g0, [%o1+4] [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Mips/ |
D | atomic64.ll | 2 ; RUN: llc -mtriple=mips64el-unknown-linux-gnu --disable-machine-licm -mcpu=mips4 -relocation-model… 3 ; RUN: FileCheck %s -check-prefix=MIPS4 4 ; RUN: llc -mtriple=mips64el-unknown-linux-gnu --disable-machine-licm -mcpu=mips64 -relocation-mode… 5 ; RUN: FileCheck %s -check-prefix=MIPS64 6 ; RUN: llc -mtriple=mips64el-unknown-linux-gnu --disable-machine-licm -mcpu=mips64r2 -relocation-mo… 7 ; RUN: FileCheck %s -check-prefix=MIPS64R2 8 ; RUN: llc -mtriple=mips64el-unknown-linux-gnu --disable-machine-licm -mcpu=mips64r6 -relocation-mo… 9 ; RUN: FileCheck %s -check-prefix=MIPS64R6 10 ; RUN: llc -mtriple=mips64-unknown-linux-gnu -O0 -mcpu=mips64r6 -relocation-model=pic -verify-machi… 11 ; RUN: FileCheck %s -check-prefix=MIPS64R6O0 [all …]
|
/external/mesa3d/src/mesa/sparc/ |
D | xform.S | 9 * UPDATE: Trying this now in sparc_matrix.h -DaveM_990624 13 * we just load the matrix into f16-->f31 before the calls 21 /* Solaris requires this for 64-bit. */ 67 LDMATRIX_0_1_2_3_12_13_14_15(%o1) 72 clr %o1 80 add %o1, 2, %o1 ! IEU0 82 fmuls %f0, M0, %f1 ! FGM Group 1-cycle stall on %f0 106 cmp %o1, %o2 ! IEU1 110 cmp %o1, %g3 115 fmuls %f0, M0, %f1 ! FGM Group 1-cycle stall on %f0 [all …]
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | hlsl.targetStruct2.frag.out | 5 … Function Definition: @main(struct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector o… 8 0:12 'po' ( out 4-component vector of float) 10 0:14 move second child to first child ( temp 4-component vector of float) 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… 15 0:? Construct vec4 ( temp 4-component vector of float) 29 0:15 move second child to first child ( temp 4-component vector of float) 30 0:15 o2: direct index for structure ( temp 4-component vector of float) 31 0:15 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector… 39 0:16 move second child to first child ( temp 4-component vector of float) [all …]
|
D | hlsl.targetStruct1.frag.out | 5 … Function Definition: @main(struct-PSInput-f1-u11;vf4; ( temp structure{ temp 4-component vector o… 8 0:12 'po' ( out 4-component vector of float) 10 0:14 move second child to first child ( temp 4-component vector of float) 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… 15 0:? Construct vec4 ( temp 4-component vector of float) 29 0:15 move second child to first child ( temp 4-component vector of float) 30 0:15 o2: direct index for structure ( temp 4-component vector of float) 31 0:15 'pso' ( temp structure{ temp 4-component vector of float o1, temp 4-component vector… 39 0:16 move second child to first child ( temp 4-component vector of float) [all …]
|
D | hlsl.gatherRGBA.offsetarray.dx10.frag.out | 6 0:33 Function Definition: @main( ( temp structure{ temp 4-component vector of float Color, temp f… 10 0:40 move second child to first child ( temp 4-component vector of float) 11 0:40 'txval001' ( temp 4-component vector of float) 12 0:40 textureGatherOffset ( temp 4-component vector of float) 13 0:40 Construct combined texture-sampler ( temp sampler2DArray) 16 0:40 c3: direct index for structure ( uniform 3-component vector of float) 17 …-component vector of float c2, uniform 3-component vector of float c3, uniform 4-component vecto… 20 0:40 o2: direct index for structure ( uniform 2-component vector of int) 21 …-component vector of float c2, uniform 3-component vector of float c3, uniform 4-component vecto… 27 0:41 move second child to first child ( temp 4-component vector of int) [all …]
|
/external/ltp/runtest/ |
D | ltp-aio-stress.part1 | 1 #DESCRIPTION:ltp A-sync IO Stress IO tests 3 # aio-stress [-s size] [-r size] [-a size] [-d num] [-b num] 4 # [-i num] [-t num] [-c num] [-C size] [-nxhlvOS ] 6 # -a size in KB at which to align buffers 7 # -b max number of iocbs to give io_submit at once 8 # -c number of io contexts per file 9 # -C offset between contexts, default 2MB 10 # -s size in MB of the test file(s), default 1024MB 11 # -r record size in KB used for each io, default 64KB 12 # -d number of pending aio requests for each file, default 64 [all …]
|