| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/fuzztest/anistringdecoder_fuzzer/ |
| D | anistringdecoder_fuzzer.cpp | 39 StringDecoder decoder(encodingStr); in AniStringDecoder() local 47 StringDecoder decoder(encodingStr); in AniStringDecoderEnd() local
|
| /arkcompiler/ets_runtime/ecmascript/ohos/tests/ |
| D | ohos_test.cpp | 142 PGOProfilerDecoder decoder; in HWTEST_F_L0() local 168 PGOProfilerDecoder decoder; in HWTEST_F_L0() local 191 PGOProfilerDecoder decoder; in HWTEST_F_L0() local 219 PGOProfilerDecoder decoder; in HWTEST_F_L0() local 249 PGOProfilerDecoder decoder; in HWTEST_F_L0() local 279 PGOProfilerDecoder decoder; in HWTEST_F_L0() local
|
| /arkcompiler/ets_runtime/test/fuzztest/loadapbinaryfile_fuzzer/ |
| D | loadapbinaryfile_fuzzer.cpp | 38 PGOProfilerDecoder decoder(randomFilePath, hotnessThreshold); in LoadAPBinaryFileFuzzTest() local
|
| /arkcompiler/ets_runtime/test/fuzztest/mergeapfilesformerger_fuzzer/ |
| D | mergeapfilesformerger_fuzzer.cpp | 52 PGOProfilerDecoder decoder(randomFilePath, hotnessThreshold); in MergeApFilesForMergerFuzzTest() local
|
| /arkcompiler/ets_runtime/ecmascript/compiler/pgo_type/ |
| D | pgo_type_recorder.cpp | 23 PGOTypeRecorder::PGOTypeRecorder(const PGOProfilerDecoder &decoder) : decoder_(decoder) {} in PGOTypeRecorder() 26 const PGOProfilerDecoder &decoder, const JSPandaFile *jsPandaFile, uint32_t methodOffset) in PGOTypeRecorder()
|
| D | pgo_type_parser.cpp | 182 PGOTypeParser::PGOTypeParser(const PGOProfilerDecoder &decoder, PGOTypeManager *ptManager) in PGOTypeParser()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | pass_manager.cpp | 25 IRModule *aotModule, PGOProfilerDecoder *decoder) in PassContext() 117 … PGOProfilerDecoder *decoder = passOptions_->EnableOptPGOType() ? &profilerDecoder_ : &defDecoder; in Compile() local 298 … PGOProfilerDecoder *decoder = passOptions_->EnableOptPGOType() ? &profilerDecoder_ : &defDecoder; in Compile() local
|
| D | typed_bytecode_lowering.h | 45 PGOProfilerDecoder *decoder, in TypedBytecodeLowering()
|
| D | aot_compiler_preprocessor.cpp | 244 PGOProfilerDecoder *decoder = cOptions.isEnableOptPGOType_ ? &profilerDecoder : &defDecoder; in AnalyzeGraph() local
|
| D | ts_inline_lowering.cpp | 230 …PGOProfilerDecoder *decoder = (ctx_->GetPfDecoder() != nullptr) ? ctx_->GetPfDecoder() : &defDecod… in InlineCall() local
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/tests/ |
| D | pgo_profiler_test.cpp | 717 PGOProfilerDecoder decoder("ark-profiler13/modules.ap", 1); in HWTEST_F_L0() local 753 PGOProfilerDecoder decoder("ark-profiler14/modules.ap", 1); in HWTEST_F_L0() local 791 PGOProfilerDecoder decoder("ark-profiler15/modules.ap", 1); in HWTEST_F_L0() local 842 PGOProfilerDecoder decoder("ark-profiler16/modules.ap", 1); in HWTEST_F_L0() local 890 PGOProfilerDecoder decoder("ark-profiler18/modules.ap", 1); in HWTEST_F_L0() local 956 PGOProfilerDecoder decoder("ark-profiler20/modules.ap", 1); in HWTEST_F_L0() local 1003 PGOProfilerDecoder decoder("ark-profiler21/modules.ap", 1); in HWTEST_F_L0() local 1039 PGOProfilerDecoder decoder("ark-profiler22/modules.ap", 1); in HWTEST_F_L0() local 1075 PGOProfilerDecoder decoder("ark-profiler23/modules.ap", 1); in HWTEST_F_L0() local 1133 PGOProfilerDecoder decoder("ark-profiler18/modules_merge.ap", 1); in HWTEST_F_L0() local [all …]
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_sdk/fuzztest/anitextdecoder_fuzzer/ |
| D | anitextdecoder_fuzzer.cpp | 39 TextDecoder decoder(encodingStr, iflag); in AniTextDecoder() local
|
| /arkcompiler/runtime_core/static_core/compiler/tests/aarch64/ |
| D | codegen_test.cpp | 273 auto &decoder {GetDecoder()}; in TEST_F() local 333 auto &decoder {GetDecoder()}; in CheckSpillFillCoalescingForEvenRegsNumber() local 392 auto &decoder {GetDecoder()}; in CheckSpillFillCoalescingForOddRegsNumber() local 502 auto& decoder {GetDecoder()}; in CheckLeafPrologue() local 603 auto& decoder {GetDecoder()}; in CheckLeafWithParamsOnStackPrologue() local 636 auto &decoder {GetDecoder()}; in AssertCode() local
|
| /arkcompiler/ets_runtime/tools/ap_file_viewer/native/src/ |
| D | prof_dump_json.cpp | 29 PGOProfilerDecoder decoder(apFilePath, 1); in ConvertApToJson() local
|
| /arkcompiler/ets_frontend/ets2panda/linter/homecheck/src/utils/checker/ |
| D | BytesUtils.ts | 16 const decoder = new TextDecoder(); constant
|
| /arkcompiler/ets_frontend/ets2panda/bindings/src/ |
| D | strings.ts | 165 private readonly decoder: SystemTextDecoder | TextDecoder | undefined; property in CustomTextDecoder
|
| D | arrays.ts | 22 const decoder = new CustomTextDecoder(); constant
|
| /arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
| D | pgo_profiler_manager.cpp | 56 PGOProfilerDecoder decoder(fileName, hotnessThreshold); in MergeApFiles() local 103 PGOProfilerDecoder decoder(fileName, hotnessThreshold); in MergeApFiles() local 438 PGOProfilerDecoder decoder(inPath, hotnessThreshold); in BinaryToText() local
|
| D | pgo_profiler_encoder.cpp | 133 PGOProfilerDecoder decoder(path_, rtInfo->GetHotnessThreshold()); in InternalSave() local
|
| D | pgo_info.cpp | 162 void PGOInfo::MergeWithExistProfile(PGOInfo& rtInfo, PGOProfilerDecoder& decoder) in MergeWithExistProfile()
|
| D | pgo_profiler_decoder.cpp | 273 void PGOProfilerDecoder::Merge(const PGOProfilerDecoder &decoder) in Merge()
|
| /arkcompiler/runtime_core/compiler/tests/ |
| D | vixl_exec_module.h | 269 Decoder decoder; variable
|
| /arkcompiler/runtime_core/static_core/compiler/tools/aotdump/ |
| D | aotdump.cpp | 331 Decoder decoder(allocator_); in PrintCodeArm64() local 360 ZydisDecoder decoder; in PrintCodeX8664() local
|
| /arkcompiler/runtime_core/static_core/irtoc/backend/ |
| D | compilation.cpp | 46 vixl::aarch64::Decoder decoder(allocator); in CollectForCode() local
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/target/amd64/ |
| D | encode.cpp | 3346 ZydisDecoder decoder; in DisasmInstr() local
|