Home
last modified time | relevance | path

Searched refs:diff (Results 1 – 19 of 19) sorted by relevance

/arkcompiler/ets_frontend/es2panda/lexer/token/
DsourceLocation.cpp26 size_t diff = offset - offset_; in AddCol() local
30 ranges.emplace_back(Range {diff}); in AddCol()
36 if (diff == range.byteSize) { in AddCol()
39 ranges.emplace_back(Range {diff}); in AddCol()
88 size_t diff = pos.index - entry.lineStart; in GetLocation() local
91 if (diff < (range.cnt * range.byteSize)) { in GetLocation()
92 col += (diff / range.byteSize) ; in GetLocation()
96 diff -= range.cnt * range.byteSize; in GetLocation()
/arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/
Dcompare.py77 diff = old_size - new_size variable
79 "new_size": new_size, "diff": diff}
80 if diff > 0:
84 elif diff < 0:
/arkcompiler/ets_frontend/testTs/
Dtest-case.patch713 diff --git a/tests/cases/conformance/ambient/ambientDeclarations.ts b/tests/cases/conformance/ambie…
723 diff --git a/tests/cases/conformance/ambient/ambientDeclarationsPatterns/ambientDeclarationsPattern…
741 diff --git a/tests/cases/conformance/ambient/ambientDeclarationsPatterns/declarations.d.ts b/tests/…
765 diff --git a/tests/cases/conformance/ambient/ambientInsideNonAmbient.ts b/tests/cases/conformance/a…
784 diff --git a/tests/cases/conformance/ambient/ambientInsideNonAmbientExternalModule.ts b/tests/cases…
797 diff --git a/tests/cases/conformance/ambient/ambientShorthand_merging/ambientShorthand_merging.ts b…
809 diff --git a/tests/cases/conformance/ambient/ambientShorthand_merging/declarations1.d.ts b/tests/ca…
817 diff --git a/tests/cases/conformance/ambient/ambientShorthand_merging/declarations2.d.ts b/tests/ca…
828 diff --git a/tests/cases/conformance/ambient/ambientShorthand_reExport/ambientShorthand_reExport.ts…
839 diff --git a/tests/cases/conformance/ambient/ambientShorthand_reExport/declarations.d.ts b/tests/ca…
[all …]
/arkcompiler/runtime_core/scripts/
Drun-clang-format39 diff -u --color=auto \
/arkcompiler/ets_runtime/ecmascript/compiler/
Dframe_states.cpp146 bool FrameStateBuilder::MergeIntoPredBC(uint32_t predPc, size_t diff) in MergeIntoPredBC() argument
160 predValue = TryGetLoopExitValue(predValue, diff); in MergeIntoPredBC()
239 auto diff = LoopExitCount(predBb, bb); in MergeIntoPredBB() local
240 target = TryGetLoopExitValue(target, diff); in MergeIntoPredBB()
254 auto diff = LoopExitCount(predBb, bb); in MergeIntoPredBB() local
255 target = TryGetLoopExitValue(target, diff); in MergeIntoPredBB()
591 GateRef FrameStateBuilder::TryGetLoopExitValue(GateRef value, size_t diff) in TryGetLoopExitValue() argument
593 if ((gateAcc_.GetOpCode(value) != OpCode::LOOP_EXIT_VALUE) || (diff == 0)) { in TryGetLoopExitValue()
596 for (size_t i = 0; i < diff; ++i) { in TryGetLoopExitValue()
Dframe_states.h117 bool MergeIntoPredBC(uint32_t predPc, size_t diff);
120 GateRef TryGetLoopExitValue(GateRef value, size_t diff);
Dcircuit_builder-inl.h553 GateRef diff = DoubleEqual(x, x); in DoubleIsNAN() local
554 return Equal(SExtInt1ToInt32(diff), Int32(0)); in DoubleIsNAN()
Dbytecode_circuit_builder.cpp673 size_t diff = LoopExitCount(bb.id, bbNext.id); in TryInsertLoopExit() local
674 for (size_t i = 0; i < diff; ++i) { in TryInsertLoopExit()
/arkcompiler/ets_frontend/test262/
Dharness.patch1 diff --git a/bin/run.js b/bin/run.js
69 diff --git a/lib/agent-pool.js b/lib/agent-pool.js
89 diff --git a/lib/cli.js b/lib/cli.js
109 diff --git a/lib/reporters/simple.js b/lib/reporters/simple.js
191 diff --git a/lib/saveCompiledTest.js b/lib/saveCompiledTest.js
208 diff --git a/lib/validator.js b/lib/validator.js
Deshost.patch15 diff --git a/lib/Agent.js b/lib/Agent.js
27 diff --git a/lib/ConsoleAgent.js b/lib/ConsoleAgent.js
145 diff --git a/lib/agents/panda.js b/lib/agents/panda.js
240 diff --git a/lib/dependencies.js b/lib/dependencies.js
260 diff --git a/runtimes/panda.js b/runtimes/panda.js
Des2015_tests.txt5036 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-other-type.js
5037 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-other-type-sab.js
5038 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-same-type.js
5039 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-same-type-sab.js
5064 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.js
5065 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-conversions.js
5066 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-conversions-sab…
5067 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-sab.js
5068 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-same-type.js
5069 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-same-type-sab.js
DCI_tests.txt2295 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-conversions.js
2296 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-same-type.js
/arkcompiler/runtime_core/libpandabase/utils/
Dbit_vector.h219 difference_type diff = offset_ + n; in Increase() local
221 data_ += diff / helpers::ToSigned(WORD_BITS); in Increase()
222 diff = diff % helpers::ToSigned(WORD_BITS); in Increase()
223 if (diff < 0) { in Increase()
224 diff += helpers::ToSigned(WORD_BITS); in Increase()
228 offset_ = diff; in Increase()
/arkcompiler/runtime_core/cmake/
DREADME.md54 * Script to show diff through clang-format execution - `scripts/run-clang-format.py`
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_math.cpp633 const double diff = 0.5; in Round() local
644 if (value < 0 && value >= -diff) { in Round()
648 if (value > 0 && value < diff) { in Round()
653 if (result - value > diff) { in Round()
/arkcompiler/ets_frontend/es2panda/test/
Dtest262skiplist-long.txt25 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-conversions.js
Dtest262skiplist-compiler-arm64.txt379 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type.js
Dtest262skiplist.txt750 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-other-type-sab.js
751 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-other-type.js
752 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-same-type-sab.js
753 built-ins/TypedArray/prototype/set/BigInt/typedarray-arg-set-values-diff-buffer-same-type.js
6921 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-conversions-sab…
6922 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-other-type-sab.js
6923 built-ins/TypedArray/prototype/set/typedarray-arg-set-values-diff-buffer-same-type-sab.js
/arkcompiler/runtime_core/assembler/
Dassembly-parser.cpp706 size_t diff = 1; in ParseResetFunctionTable() local
725 …if (insn_it->OperandListLength() - diff < program_.function_table.at(insn_it->ids[0]).GetParamsNum… in ParseResetFunctionTable()
727 (static_cast<int>(insn_it->regs.size()) - static_cast<int>(diff) >= 0)) { in ParseResetFunctionTable()