Home
last modified time | relevance | path

Searched full:div (Results 1 – 25 of 45) sorted by relevance

12

/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Ddiv.yaml16 - file-name: "div"
24 - sig: div v1:in:i32, v2:in:i32
31 div v0, v1
39 description: Check div with zero and various values.
53 - sig: div v1:in:i32, v2:in:i32
60 div v0, v1
68 description: Check div with +1 and various values.
82 - sig: div v1:in:i32, v2:in:i32
89 div v0, v1
97 description: Check div with -1 and various values.
[all …]
Dfdiv2.yaml169 # Div of +Inf and value
238 # Div of -Inf and value
310 # Div of Inf by Inf
333 # Div of +0.0 and value
391 # Div of -0.0 and value
450 # Div of 1.0 and value
526 # Div of -1.0 and value
603 # Div of -1.0 and value
667 # Div of two values
740 # Div of zero by zero
Dfdiv2.64.yaml169 # Div of +Inf and value
238 # Div of -Inf and value
310 # Div of Inf by Inf
333 # Div of +0.0 and value
391 # Div of -0.0 and value
450 # Div of 1.0 and value
526 # Div of -1.0 and value
603 # Div of -1.0 and value
667 # Div of two values
740 # Div of zero by zero
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DmappedTypeInferenceCircularity.ts23 type HTML = { [K in 'div']: Block<HTML> };
29 h.div(h);
30 AssertType(h.div(h), "{}");
31 AssertType(h.div, "Block<HTML>");
DoverloadOnConstConstraintChecks1.ts29 createElement(tagName: 'div'): Derived2;
37 createElement(tagName: 'div'): Derived2;
DparserOverloadOnConstants1.ts25 createElement(tagName: 'div'): HTMLDivElement;
DconstantOverloadFunction.ts27 function foo(tagName: 'div'): Derived2;
DconstantOverloadFunctionNoSubtypeError.ts27 function foo(tagName: 'div'): Derived2;
/arkcompiler/runtime_core/docs/
DPBC2IR.md80 | fdiv2 | f32 Div |
81 | fdiv2.64 | f64 Div |
84 | div2 | i32 Div |
85 | div2.64 | i64 Div |
88 | divu2 | u32 Div |
89 | divu2.64 | u64 Div |
90 | modu2 | u32 Div |
101 | divi | i64 Constant, i32 Div |
112 | div | i32 Div |
/arkcompiler/runtime_core/compiler/docs/
Dvn_doc.md92 9.f64 Div v3, v2 -> (v14)
94 11.f64 Div v3, v2 -> (v14)
122 9.f64 Div v3, v2 -> (v14, v14)
124 11.f64 Div v3, v2
149 9.f64 Div v3, v2 -> (v14, v14)
/arkcompiler/ets_runtime/test/aottest/new/
Dnew.ts33 div(v1: number[]): number {
37 let d = this.div(p1);
/arkcompiler/ets_runtime/test/aottest/div/
DBUILD.gn16 host_aot_test_action("div") {
/arkcompiler/ets_runtime/test/deopttest/div/
DBUILD.gn16 host_aot_test_action("div") {
/arkcompiler/ets_runtime/test/deopttest/
DBUILD.gn21 "div",
/arkcompiler/runtime_core/tests/cts-assembly/
Dmath-47.pa27 div v0, v1
/arkcompiler/runtime_core/compiler/tests/
Dmove_constants_test.cpp211 INST(27, Opcode::Div).u64().Inputs(1, 0); in TEST_F()
255 INST(27, Opcode::Div).u64().Inputs(1, 0); in TEST_F()
364 INST(12, Opcode::Div).u64().Inputs(1, 0); in TEST_F()
397 INST(12, Opcode::Div).u64().Inputs(1, 0); in TEST_F()
656 INST(4, Opcode::Div).u64().Inputs(0, 1); in TEST_F()
684 INST(4, Opcode::Div).u64().Inputs(0, 1); in TEST_F()
Dvn_test.cpp52 INST(9, Opcode::Div).f64().Inputs(3, 2); in TEST_F()
54 INST(11, Opcode::Div).f64().Inputs(3, 2); in TEST_F()
77 INST(9, Opcode::Div).f64().Inputs(3, 2); in TEST_F()
79 INST(11, Opcode::Div).f64().Inputs(3, 2); in TEST_F()
208 INST(9, Opcode::Div).f64().Inputs(2, 3); in TEST_F()
209 INST(10, Opcode::Div).f64().Inputs(3, 2); in TEST_F()
236 INST(9, Opcode::Div).f64().Inputs(2, 3); in TEST_F()
237 INST(10, Opcode::Div).f64().Inputs(3, 2); in TEST_F()
386 INST(16, Opcode::Div).f64().Inputs(2, 3); in TEST_F()
397 INST(23, Opcode::Div).f64().Inputs(2, 3); in TEST_F()
[all …]
Dir_builder_test.cpp747 INST(2, Opcode::Div).f64().Inputs(0, 1); in TEST_F()
1469 INST(2, Opcode::Div).f32().Inputs(0, 1); in TEST_F()
1495 INST(2, Opcode::Div).f64().Inputs(0, 1); in TEST_F()
2043 INST(4, Opcode::Div).s32().Inputs(0, 3); in TEST_F()
2071 INST(4, Opcode::Div).s64().Inputs(0, 3); in TEST_F()
2155 INST(4, Opcode::Div).u32().Inputs(0, 3); in TEST_F()
2183 INST(4, Opcode::Div).u64().Inputs(0, 3); in TEST_F()
2471 // Checks the build of the div instruction
2472 TEST_F(IrBuilderTest, Div) in TEST_F() argument
2476 div a0, a1 in TEST_F()
[all …]
/arkcompiler/runtime_core/compiler/optimizer/ir_builder/
Dinst_templates.yaml19 % opc = opc[1].capitalize.gsub('Ashr', 'AShr').gsub('Fdiv', 'Div').gsub('Fmod', 'Mod')
24 % opc = inst.stripped_mnemonic =~ /div/ ? 'Div' : 'Mod'
/arkcompiler/runtime_core/disassembler/tests/sources/
Dinstructions.pa121 div v1, v2
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcommon_stubs.h27 V(Div) \
Doperations_stub_builder.h48 …GateRef Div(GateRef glue, GateRef left, GateRef right, ProfileOperation callback = ProfileOperatio…
/arkcompiler/ets_runtime/test/aottest/
DBUILD.gn86 "div",
/arkcompiler/toolchain/build/config/compiler/
DBUILD.gn165 "-Wno-error=sizeof-array-div",
203 "-Wno-error=sizeof-array-div",
/arkcompiler/ets_frontend/testTs/
Dtest-case.patch6225 +var donkey = <div>
6227 +</div>;
6229 +var donkey = <div>
6231 +</div>;
6233 +var donkey = <div>
6235 +</div>;
6237 +var donkey = <div>
6239 +</div>;
6241 +var donkey = <div>
6243 +</div>;
[all …]

12