Home
last modified time | relevance | path

Searched refs:integer (Results 1 – 25 of 206) sorted by relevance

123456789

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/regression/
Dbigint_from_double.sts52 negativeTest("1.234e2", "not an integer");
53 negativeTest("1e-7", "not an integer");
54 negativeTest("0.0035", "not an integer");
55 negativeTest("0.00023e4", "not an integer");
56 negativeTest("+1e-1", "not an integer");
57 negativeTest("-35.42", "not an integer");
58 negativeTest("-3700e-3", "not an integer");
59 negativeTest("-0.039", "not an integer");
60 negativeTest("-0.0485e+3", "not an integer");
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DGlobal.sts29 * Parses integer number from `String` with specified radix
40 * Parses integer number from `String` with specified radix
51 * Parses integer number from `String` with specified radix
305 * Checks if float is similar to an integer value
309 * @returns boolean - true if the argument is similar to an integer value
316 * Checks if Float is similar to an integer value
320 * @returns boolean - true if the argument is similar to an integer value
327 * Checks if double is similar to an integer value
331 * @returns boolean - true if the argument is similar to an integer value
338 * Checks if Double is similar to an integer value
[all …]
DMath.sts213 * Smallest integer greater or equal to `v`
217 * @returns Smallest integer greater or equal to v
233 * @param v 32-bit integer
251 * @param v 32-bit integer
338 * Largest integer less or equal to `v`
342 * @returns Largest integer less or equal to `v`
563 * `v` rounded to nearest integer
567 * @returns `v` rounded to nearest integer
690 * @returns The integer part of a number by removing any fractional digits.
/arkcompiler/runtime_core/static_core/libllvmbackend/
Dutils.cpp26 int64_t integer = -1; in GetMethodIdFromAttr() local
27 [[maybe_unused]] auto error = attr.getValueAsString().getAsInteger(0, integer); in GetMethodIdFromAttr()
29 ASSERT(integer >= 0); in GetMethodIdFromAttr()
30 return integer; in GetMethodIdFromAttr()
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D11_enums.rst74 A :index:`compile-time error` occurs if ``integer`` and ``string`` type
79 of the enumeration constant to integer types or type *string* depends on the
101 integer
113 The integer value of an ``enum`` constant is set implicitly if an enumeration
116 A constant expression of type ``int``---a signed 32-bit integer (see
121 enumeration integer value
122 integer value
125 integer type
D2_lexical.rst431 integer
484 digits can be used to denote an integer literal and improve readability.
487 last symbol of an integer literal.
493 integer
498 declarations, an integer literal can be implicitly converted to another
499 integer type or type ``char`` (see :ref:`Type Compatibility with Initializer`).
502 A :index:`compile-time error` occurs if a non-zero integer literal is
506 integer literal
511 integer literal
567 last symbol of an integer literal.
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/01.evaluation_of_expressions/01.normal_and_abrupt_completion_of_expression_evaluation/
Dae8.sts17 desc: ArithmeticError is thrown by an integer division or integer
Dae6.sts17 desc: ArithmeticError is thrown by an integer division or integer
Dae2.sts17 desc: ArithmeticError is thrown by an integer division or integer
Dae7.sts17 desc: ArithmeticError is thrown by an integer division or integer
Dae1.sts17 desc: ArithmeticError is thrown by an integer division or integer
Dae5.sts17 desc: ArithmeticError is thrown by an integer division or integer
Dae4.sts17 desc: ArithmeticError is thrown by an integer division or integer
Dae3.sts17 desc: ArithmeticError is thrown by an integer division or integer
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/checked/js_call/
Djs_call.js105 integer: 6, property
111 const isIntegerValid = Number(this.integer === 31);
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md11 …tion gates**. A computation gate can do simple things such as adding two integer values, or comple…
43 …tes. They describe the bit width of values, and which type of registers (integer or float) should …
82 * `ARCH` means architecture-related integer type (`INTx` on `x` bits architecture).
321 * **ADD**: returns the sum of its two integer operands.
322 * **SUB**: returns the difference of its two integer operands. It is used to implement the "-" unar…
323 * **MUL**: returns the product of its two integer operands.
324 * **EXP**: returns the first integer operand raised to the power of the second integer operand.
325 * **SDIV**: returns the signed quotient of its two integer operands.
326 * **SREM**: returns the remainder from the signed division of its two integer operands.
327 * **UDIV**: returns the unsigned quotient of its two integer operands.
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DDouble.sts140 * Maximal integer value that can be used as a double without loss of precision
146 * Minimal integer value that can be used as a double without loss of precision
327 * Returns a hash code (integer representation) for this instance
417 * Checks if double is similar to an integer value
421 * @returns true if the argument is similar to an integer value
430 * Checks if the underlying double is similar to an integer value
432 * @returns true if the underlying double is similar to an integer value
440 * Checks if double is a safe integer value
444 * @returns true if the argument is integer ans less than MAX_SAFE_INTEGER
452 * Checks if double is a safe integer value
[all …]
DFloat.sts91 * Maximal integer value that can be used as a float without loss of precision
236 * Returns a hash code (integer representation) for this instance
319 * Checks if float is similar to an integer value
323 * @returns true if the argument is similar to an integer value
331 * Checks if the underlying float is similar to an integer value
333 * @returns true if the underlying float is similar to an integer value
340 * Checks if float is a safe integer value
344 * @returns true if the argument is integer ans less than MAX_SAFE_INTEGER
351 * Checks if float is a safe integer value
353 * @returns true if the underlying float is a safe integer
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/types/
Dremote_object.cpp57 if (auto integer = std::get_if<int32_t>(number)) { in GeneratePreview() local
58 valuePreview.emplace(std::to_string(*integer)); in GeneratePreview()
237 if (auto integer = std::get_if<int32_t>(number)) { in ToJson() local
238 AddProperty(result, "value", *integer); in ToJson()
/arkcompiler/runtime_core/static_core/tests/verifier-tests/
Dbug_2107_2.pa18 # description: 'Perform specified integer extension or truncations of accumulator.
39 # Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer va…
/arkcompiler/runtime_core/tests/verifier-tests/
Dbug_2107_2.pa18 # description: 'Perform specified integer extension or truncations of accumulator.
39 # Load different values (objects, strings, types, 64-bit floating point values, 32-bit integer va…
/arkcompiler/runtime_core/libpandabase/
DREADME.md8 - integer
42 - 5 parameters for integer args: argument name, default value, description, min value, max value
50 - Min value is the number that the integer argument cannot be less than
51 - Max value is the number that the integer argument cannot be greater than
56 - `int` for integer argument
139 - for integer arguments it's possible to define value range
161 In the tail arguments example, `false` is a boolean value, `-1` is integer value and `str1` and `st…
/arkcompiler/runtime_core/static_core/libpandabase/
DREADME.md8 - integer
42 - 5 parameters for integer args: argument name, default value, description, min value, max value
50 - Min value is the number that the integer argument cannot be less than
51 - Max value is the number that the integer argument cannot be greater than
56 - `int` for integer argument
139 - for integer arguments it's possible to define value range
161 In the tail arguments example, `false` is a boolean value, `-1` is integer value and `str1` and `st…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/checked/peepholes/
Dpeepholes.sts65 let v = dynStorage.integer;
89 let v = dynStorage.integer;
146 dynStorage.integer = 31;
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/26.bitwise_and_logical_expressions/01.integer_bitwise_operators/
Dgen.go.txt34 fmt.Println("--- # List of integer " + op1 + " " + op + " operations")

123456789