Home
last modified time | relevance | path

Searched defs:in (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/runtime_core/libpandabase/tests/
Dutf_test.cpp30 const std::vector<uint8_t> in {0xc0, 0x80, 0x00}; variable
39 const std::vector<uint8_t> in {0x7f, 0x00}; variable
48 const std::vector<uint8_t> in {0xc2, 0xa7, 0x33, 0x00}; variable
57 const std::vector<uint8_t> in {0xef, 0xbf, 0x83, 0x33, 0x00}; variable
66 const std::vector<uint8_t> in {0xed, 0xa0, 0x81, 0xed, 0xb0, 0xb7, 0x00}; variable
74 const std::vector<uint8_t> in {0x5b, 0x61, 0x62, 0x63, 0xed, 0xa3, 0x92, 0x5d, 0x00}; variable
82 const std::vector<uint8_t> in {0xF0, 0x9F, 0x91, 0xB3, 0x00}; variable
94 const std::vector<uint16_t> in {0x0}; variable
101 const std::vector<uint16_t> in {0x7f}; variable
107 const std::vector<uint16_t> in {0x7f}; variable
[all …]
Dbit_table_test.cpp69 BitMemoryStreamIn in(data.data(), 0, data.size() * BITS_PER_BYTE); in TEST_F() local
88 BitMemoryStreamIn in(data.data(), 0, data.size() * BITS_PER_BYTE); in TEST_F() local
114 BitMemoryStreamIn in(data.data(), 0, data.size() * BITS_PER_BYTE); in TEST_F() local
147 BitMemoryStreamIn in(data.data(), 0, data.size() * BITS_PER_BYTE); in TEST_F() local
211 BitMemoryStreamIn in(data.data(), 0, data.size() * BITS_PER_BYTE); in TEST_F() local
245 BitMemoryStreamIn in(data.data(), 0, data.size() * BITS_PER_BYTE); in TEST_F() local
394 BitMemoryStreamIn in(data.data(), 0, data.size() * BITS_PER_BYTE); in TEST_F() local
455 BitMemoryStreamIn in(data.data(), 0, data.size() * BITS_PER_BYTE); in TEST_F() local
Dalloc_tracker_test.cpp41 static void SkipString(std::istream &in) in SkipString()
/arkcompiler/runtime_core/runtime/include/
Druntime_options.h67 void SetFingerprint(const std::string &in) in SetFingerprint()
77 void SetVerificationMode(VerificationMode in) in SetVerificationMode()
87 void SetVerifyRuntimeLibraries(bool in) in SetVerifyRuntimeLibraries()
92 void SetUnwindStack(void *in) in SetUnwindStack()
102 void SetCrashConnect(void *in) in SetCrashConnect()
/arkcompiler/runtime_core/bytecode_optimizer/tests/
Dbcopt_type_adaption_test.cpp203 … [](const auto &in) { return in.opcode == panda::pandasm::Opcode::INVALID; }); in TypeAdaptionTest()
219 … [](const auto &in) { return in.opcode == panda::pandasm::Opcode::LDAI_DYN; }); in TypeAdaptionTest()
227 … [](const auto &in) { return in.opcode == panda::pandasm::Opcode::INVALID; }); in TypeAdaptionTest()
233 … [](const auto &in) { return in.opcode == panda::pandasm::Opcode::ECMA_ADD2DYN; }); in TypeAdaptionTest()
241 … [](const auto &in) { return in.opcode == panda::pandasm::Opcode::INVALID; }); in TypeAdaptionTest()
311 … [](const auto &in) { return in.opcode == panda::pandasm::Opcode::INVALID; }); in TypeAdaptionTest_UnconditionalJump()
325 … [](const auto &in) { return in.opcode == panda::pandasm::Opcode::ECMA_ADD2DYN; }); in TypeAdaptionTest_UnconditionalJump()
333 … [](const auto &in) { return in.opcode == panda::pandasm::Opcode::INVALID; }); in TypeAdaptionTest_UnconditionalJump()
Dexcluded_keys_test.cpp94 for (const auto &in : func.ins) { variable
/arkcompiler/runtime_core/compiler/optimizer/code_generator/target/aarch64/
Dregfile.cpp33 …auto equality = [reg](Reg in) { return (reg.GetId() == in.GetId()) && (reg.GetType() == in.GetType… in IsRegUsed()
/arkcompiler/runtime_core/compiler/optimizer/code_generator/target/amd64/
Dregfile.cpp33 …auto equality = [reg](Reg in) { return (reg.GetId() == in.GetId()) && (reg.GetType() == in.GetType… in IsRegUsed()
/arkcompiler/runtime_core/compiler/optimizer/code_generator/target/aarch32/
Dregfile.cpp58 …auto equality = [reg](Reg in) { return (reg.GetId() == in.GetId()) && (reg.GetType() == in.GetType… in IsRegUsed()
/arkcompiler/ets_frontend/merge_abc/src/
DmergeProgram.cpp135 std::ifstream in(panda::os::file::File::GetExtendedFilePath(inputAbs.Value())); in CollectProtoFiles() local
/arkcompiler/ets_runtime/ecmascript/compiler/
Dgate_accessor.cpp480 void GateAccessor::NewIn(GateRef gate, size_t idx, GateRef in) in NewIn()
508 void GateAccessor::ReplaceIn(GateRef gate, size_t index, GateRef in) in ReplaceIn()
520 void GateAccessor::ReplaceStateIn(GateRef gate, GateRef in, size_t index) in ReplaceStateIn()
526 void GateAccessor::ReplaceDependIn(GateRef gate, GateRef in, size_t index) in ReplaceDependIn()
533 void GateAccessor::ReplaceValueIn(GateRef gate, GateRef in, size_t index) in ReplaceValueIn()
670 void GateAccessor::ReplaceFrameStateIn(GateRef gate, GateRef in) in ReplaceFrameStateIn()
Dgate.cpp466 auto in = inList[idx]; in Gate() local
477 void Gate::NewIn(size_t idx, Gate *in) in NewIn()
491 void Gate::ModifyIn(size_t idx, Gate *in) in ModifyIn()
Dcircuit.cpp271 void Circuit::NewIn(GateRef gate, size_t idx, GateRef in) in NewIn()
280 void Circuit::ModifyIn(GateRef gate, size_t idx, GateRef in) in ModifyIn()
Dframe_states.cpp340 auto in = bytecodeInfo.inputs[i]; in ComputeLiveOutBC() local
Dcircuit_builder.cpp952 for (auto in : inlist) { in Environment() local
1143 for (auto in : otherPredeControls_) { in MergeAllControl() local
1222 GateRef Variable::AddOperandToSelector(GateRef val, size_t idx, GateRef in) in AddOperandToSelector()
Dbytecode_circuit_builder.cpp1368 for (const auto &in: bytecodeInfo.inputs) { in PrintBytecodeInfo() local
/arkcompiler/runtime_core/compiler/tests/
Dcode_info_test.cpp119 BitMemoryStreamIn in(data.data(), 0, data.size() * BITS_PER_BYTE); in TEST_F() local
/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dcircuit_optimizer_tests.cpp399 for (auto in : ins) { in HWTEST_F_L0() local
479 for (auto in : ins) { in HWTEST_F_L0() local
/arkcompiler/runtime_core/compiler/code_info/
Dcode_info.h127 void Decode(BitMemoryStreamIn *in) in Decode()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_info.cpp35 auto in = reinterpret_cast<PGOProfilerHeader *>(buffer); in ParseFromBinary() local
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_source_text.cpp513 JSMutableHandle<ImportEntry> in(thread, globalConstants->GetUndefined()); in ModuleDeclarationEnvironmentSetup() local
600 JSMutableHandle<ImportEntry> in(thread, globalConstants->GetUndefined()); in ModuleDeclarationArrayEnvironmentSetup() local
/arkcompiler/ets_frontend/legacy_bin/api8/src/
Dindex.js2 …bject"!=typeof n[e])continue;const r=n[e];"ansi16"===e&&(e="ansi"),"ansi16"in r&&(t.color.ansi[e]=… field in AnonymousClassbd3cd72288d01