Home
last modified time | relevance | path

Searched full:one (Results 1 – 25 of 330) sorted by relevance

12345678910>>...14

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_private.cpp293 SetFrozenFunction(thread, prototype, "add", ContainersArrayList::Add, FuncLength::ONE); in InitializeArrayList()
297 SetFrozenFunction(thread, prototype, "has", ContainersArrayList::Has, FuncLength::ONE); in InitializeArrayList()
300 ContainersArrayList::IncreaseCapacityTo, FuncLength::ONE); in InitializeArrayList()
303 …tFrozenFunction(thread, prototype, "getIndexOf", ContainersArrayList::GetIndexOf, FuncLength::ONE); in InitializeArrayList()
305 …unction(thread, prototype, "getLastIndexOf", ContainersArrayList::GetLastIndexOf, FuncLength::ONE); in InitializeArrayList()
306 …nFunction(thread, prototype, "removeByIndex", ContainersArrayList::RemoveByIndex, FuncLength::ONE); in InitializeArrayList()
307 SetFrozenFunction(thread, prototype, "remove", ContainersArrayList::Remove, FuncLength::ONE); in InitializeArrayList()
311 SetFrozenFunction(thread, prototype, "sort", ContainersArrayList::Sort, FuncLength::ONE); in InitializeArrayList()
326 ContainersArrayList::GetIteratorObj, FuncLength::ONE); in InitializeArrayList()
342 …unction(thread, arrayListIteratorPrototype, "next", JSAPIArrayListIterator::Next, FuncLength::ONE); in InitializeArrayListIterator()
[all …]
/arkcompiler/runtime_core/tests/regression/
Dfcmp.pa18 movi.64 v0, 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
22 fldai.64 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
27 fldai.64 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
28 movi.64 v0, 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
35 movi.64 v0, 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
39 fldai.64 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
44 fldai.64 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
45 movi.64 v0, 0x7FFFFFFFFFFFFFFF # One of valid quiet NaN values as per IEEE 754
/arkcompiler/runtime_core/verification/models/contexts_merge/
Djava_typing.als19 one sig Top extends Type {} { no Top.~@subtypes }
20 one sig Bot extends Type {} { no Bot.@subtypes }
23 one sig Object extends Type {}
24 one sig NullType extends Type {}
41 one sig Null extends Value {} { type = NullType}
43 sig Register {holds: one Value, type: Type}
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins.cpp247 …iltinConstructor(env, objFuncPrototype, Object::ObjectConstructor, "Object", FunctionLength::ONE)); in Initialize()
382 SetFunction(env, globalObject, "eval", Global::NotSupportEval, FunctionLength::ONE); in InitializeGlobalObject()
383 SetFunction(env, globalObject, "isFinite", Global::IsFinite, FunctionLength::ONE); in InitializeGlobalObject()
384 SetFunction(env, globalObject, "isNaN", Global::IsNaN, FunctionLength::ONE); in InitializeGlobalObject()
385 SetFunction(env, globalObject, "decodeURI", Global::DecodeURI, FunctionLength::ONE); in InitializeGlobalObject()
386 SetFunction(env, globalObject, "encodeURI", Global::EncodeURI, FunctionLength::ONE); in InitializeGlobalObject()
387 …Function(env, globalObject, "decodeURIComponent", Global::DecodeURIComponent, FunctionLength::ONE); in InitializeGlobalObject()
388 …Function(env, globalObject, "encodeURIComponent", Global::EncodeURIComponent, FunctionLength::ONE); in InitializeGlobalObject()
423 InitializeCtor(env, funcFuncPrototypeObj, funcFunc, "Function", FunctionLength::ONE); in InitializeFunction()
449 …tFunction(env, funcFuncPrototypeObj, "bind", Function::FunctionPrototypeBind, FunctionLength::ONE); in InitializeFunction()
[all …]
/arkcompiler/runtime_core/verification/models/typesystem/
Dark_typesystem.als29 variance: one Variance,
30 type: one Type
38 // to avoid higher-order relations, using one level of
65 // one type per one pair sort->params
66 all t: Type | one universe.t
68 all t: Type | one universe.sort[t]
69 all t: Type | one universe.params[t]
149 private one sig TestTypeSystem {
/arkcompiler/runtime_core/docs/
D2022-08-18-isa-changelog.md14 …of ecmascript specific opcodes, such that most of the bytecode opcode can be encoded with one byte.
23 As we merge some "define-function" opcodes as one opcode, in function we add one field which record…
38 …y ask that all methodId, stringId and literalarrayId in a method should be put in one index header.
39 As we use 16-bit to encode methodId, stringId and literalarrayId, the number of these Ids in one me…
Dglossary.md44 * **Card table** used for marking cards. In general, it has one bit or byte (a byte used to
45 improve performance of GC barrier) for one card.
71 (one is empty and one used for allocation) and we just copy objects from one space to another
/arkcompiler/runtime_core/verification/util/tests/
Denum_tag_test.cpp24 enum class Numbers { ONE, TWO, THREE, FOUR, FIVE }; enumerator
32 …using EnumTag5 = TagForEnum<Numbers, Numbers::ONE, Numbers::TWO, Numbers::THREE, Numbers::FOUR, Nu… in TEST_F()
39 using EnumTag3 = TagForEnum<Numbers, Numbers::ONE, Numbers::TWO, Numbers::THREE>; in TEST_F()
44 EXPECT_EQ(EnumTag3::GetValueFor(0), Numbers::ONE); in TEST_F()
Dsaturated_enum_test.cpp24 enum class Numbers { ONE, TWO, THREE, FOUR, FIVE }; enumerator
28 SaturatedEnum<Numbers, Numbers::FOUR, Numbers::THREE, Numbers::TWO, Numbers::ONE> s_enum; in TEST_F()
29 EXPECT_EQ(s_enum, Numbers::ONE); in TEST_F()
36 EXPECT_TRUE(s_enum[Numbers::ONE]); in TEST_F()
Denum_array_test.cpp24 enum class Numbers { ONE, TWO, THREE, FOUR, FIVE }; enumerator
32 …EnumArray<int, Numbers, Numbers::ONE, Numbers::TWO, Numbers::THREE, Numbers::FOUR, Numbers::FIVE> … in TEST_F()
37 EXPECT_EQ(en_arr[Numbers::ONE], 0); in TEST_F()
/arkcompiler/ets_runtime/test/aottest/class_method_signature/
Dclass_method_signature.ts18 // one signature but no body
25 return "test one signature but no body";
32 // multi-signatures but one body
45 return "test multi-signatures but one body";
Dexpect_output.txt14 test one signature but no body
16 test multi-signatures but one body
/arkcompiler/runtime_core/scripts/third-party-lists/
Dpublic18 # * One component record per line
23 # ** commit_type should be one of: branch, tag, commit
26 # ** patch_mode should be one of: no_patches, with_patches
27 # ** submodule_mode should be one of: no_submodules, with_submodules:submodule1:submodule2:...
/arkcompiler/runtime_core/isa/
Dasserts.rb35 assert('Non-prefixed instruction opcodes and prefixes should fit one byte') do
47 assert('All instructions for a prefix should fit one byte') do
109 insns.map { |insn| insn.operands.map(&:name) }.uniq.one?
157 assert('Operand type should be one of none, ref, u1, u2, i8, u8, i16, u16, i32, u32, b32, i64, u64,…
164 assert('Instruction should have not more than one destination') do
171 assert('Instruction should have not more than one ID operand') do
182 registers.empty? || registers.map(&:width).uniq.one?
/arkcompiler/runtime_core/runtime/tests/
Dallocator_test_base.h175 * \brief Allocate with one alignment
176 * @tparam MIN_ALLOC_SIZE - minimum possible size for one allocation
177 * @tparam MAX_ALLOC_SIZE - maximum possible size for one allocation
190 * @tparam MIN_ALLOC_SIZE - minimum possible size for one allocation
191 * @tparam MAX_ALLOC_SIZE - maximum possible size for one allocation
192 * @tparam LOG_ALIGN_MIN_VALUE - minimum possible alignment for one allocation
193 * @tparam LOG_ALIGN_MAX_VALUE - maximum possible alignment for one allocation
219 * and one in the middle; call iteration over free pools
227 * @tparam MIN_ALLOC_SIZE - minimum possible size for one allocation
228 * @tparam MAX_ALLOC_SIZE - maximum possible size for one allocation
[all …]
/arkcompiler/runtime_core/compiler/docs/
Dreg_alloc_graph_coloring_doc.md18 …perties of Chordal graph is that: its max-clique value equals to Chromatic one; there are exist Pe…
31 Using ordering of nodes by MCS or LexBFS (that is reverse PEO), one by one is colored by a Greedy c…
32 …so it always color consequently nodes of the same clique, or start another one. This way we don’t …
47 This algorithm traversing nodes of IG one by one in order provided by LexBFS algorithm (that is rev…
Daot_cha.md12 …ted by a string which is written into AOT file and compared with runtime's one during AOT file loa…
64 Since the AOT file can be compiled on one host system and executed on different target, we need an …
82 For JIT compiler steps 2-3-4 is merged into one, because it can obtain the index of method in virtu…
90 The usage of class hierarchy may help AOT compiler to squash 2-3-4 into one step as JIT-compiler do…
/arkcompiler/ets_runtime/test/aottest/framestatesphi/
Dframestatesphi.ts20 one = 1;
26 this.choice = x ? this.one : this.g();
/arkcompiler/runtime_core/tests/verifier-tests/
Dcflow_jump_from_exc_handler_to_exc_handler.pa17 # direct jump from one handler to another
35 # direct jump from one handler to another
Dcflow_fallthrough_from_exc_handler_to_exc_handler.pa17 # fallthrough from one handler to another
35 # direct jump from one handler to another
/arkcompiler/runtime_core/runtime/include/
Dloadable_agent.h69 // (e.g. there won't be two threads that found no instance and tried to create a new one). in LoadInstance()
85 // This mutex is needed to be sure that there is only one library at a given point of time in LoadInstance()
86 ….g. a new instance initialization won't be performed earlier than deinitialization of the old one). in LoadInstance()
/arkcompiler/ets_runtime/test/moduletest/multiargs/
Dmultiargs.js31 function one(x) function
58 one(123456789)
/arkcompiler/runtime_core/verification/
Dmessages.yaml156 …${reg} is of wrong type: '${reg_type}'. Expected a subtype of one from ${target_types}. Compatible…
192 Wrong type of array elements '${type}'. Expected one of ${expected_types}.
231 Field type is not expected one. Field is '${field}'.
321 …umulator type '${acc_type}' is always a subtype of '${type}'. Result of 'isinstance' is always one.
376 … type is '${formal_type}' but actual is '${actual_type}'. Actual type is inexact one, it may be one
378 …register, like in one path type is u16, in another - i32. It is not an error, but there may be pot…
423 Wrong type of accumulator '${acc_type}'. Expected one of ${expected_types}.
430 …Accumulator type '${acc_type}' does not exactly match array element type. Expected one of ${expect…
/arkcompiler/runtime_core/cmake/
DREADME.md43 …ng clang-format target (`make clang_format_opt_opt.cpp`) or the clang-tidy one (`make clang_tidy_o…
44 To check code-style through just one check-system - use `make clang_tidy` or `make clang_format`.
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dts_type_parser.h25 * can only record GlobalTSTypeRef::MAX_LOCAL_ID types in one record, all types outside
28 * 1. Import types with module request that does not point to one abc file
29 * 2. Import types with module request that point to one abc file which is generated by JS

12345678910>>...14