Home
last modified time | relevance | path

Searched full:integer (Results 1 – 25 of 727) sorted by relevance

12345678910>>...30

/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DGlobal.ets29 * Parses integer number from `String` with specified radix
40 * Parses integer number from `String` with specified radix
51 * Parses integer number from `String`
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 …]
/arkcompiler/runtime_core/static_core/plugins/ets/doc/spec/
D11_enums.rst68 is set implicitly to a numeric value (see :ref:`Enumeration Integer Values`).
70 A compile-time error occurs if ``integer`` and ``string`` type enumeration
92 integer
96 .. _Enumeration Integer Values:
98 Enumeration Integer Values
104 The integer value of an *enum* constant is set implicitly if an enumeration
107 A constant expression of type ``int``---a signed 32-bit integer (see
108 :ref:`Integer Types and Operations` for details)---can be used to set
112 enumeration integer value
113 integer value
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/02.array_creation_expressions/
Dexpr_n.params.yaml17 let v: number[] = new number[false] // CTE: dimension is not convertible to integer type
20 let v: number[] = new number[true] // CTE: dimension is not convertible to integer type
23 … let v: number[] = new number[new Object()] // CTE: dimension is not convertible to integer type
26 … let v: number[] = new number[new Error()] // CTE: dimension is not convertible to integer type
29 …t v: number[][] = new number[null][undefined] // CTE: dimension is not convertible to integer type
32 …umber[][] = new number[new Boolean(false)][1] // CTE: dimension is not convertible to integer type
35 …let v: number[][] = new number["abc"]["def"] // CTE: dimension is not convertible to integer type
/arkcompiler/runtime_core/compiler/optimizer/ir/
Dinstructions.yaml55 …description: Compare two integer or reference values according to condition code(for reference onl…
61 description: Compare two float or integer values.
205 i8: signed 8-bit integer
206 i16: signed 16-bit integer
207 i32: signed 32-bit integer
208 i64: signed 64-bit integer
209 u8: unsigned 8-bit integer
210 u16: unsigned 16-bit integer
211 u32: unsigned 32-bit integer
212 u64: unsigned 64-bit integer
[all …]
/arkcompiler/ets_frontend/ts2panda/src/base/
DtypeSystem.ts259 summaryLiterals.push(new Literal(LiteralTag.INTEGER, definedTypeNum));
265 summaryLiterals.push(new Literal(LiteralTag.INTEGER, this.anonymousRedirect.length));
459 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, L2Type.CLASS));
460 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, this.modifier));
463 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, this.implementsHeritages.length));
483 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, transferredTarget.size));
487 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, typeInfo[1])); // accessFlag
488 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, typeInfo[2])); // readonly
495 classTypeLiterals.push(new Literal(LiteralTag.INTEGER, transferredTarget.size));
523 classInstLiterals.push(new Literal(LiteralTag.INTEGER, L2Type.CLASSINST));
[all …]
/arkcompiler/ets_runtime/ecmascript/ts_types/tests/
Dts_type_parser_test.cpp97 std::vector<panda_file::LiteralTag> classTags { panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
98 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
100 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
101 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
102 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
103 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
106 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
107 panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
108 panda_file::LiteralTag::INTEGER }; in HWTEST_F_L0()
178 std::vector<panda_file::LiteralTag> functionTags { panda_file::LiteralTag::INTEGER, in HWTEST_F_L0()
[all …]
/arkcompiler/runtime_core/static_core/irtoc/lang/
Dregmask.rb50 raise "RegMask is initialized with wrong type: #{value.class}" unless value.is_a?(Integer)
68 raise "RegMask is initialized with wrong type: #{value.class}" unless value.is_a?(Integer)
74 raise "Wrong `position` type" unless position.is_a? Integer
84 raise "Wrong `position` type" unless position.is_a? Integer
94 elsif other.is_a? Integer
112 elsif other.is_a? Integer
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
Dx64_abi.cpp26 /* integer registers */ in IsAvailableReg()
49 /* integer registers */ in IsCalleeSavedReg()
72 /* integer registers */ in IsParamReg()
95 /* integer registers */ in IsSpillReg()
118 /* integer registers */ in IsExtraSpillReg()
/arkcompiler/runtime_core/static_core/tests/cts-generator/cts-template/
Du32toi64.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
67 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du64tou1.yaml18 title: Conversions from integer types to u1
20 Conversion from integer types to u1 obeys the following rules.
21 If converted integer is not equal to zero, the result is 1.
68 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du64tou32.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
67 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du32tou8.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
67 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du64toi32.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
72 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du32toi16.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
72 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du32toi8.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
72 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Di64tou1.yaml18 title: Conversions from integer types to u1
20 Conversion from integer types to u1 obeys the following rules.
21 If converted integer is not equal to zero, the result is 1.
76 …nt values (objects, strings, types, 64-bit floating point values, 32-bit integer values) and invok…
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Du64tou1.yaml18 title: Conversions from integer types to u1
20 Conversion from integer types to u1 obeys the following rules.
21 If converted integer is not equal to zero, the result is 1.
67 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Di64tou1.yaml18 title: Conversions from integer types to u1
20 Conversion from integer types to u1 obeys the following rules.
21 If converted integer is not equal to zero, the result is 1.
75 …nt values (objects, strings, types, 64-bit floating point values, 32-bit integer values) and invok…
Du32toi64.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
66 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du32tou8.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
66 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du32toi8.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
71 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du32tou1.yaml18 title: Conversions from integer types to u1
20 Conversion from integer types to u1 obeys the following rules.
21 If converted integer is not equal to zero, the result is 1.
67 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du32tou16.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
66 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du64toi32.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
71 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…
Du64tou32.yaml18 title: Integer truncations and extensions.
20 Perform specified integer extension or truncations of accumulator.
21 …If extension bytecode treats its source as unsigned integer, the value is zero-extended to destina…
66 …nt values (objects, strings, types, 64-bit floating point values, 64-bit integer values) and invok…

12345678910>>...30