Home
last modified time | relevance | path

Searched full:where (Results 1 – 25 of 407) sorted by relevance

12345678910>>...17

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/
Dptr_list_ref.h396 void insert(const_iterator where, pointer value) in insert() argument
398 if (where == const_iterator(this->first)) { in insert()
400 } else if (where == this->cend()) { in insert()
403 …// `where` stands for the position, however we made the data and node combined, so a const_cast is… in insert()
404 auto *ptr = const_cast<T *>(&*where); in insert()
412 void insert(const_pointer where, pointer value) in insert() argument
414 this->insert(const_iterator(where), value); in insert()
417 void insertAfter(const_iterator where, pointer value) in insertAfter() argument
419 if (where == const_iterator(nullptr)) { in insertAfter()
421 } else if (where == const_iterator(this->last)) { in insertAfter()
[all …]
/arkcompiler/runtime_core/libabckit/include/c/isa/
Disa_dynamic.h362 * @param [ in ] graph - Graph where instruction will be inserted.
374 * @param [ in ] graph - Graph where instruction will be inserted.
384 * @param [ in ] graph - Graph where instruction will be inserted.
394 * @param [ in ] graph - Graph where instruction will be inserted.
404 * @param [ in ] graph - Graph where instruction will be inserted.
414 * @param [ in ] graph - Graph where instruction will be inserted.
424 * @param [ in ] graph - Graph where instruction will be inserted.
434 * @param [ in ] graph - Graph where instruction will be inserted.
444 * @param [ in ] graph - Graph where instruction will be inserted.
454 * @param [ in ] graph - Graph where instruction will be inserted.
[all …]
/arkcompiler/ets_runtime/ecmascript/debugger/
Djs_debugger_interface.h57 * Thread where debugger statement hits is paused until continue or step event being received
58 … * @param thread Identifier of the thread where debugger statement hits. Now the callback is called
65 … * \brief called by the ecmavm when breakpoint hits. Thread where breakpoint hits is stopped until
67 …* @param thread Identifier of the thread where breakpoint hits. Now the callback is called in the …
/arkcompiler/runtime_core/docs/bc_verification/
Dtypes_n_values.md24 - Sorts are denoted by some `Literals`. Where `Literal` is a word composed of characters from set `…
33 value of the particular type may be used in the place where other type is expected.
36 place, where a value of type `B()` is expected, value of type `A()` may be safely used.
103 `Array(+T)` - where T is type of elements.
/arkcompiler/runtime_core/static_core/docs/bc_verification/
Dtypes_n_values.md24 - Sorts are denoted by some `Literals`. Where `Literal` is a word composed of characters from set `…
33 value of the particular type may be used in the place where other type is expected.
36 place, where a value of type `B()` is expected, value of type `A()` may be safely used.
103 `Array(+T)` - where T is type of elements.
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/04.class_implementation_clause/
Dsuperinterface_with_same_parameters.sts18 … of the parameterized class type C<T1,...,Tn>, where Ti (1 ≤ i ≤ n) is a type, is D<U1 θ,...,Uk θ>…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/02.superinterfaces_and_subinterfaces/
Dsuperinterface_with_same_parameters.sts18 …he parameterized interface type I<T1,...,Tn>, where Ti(1 in) is a type, are all types J<U1,...,Uk …
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/09.classes/01.class_declaration/03.class_extension_clause/
Dsuperclass_with_same_parameters.sts18 … of the parameterized class type C<T1,...,Tn>, where Ti (1 ≤ i ≤ n) is a type, is D<U1 θ,...,Uk θ>…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/gc/stress/
Dtest_gc_old_longrun.sts54 private static where : int = 0;
143 TestGCOld.trees[TestGCOld.where++] = TestGCOld.getTree(TestGCOld.treeHeight);
144 if (TestGCOld.where == TestGCOld.trees.length) TestGCOld.where = 0;
149 TestGCOld.replaceTree(TestGCOld.trees[TestGCOld.where++]!, newTree!);
150 if (TestGCOld.where == TestGCOld.trees.length) TestGCOld.where = 0;
Dtest_gc_old.sts54 private static where : int = 0;
143 TestGCOld.trees[TestGCOld.where++] = TestGCOld.getTree(TestGCOld.treeHeight);
144 if (TestGCOld.where == TestGCOld.trees.length) TestGCOld.where = 0;
149 TestGCOld.replaceTree(TestGCOld.trees[TestGCOld.where++]!, newTree!);
150 if (TestGCOld.where == TestGCOld.trees.length) TestGCOld.where = 0;
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/
Dreadme.md144 - `--test-root`/`general.test-root` - the folder where test suite is located. It must exist befor…
145 - `--list-root`/`general.list-root` - the folder where test lists are located. It must exist befo…
147 where tests are generated from templates. For Hermes and Test262 it's a path where tests transforme…
163 - `opt-level` is `OLx`, where `x` is opt-level, usually 0 or 2.
187 - from cli one of: `--test-list-arch=ARCH`, where ARCH is one of `amd64`, `arm32`, `arm64`
190 - from cli on of: `--test-list-san=SAN`, where SAN in one of `asan` or `tsan`
193 > **Note**: these options just specifies what test lists to load and do not affect on how and where
212 - `--detailed-report-file FILE`/`report.detailed-report-file: FILE` - specifies file/path where the…
317 where:
336 - SOURCE_PATH - path where template files are located. URunner fills this parameter with TEST_ROOT …
[all …]
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DBuiltinArrayAlgorithms.sts32 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
70 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
85 …* Upper bound is an index of a first element, where (key < element) is true. If no such element is…
123 …* Upper bound is an index of a first element, where (key < element) is true. If no such element is…
198 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
236 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
251 …* Upper bound is an index of a first element, where (key < element) is true. If no such element is…
289 …* Upper bound is an index of a first element, where (key < element) is true. If no such element is…
364 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
402 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
[all …]
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dbuiltin_type_id.h93 * In case where AOT does not load lib_ark_builtins.d.ts, builtin objects will be assigned localIds
94 * according to the following enum order. For example, the GT of FUNCTION will be (1, 21), where 1
98 * In case where AOT has loaded lib_ark_builtins.d.ts, builtin objects will be assigned localIds in
/arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/
DArray_builtin_algorithms.sts.j236 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
74 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
89 …* Upper bound is an index of a first element, where (key < element) is true. If no such element is…
127 …* Upper bound is an index of a first element, where (key < element) is true. If no such element is…
142 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
180 …* Lower bound is an index of a first element, where (element < key) is false. If no such element i…
195 …* Upper bound is an index of a first element, where (key < element) is true. If no such element is…
233 …* Upper bound is an index of a first element, where (key < element) is true. If no such element is…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/02.generic_instantiations/01.type_arguments/type_arguments_of_parameterized_declarations/
Dclass_variance.sts19 …(or a wildcard with an upper bound) is signified by the following syntax, where T is a typeReferen…
22 … (or a wildcard with a lower bound) is signified by the following syntax, where T is a typeReferen…
Dclass_variance_neg2.sts19 …(or a wildcard with an upper bound) is signified by the following syntax, where T is a typeReferen…
22 … (or a wildcard with a lower bound) is signified by the following syntax, where T is a typeReferen…
Dinterface_variance.sts19 …(or a wildcard with an upper bound) is signified by the following syntax, where T is a typeReferen…
22 … (or a wildcard with a lower bound) is signified by the following syntax, where T is a typeReferen…
Dinterface_variance_2.sts19 …(or a wildcard with an upper bound) is signified by the following syntax, where T is a typeReferen…
22 … (or a wildcard with a lower bound) is signified by the following syntax, where T is a typeReferen…
/arkcompiler/runtime_core/static_core/compiler/docs/
Descape_analysis.md12 … also capable of finding execution paths where an object is not escaping and move its allocation t…
37 …ribed above to remove virtual objects allocations and insert object's materialization where needed.
40 * Materialize virtual objects where needed;
/arkcompiler/runtime_core/static_core/plugins/ets/compiler/docs/
Dinterop_intrinsic_opt_doc.md37 2. Consider a graph `G` where vertices correspond to block starts not contained in scopes, and vert…
85 For each tuple `(intrinsic id, intrinsic input, scope start)` (where `scope start` is unique) we tr…
87 …osition if it is fully anticipated there and there is a path to end block where it occurs more tha…
89 To reduce number of processed blocks, we traverse only the blocks where `v` is partially anticipate…
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/include/
Dcmpl.h37 uint8 *formalWordsTypetagged; // bit vector where the Nth bit tells whether
44 uint8 *localWordsTypetagged; // bit vector where the Nth bit tells whether
51 uint8 *formalWordsRefCounted; // bit vector where the Nth bit tells whether
58 uint8 *localWordsRefCounted; // bit vector where the Nth bit tells whether
90 uint8 *globalWordsTypetagged; // bit vector where the Nth bit tells whether
95 uint8 *globalWordsRefCounted; // bit vector where the Nth bit tells whether
/arkcompiler/ets_frontend/test/scripts/utils/
Dconfig.yaml17 # where to store your download files
19 # choice download task and decide where to update the image
/arkcompiler/runtime_core/libabckit/tests/clean_scenarios/c_api/dynamic/parameter_check/
DREADME.md11 We want to add parameter check for all implementations of `handle`, where the check logic is that `…
/arkcompiler/runtime_core/libabckit/tests/clean_scenarios/cpp_api/dynamic/parameter_check/
DREADME.md11 We want to add parameter check for all implementations of `handle`, where the check logic is that `…
/arkcompiler/runtime_core/static_core/docs/
Ddeoptimization.md32 The function `Deoptimize` calculates bitecode pc where we should start executing code in the interp…
78 …urn address (LR), we return from the function to the place in interpreter where the method was cal…
84 …FP and LR to values before calling the method and return to compiled code where the method was cal…

12345678910>>...17