Home
last modified time | relevance | path

Searched refs:dest (Results 1 - 25 of 82) sorted by relevance

1234

/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
H A Dcli_options.py68 '--test262', '-t', action='store_true', dest='test262',
72 '--hermes', action='store_true', dest='hermes',
80 '--ets-system-tests', action='store_true', dest='system',
84 '--ets-func-tests', action='store_true', dest='ets_func_tests',
87 '--ets-runtime', action='store_true', dest='ets_runtime',
91 '--ets-gc-stress', action='store_true', dest='ets_gc_stress',
95 '--ets-cts', action='store_true', dest='ets_cts',
98 '--ets-es-checked', action='store_true', dest='ets_es_checked',
101 '--ets-custom', action='store_true', dest='ets_custom',
104 '--sts-ts-subset', action='store_true', dest
[all...]
/arkcompiler/toolchain/tooling/test/
H A Dpt_base64_test.cpp47 std::string dest; in HWTEST_F_L0() local
49 dest.resize(PtBase64::DecodedSize(src.size())); in HWTEST_F_L0()
50 auto [numOctets, done] = PtBase64::Decode(dest.data(), src.data(), src.size()); in HWTEST_F_L0()
51 dest.resize(numOctets); in HWTEST_F_L0()
55 size_t len = PtBase64::Encode(dest.data(), src.data(), src.size()); in HWTEST_F_L0()
57 EXPECT_EQ(dest, ""); in HWTEST_F_L0()
63 std::string dest; in HWTEST_F_L0() local
68 dest.resize(PtBase64::EncodedSize(src.size())); in HWTEST_F_L0()
69 len = PtBase64::Encode(dest.data(), src.data(), src.size()); in HWTEST_F_L0()
71 EXPECT_EQ(dest, "M in HWTEST_F_L0()
110 std::string dest; HWTEST_F_L0() local
128 std::string dest; HWTEST_F_L0() local
149 std::string dest; HWTEST_F_L0() local
159 std::string dest; HWTEST_F_L0() local
208 std::string dest; HWTEST_F_L0() local
231 std::string dest; HWTEST_F_L0() local
248 std::string dest; HWTEST_F_L0() local
265 std::string dest; HWTEST_F_L0() local
[all...]
/arkcompiler/toolchain/tooling/base/
H A Dpt_base64.cpp51 char *dest = static_cast<char *>(output); in Decode() local
62 *dest++ = (base64Chars[0] << 2) | ((base64Chars[1] & 0x30) >> 4); // 2: shift 2bits, 4: shift 4bits in Decode()
63 *dest++ = (base64Chars[1] << 4) | ((base64Chars[2] & 0x3c) >> 2); // 2: shift 2bits, 4: shift 4bits in Decode()
64 *dest++ = (base64Chars[2] << 6) | base64Chars[3]; // 6: shift 6bits, 2: the second char, 3: the third char in Decode()
76 *dest++ = tmp[j]; in Decode()
81 size_t decodedLen = dest - static_cast<char *>(output); in Decode()
98 char *dest = output; in Encode() local
100 *dest++ = ENCODE_TABLE[src[0] >> 2]; // 2: shift 2bits in Encode()
101 *dest++ = ENCODE_TABLE[((src[0] & 0x03) << 4) | (src[1] >> 4)]; // 4: shift 4bits in Encode()
102 *dest in Encode()
[all...]
/arkcompiler/toolchain/test/fuzztest/base/ptbase64/baseptbase64decode_fuzzer/
H A Dbaseptbase64decode_fuzzer.cpp37 std::string dest; in BasePtBase64DecodeFuzzTest() local
38 dest.resize(PtBase64::EncodedSize(src.size())); in BasePtBase64DecodeFuzzTest()
39 PtBase64::Encode(dest.data(), src.data(), src.size()); in BasePtBase64DecodeFuzzTest()
40 src = dest; in BasePtBase64DecodeFuzzTest()
41 dest.resize(PtBase64::DecodedSize(src.size())); in BasePtBase64DecodeFuzzTest()
42 PtBase64::Decode(dest.data(), src.data(), src.size()); in BasePtBase64DecodeFuzzTest()
/arkcompiler/runtime_core/compiler/optimizer/analysis/
H A Ddominators_tree.h54 void SetAncestor(BasicBlock *dest, BasicBlock *block) in SetAncestor() argument
56 (*ancestors_)[GetBlockId(dest)] = block; in SetAncestor()
74 void SetIdom(BasicBlock *dest, BasicBlock *block) in SetIdom() argument
76 (*idoms_)[GetBlockId(dest)] = block; in SetIdom()
86 void SetLabel(BasicBlock *dest, BasicBlock *block) in SetLabel() argument
88 (*labels_)[GetBlockId(dest)] = block; in SetLabel()
98 void SetParent(BasicBlock *dest, BasicBlock *block) in SetParent() argument
100 (*parents_)[GetBlockId(dest)] = block; in SetParent()
110 void SetSemi(BasicBlock *dest, int32_t value) in SetSemi() argument
112 (*semi_)[GetBlockId(dest)] in SetSemi()
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/analysis/
H A Ddominators_tree.h52 void SetAncestor(BasicBlock *dest, BasicBlock *block) in SetAncestor() argument
54 (*ancestors_)[GetBlockId(dest)] = block; in SetAncestor()
72 void SetIdom(BasicBlock *dest, BasicBlock *block) in SetIdom() argument
74 (*idoms_)[GetBlockId(dest)] = block; in SetIdom()
84 void SetLabel(BasicBlock *dest, BasicBlock *block) in SetLabel() argument
86 (*labels_)[GetBlockId(dest)] = block; in SetLabel()
96 void SetParent(BasicBlock *dest, BasicBlock *block) in SetParent() argument
98 (*parents_)[GetBlockId(dest)] = block; in SetParent()
108 void SetSemi(BasicBlock *dest, int32_t value) in SetSemi() argument
110 (*semi_)[GetBlockId(dest)] in SetSemi()
[all...]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/internal_tests/
H A D__init__.py39 def add_option_ini(*option, dest, default=None, opt_type=None, **kwargs) -> None:
40 parser.addini(dest, default=default, type=opt_type, help="Default value for " + option[0])
41 group.addoption(*option, dest=dest, **kwargs)
46 dest=INTERNAL_TESTS,
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
H A Dworking_ranges.h35 static inline void AddRange(LifeIntervals *interval, InstructionsRanges *dest) in AddRange() argument
37 auto iter = std::upper_bound(dest->begin(), dest->end(), interval, in AddRange()
39 dest->insert(iter, interval); in AddRange()
/arkcompiler/ets_runtime/ecmascript/base/
H A Dsort_helper.cpp345 int dest = base1;
349 workArray->Set(thread_, dest++, tmpElement);
352 this->CopyArray(tmpArray, cursor1, workArray, dest, len1);
356 this->CopyArray(workArray, cursor2, workArray, dest, len2);
358 workArray->Set(thread_, dest + len2, tmpElement);
372 workArray->Set(thread_, dest++, tmpElement);
380 workArray->Set(thread_, dest++, tmpElement);
394 this->CopyArray(tmpArray, cursor1, workArray, dest, count1);
395 dest += count1;
403 workArray->Set(thread_, dest
[all...]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/
H A Dtimeout.py60 def _add_option_ini(option, dest, default=None, opt_type=None, **kwargs):
61 parser.addini(dest, default=default, type=opt_type, help="Default value for " + option)
62 group.addoption(option, dest=dest, **kwargs)
66 dest="timeout",
H A Drich_logging.py105 remove = [o.dest for o in group.options]
112 for dest in remove:
113 if dest in ininames:
114 ininames.remove(dest)
115 if dest in inidict:
116 del inidict[dest]
118 if dest == o.dest:
128 def _add_option_ini(option, dest, default=None, opt_type=None, **kwargs):
130 dest,
[all...]
H A Ddev_log.py68 dest="ark_build_path",
82 dest="dev_log",
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/
H A Dx64_standardize.cpp53 Operand &dest = insn.GetOperand(kInsnFirstOpnd); in StdzBasicOp() local
56 insn.AddOpndChain(src2).AddOpndChain(dest); in StdzBasicOp()
68 Operand &dest = insn.GetOperand(kInsnFirstOpnd); in StdzUnaryOp() local
70 insn.AddOpndChain(dest); in StdzUnaryOp()
103 RegOperand *dest = static_cast<RegOperand *>(opnd1); in StdzCvtOp() local
105 dest = &cgFunc.GetOpndBuilder()->CreateVReg(dest->GetRegisterNumber(), destSize, dest->GetRegisterType()); in StdzCvtOp()
108 insn.AddOpndChain(*src).AddOpndChain(*dest); in StdzCvtOp()
128 // mov dest in StdzFloatingNeg()
132 Operand &dest = insn.GetOperand(kInsnFirstOpnd); StdzFloatingNeg() local
[all...]
/arkcompiler/ets_frontend/ets2panda/scripts/
H A Dtest_runner.py39 parser.add_argument('-rt', '--runtime', action='store_true', dest='runtime', help='Runtime tests')
40 parser.add_argument('-r', '--regression', action='store_true', dest='regression', help='Regression tests')
41 parser.add_argument('-cts', '--cts', action='store_true', dest='cts', help='CTS tests')
42 parser.add_argument('-f', '--func', action='store_true', dest='functional', help='Functional tests')
43 parser.add_argument('-t', '--test262', action='store_true', dest='test262', help='Test262 tests')
44 parser.add_argument('--all', action='store_true', dest='all', help='Run the listed benchmarks')
/arkcompiler/ets_frontend/test/scripts/sdk_test/
H A Doptions.py123 parser.add_argument('--sdkPath', type=str, dest='sdk_path', default='',
125 parser.add_argument('--buildMode', type=str, dest='build_mode', default='all',
128 parser.add_argument('--hapMode', type=str, dest='hap_mode', default='all',
131 parser.add_argument('--compileMode', type=str, dest='compile_mode', default='all',
134 parser.add_argument('--testCase', type=str, dest='test_case', default='all',
137 parser.add_argument('--testHap', type=str, dest='test_hap', default='all',
139 parser.add_argument('--imagePath', type=str, dest='image_path', default='',
141 parser.add_argument('--runHaps', dest='run_haps', action='store_true', default=False,
143 parser.add_argument('--logLevel', type=str, dest='log_level', default='error',
146 parser.add_argument('--logFile', type=str, dest
[all...]
/arkcompiler/toolchain/test/fuzztest/base/ptbase64/baseptbase64encode_fuzzer/
H A Dbaseptbase64encode_fuzzer.cpp37 std::string dest; in BasePtBase64EncodeFuzzTest() local
38 dest.resize(PtBase64::EncodedSize(src.size())); in BasePtBase64EncodeFuzzTest()
39 PtBase64::Encode(dest.data(), src.data(), src.size()); in BasePtBase64EncodeFuzzTest()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dstandardize.cpp62 Operand &dest = insn.GetOperand(kInsnFirstOpnd); in AddressMapping() local
64 uint32 destSize = dest.GetSize(); in AddressMapping()
65 bool isInt = (static_cast<RegOperand&>(dest).GetRegisterType() == kRegTyInt); in AddressMapping()
85 (void)newInsn.AddOpndChain(dest).AddOpndChain(src1); in AddressMapping()
/arkcompiler/ets_runtime/ecmascript/extractortool/tests/
H A Dextractor_test.cpp119 std::ostringstream dest; in HWTEST_F_L0() local
120 EXPECT_FALSE(extractorFriend.extractor_.GetFileBuffer("Test", dest)); in HWTEST_F_L0()
122 EXPECT_FALSE(extractorFriend.extractor_.GetFileBuffer("", dest)); in HWTEST_F_L0()
123 EXPECT_FALSE(extractorFriend.extractor_.GetFileBuffer("Test", dest)); in HWTEST_F_L0()
158 std::ostringstream dest; in HWTEST_F_L0() local
159 EXPECT_FALSE(extractorFriend.extractor_.ExtractByName("TestFileName", dest)); in HWTEST_F_L0()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/
H A Dbitmap.cpp22 void Bitmap::CopyTo(Bitmap *dest) const in CopyTo()
24 ASSERT(dest->bitmap_.SizeBytes() == bitmap_.SizeBytes()); in CopyTo()
26 memmove_s(dest->bitmap_.Data(), dest->bitmap_.SizeBytes(), bitmap_.Data(), bitmap_.SizeBytes()); in CopyTo()
/arkcompiler/ets_frontend/test/scripts/
H A Dentry.py43 parser.add_argument('--skipDownloadSdk', dest='skip_download_sdk', action='store_true', default=False,
45 parser.add_argument('--skipDownloadDayu', dest='skip_download_dayu', action='store_true', default=False,
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/regexp/
H A Dregexp_executor.cpp48 uint8_t *dest = buffer.data(); in HandleCaptures() local
49 if (memcpy_s(dest, len + 1, reinterpret_cast<const uint8_t *>(captureState->captureStart), len) != EOK) { in HandleCaptures()
53 dest[len] = '\0'; // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in HandleCaptures()
/arkcompiler/toolchain/build/misc/mac/
H A Dfind_sdk.py39 action="store_true", dest="verify", default=False,
42 action="store", type="string", dest="sdk_path",
46 action="store_true", dest="print_sdk_path", default=False,
/arkcompiler/runtime_core/static_core/libllvmbackend/object_code/
H A Dcreated_object_file.cpp132 llvm::raw_fd_ostream dest(output, errorCode, llvm::sys::fs::FA_Write); in WriteTo()
144 dest << data; in WriteTo()
145 if (dest.has_error()) { in WriteTo()
146 auto error = dest.error(); in WriteTo()
/arkcompiler/ets_frontend/test/scripts/utils/download_sdk_and_image/
H A Dupdate.py173 parser.add_argument('--sdkFilePath', type=str, dest='sdk_file_path', default=None,
175 parser.add_argument('--sdkOutputPath', type=str, dest='sdk_output_path', default=None,
178 parser.add_argument('--dayuFilePath', type=str, dest='dayu_file_path', default=None,
180 parser.add_argument('--dayuOutputPath', type=str, dest='dayu_output_path', default=None,
/arkcompiler/ets_frontend/es2panda/test/bytecode_file_size_comparison/test_cases/java_test_framework/
H A Drun_javar8.py54 parser.add_argument('--java-bin-path', dest='java_bin_path', type=lambda arg : is_dir(parser, arg),
56 parser.add_argument('--r8-path', dest='r8_path', type=lambda arg : is_file(parser, arg),
58 parser.add_argument('--rt-path', dest='rt_path', type=lambda arg : is_file(parser, arg),
60 parser.add_argument('--timeout', type=check_timeout, dest='timeout', default=180,

Completed in 9 milliseconds

1234