Home
last modified time | relevance | path

Searched full:division (Results 1 – 25 of 29) sorted by relevance

12

/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Dmod2.64.yaml18 title: Two address integer division and modulo on accumulator
20 … Perform integer division or modulo on accumulator and register and store result into accumulator
43 description: Division by zero causes to exception.
81 description: Division by zero causes to exception.
127 description: Division by zero causes to exception.
173 description: Division by zero causes to exception.
219 description: Division by zero causes to exception.
Dmodu2.64.yaml18 title: Two address integer division and modulo on accumulator
20 … Perform integer division or modulo on accumulator and register and store result into accumulator
44 description: Division by zero causes to exception.
83 description: Division by zero causes to exception.
130 description: Division by zero causes to exception.
177 description: Division by zero causes to exception.
224 description: Division by zero causes to exception.
Ddivu2.64.yaml18 title: Two address integer division and modulo on accumulator
20 … Perform integer division or modulo on accumulator and register and store result into accumulator
44 description: Division by zero causes to exception.
83 description: Division by zero causes to exception.
130 description: Division by zero causes to exception.
177 description: Division by zero causes to exception.
224 description: Division by zero causes to exception.
Ddiv2.yaml18 title: Two address integer division and modulo on accumulator
20 … Perform integer division or modulo on accumulator and register and store result into accumulator
48 description: Division by zero causes to exception.
91 description: Division by zero causes to exception.
142 description: Division by zero causes to exception.
193 description: Division by zero causes to exception.
244 description: Division by zero causes to exception.
Ddivu2.yaml18 title: Two address integer division and modulo on accumulator
20 … Perform integer division or modulo on accumulator and register and store result into accumulator
44 description: Division by zero causes to exception.
83 description: Division by zero causes to exception.
130 description: Division by zero causes to exception.
177 description: Division by zero causes to exception.
224 description: Division by zero causes to exception.
Dmod2.yaml18 title: Two address integer division and modulo on accumulator
20 … Perform integer division or modulo on accumulator and register and store result into accumulator
48 description: Division by zero causes to exception.
91 description: Division by zero causes to exception.
141 description: Division by zero causes to exception.
192 description: Division by zero causes to exception.
243 description: Division by zero causes to exception.
Dmodu2.yaml18 title: Two address integer division and modulo on accumulator
20 … Perform integer division or modulo on accumulator and register and store result into accumulator
44 description: Division by zero causes to exception.
83 description: Division by zero causes to exception.
130 description: Division by zero causes to exception.
177 description: Division by zero causes to exception.
224 description: Division by zero causes to exception.
Ddiv2.64.yaml18 title: Two address integer division and modulo on accumulator
20 … Perform integer division or modulo on accumulator and register and store result into accumulator
43 description: Division by zero causes to exception.
81 description: Division by zero causes to exception.
127 description: Division by zero causes to exception.
173 description: Division by zero causes to exception.
219 description: Division by zero causes to exception.
Dfdiv2.yaml162 description: Division is infinity if any non zero value is divided by zero.
231 description: Division is infinity if any non zero value is divided by zero.
303 Division is NaN if Infinity is divided by Infinity.
443 description: Division is infinity if any non zero value is divided by zero.
519 description: Division is infinity if any non zero value is divided by zero.
733 description: Division is NaN if zero is divided by zero.
Dfdiv2.64.yaml162 description: Division is infinity if any non zero value is divided by zero.
231 description: Division is infinity if any non zero value is divided by zero.
303 Division is NaN if Infinity is divided by Infinity.
443 description: Division is infinity if any non zero value is divided by zero.
519 description: Division is infinity if any non zero value is divided by zero.
733 description: Division is NaN if zero is divided by zero.
Dmodi.yaml19 title: Two address integer division or modulo with immediate on accumulator
21 …Perform two address integer division or modulo on accumulator and immediate and store result into …
Ddivi.yaml19 title: Two address integer division or modulo with immediate on accumulator
21 …Perform two address integer division or modulo on accumulator and immediate and store result into …
Ddiv.yaml18 title: Three address integer division or modulo
19 … description: Perform integer division or modulo on two registers and store result into accumulator
Dmod.yaml18 title: Three address integer division or modulo
19 … description: Perform integer division or modulo on two registers and store result into accumulator
Dfmul2.yaml280 …description: The sign of division or multiplication result is positive if both values have the sam…
331 …description: The sign of division or multiplication result is positive if both values have the sam…
567 …description: The sign of division or multiplication result is positive if both values have the sam…
Dfmul2.64.yaml280 …description: The sign of division or multiplication result is positive if both values have the sam…
331 …description: The sign of division or multiplication result is positive if both values have the sam…
567 …description: The sign of division or multiplication result is positive if both values have the sam…
Dfmod2.yaml266 Division is NaN if Infinity is divided by Infinity.
Dfmod2.64.yaml266 Division is NaN if Infinity is divided by Infinity.
/arkcompiler/runtime_core/tests/cts-assembly/
Dmath-47.pa21 # check ArithmeticException in case of division by zero
/arkcompiler/runtime_core/docs/
Dglossary.md43 * **Card** is a division of memory with some fixed size. Card size usually smaller than a page.
/arkcompiler/runtime_core/compiler/docs/
Dreg_alloc_graph_coloring_doc.md50 As for now search of free color is implemented as a remainder of division by number of colors, to w…
/arkcompiler/ets_runtime/ecmascript/
Djs_bigint.cpp38 static void Division(CString &num, uint32_t conversionToRadix, uint32_t currentRadix, uint32_t &rem… in Division() function
62 Division(newNum, conversionToRadix, currentRadix, remain); in Conversion()
1155 // Similar to the ordinary division calculation, here we use HALFUINT32VALUE as the carry unit in DivideAndRemainder()
1364 THROW_RANGE_ERROR_AND_RETURN(thread, "Division by zero", bigint); in Divide()
1402 THROW_RANGE_ERROR_AND_RETURN(thread, "Division by zero", bigint); in Remainder()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md339 * **SREM**: returns the remainder from the signed division of its two integer operands.
341 * **UREM**: returns the remainder from the unsigned division of its two integer operands.
365 * **FMOD**: returns the remainder from the division of its two floating-point operands.
/arkcompiler/ets_frontend/test262/
Des5_tests.txt125 language/expressions/division/bigint-and-number.js
126 language/expressions/division/bigint-arithmetic.js
127 language/expressions/division/bigint-complex-infinity.js
128 language/expressions/division/bigint-errors.js
129 language/expressions/division/bigint-toprimitive.js
130 language/expressions/division/bigint-wrapped-values.js
6123 language/expressions/division/S11.5.2_A1.js
6124 language/expressions/division/S11.5.2_A2.1_T1.js
6125 language/expressions/division/S11.5.2_A2.1_T2.js
6126 language/expressions/division/S11.5.2_A2.1_T3.js
[all …]
DCI_tests.txt3236 language/expressions/division/S11.5.2_A3_T2.1.js
3237 language/expressions/division/S11.5.2_A4_T5.js
3238 language/expressions/division/S11.5.2_A4_T9.js
3239 language/expressions/division/S11.5.2_A2.4_T2.js
3240 language/expressions/division/S11.5.2_A4_T10.js
3241 language/expressions/division/S11.5.2_A4_T1.1.js
3242 language/expressions/division/S11.5.2_A2.1_T1.js
3243 language/expressions/division/S11.5.2_A3_T1.1.js
3244 language/expressions/division/S11.5.2_A2.3_T1.js
3245 language/expressions/division/S11.5.2_A4_T6.js
[all …]

12