| /arkcompiler/runtime_core/static_core/runtime/fibers/ |
| H A D | fiber_context.cpp | 22 void CopyContext(FiberContext *dst, const FiberContext *src) in CopyContext() argument
|
| /arkcompiler/runtime_core/static_core/irtoc/backend/compiler/ |
| H A D | codegen_interpreter.h | 77 auto src = ConvertRegister(inst->GetSrcReg(0), DataType::POINTER); // pointer variable 78 GetEncoder()->EncodeJump(src); variable
|
| H A D | codegen_boundary.cpp | 148 auto src = Reg(location.GetValue(), GetTarget().GetPtrRegType()); in IntrinsicTailCall() local
|
| /arkcompiler/ets_frontend/ets2panda/ir/expressions/literals/ |
| H A D | bigIntLiteral.h | 31 explicit BigIntLiteral(util::StringView const src) : Literal(AstNodeType::BIGINT_LITERAL), src_(src) {} in BigIntLiteral() argument
|
| /arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
| H A D | binary_buffer_parser.cpp | 37 void BinaryBufferParser::ParseBuffer(uint8_t *dst, uint32_t count, uint8_t *src) in ParseBuffer() argument
|
| /arkcompiler/ets_frontend/ets2panda/lexer/ |
| H A D | keywords.cpp | 22 KeywordString JSKeywords::Handle_as([[maybe_unused]] const KeywordsUtil &util, std::string_view src, in Handle_as() argument 28 KeywordString JSKeywords::Handle_await(const KeywordsUtil &util, std::string_view src, TokenType tokenType) in Handle_await() argument 41 KeywordString JSKeywords::Handle_yield(const KeywordsUtil &util, std::string_view src, TokenType tokenType) in Handle_yield() argument 54 KeywordString TSKeywords::Handle_as(const KeywordsUtil &util, std::string_view src, TokenType tokenType) in Handle_as() argument 59 KeywordString TSKeywords::Handle_await(const KeywordsUtil &util, std::string_view src, TokenTyp argument 64 Handle_yield(const KeywordsUtil &util, std::string_view src, TokenType tokenType) Handle_yield() argument 69 Handle_as(const KeywordsUtil &util, std::string_view src, TokenType tokenType) Handle_as() argument [all...] |
| /arkcompiler/ets_frontend/es2panda/ir/expressions/literals/ |
| H A D | bigIntLiteral.h | 35 explicit BigIntLiteral(util::StringView src) : Literal(AstNodeType::BIGINT_LITERAL), src_(src) {} in BigIntLiteral() argument
|
| /arkcompiler/toolchain/tooling/test/ |
| H A D | pt_base64_test.cpp | 46 std::string src; in HWTEST_F_L0() local 62 std::string src; in HWTEST_F_L0() local 111 std::string src = "hello"; HWTEST_F_L0() local 127 std::string src = "If you can see this message, it means that PtBase64Decode works well"; HWTEST_F_L0() local 148 std::string src = {1, 2, 3, 4, 5, 6, 7, 8, 9}; HWTEST_F_L0() local 158 std::string src; HWTEST_F_L0() local 190 std::vector<uint8_t> src = { HWTEST_F_L0() local 230 std::string src = u8"😀"; HWTEST_F_L0() local 247 std::string src = "测试Base64åŠ å¯†è§£å¯†"; HWTEST_F_L0() local 264 std::string src; HWTEST_F_L0() local [all...] |
| /arkcompiler/toolchain/test/fuzztest/base/ptbase64/baseptbase64decode_fuzzer/ |
| H A D | baseptbase64decode_fuzzer.cpp | 36 auto src = cn->GetString(data, size); in BasePtBase64DecodeFuzzTest() local
|
| /arkcompiler/toolchain/test/fuzztest/base/ptbase64/baseptbase64encode_fuzzer/ |
| H A D | baseptbase64encode_fuzzer.cpp | 36 auto src = cn->GetString(data, size); in BasePtBase64EncodeFuzzTest() local
|
| /arkcompiler/ets_runtime/ecmascript/tests/ |
| H A D | machine_code_test.cpp | 103 const char src[] = "hello"; in HWTEST_F_L0() local 131 const char src[] = "hello"; in HWTEST_F_L0() local
|
| /arkcompiler/toolchain/tooling/base/ |
| H A D | pt_base64.cpp | 50 auto *src = reinterpret_cast<unsigned char const *>(input); in Decode() local 97 auto *src = static_cast<const unsigned char *>(input); in Encode() local [all...] |
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
| H A D | string_utils.h | 30 static void Split(const std::string &src, Container &container, char delim) in Split() argument 44 static void SplitSV(const std::string_view &src, Container &container, char delim) in SplitSV() argument 65 static void Split(const std::string &src, std::unordered_set<std::string> &container, char delim) in Split() argument 77 Split(const std::string &src, std::queue<std::string> &container, char delim) Split() argument [all...] |
| /arkcompiler/ets_frontend/ets2panda/test/unit/ |
| H A D | rest_parameter_flag_test.cpp | 43 void SetCurrentProgram(std::string_view src) in SetCurrentProgram() argument 76 GetProgram(int argc, const char **argv, std::string_view fileName, std::string_view src) GetProgram() argument
|
| H A D | ast_dumper_test.cpp | 45 std::string_view src; member 122 static ark::pandasm::Program *GetProgram(std::string_view src, const char **argsList, int argsCount, in GetProgram() argument
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| H A D | barriers-inl.h | 105 static inline void CopyMaybeOverlap(JSTaggedValue* dst, JSTaggedValue* src, size_t count) in CopyMaybeOverlap() argument 110 static inline void CopyNoOverlap(JSTaggedValue* __restrict__ dst, JSTaggedValue* __restrict__ src, size_t count) in CopyNoOverlap() argument 119 void Barriers::CopyObject(const JSThread* thread, JSTaggedValue* dst, JSTaggedValue* src, size_t count) in CopyObject() argument 170 inline void Barriers::CopyObjectPrimitive(JSTaggedValue* dst, JSTaggedValue* src, size_t count) in CopyObjectPrimitive() argument [all...] |
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/js_proxy/ |
| H A D | js_proxy.cpp | 51 static void InitProxyMethod(Class *cls, Method *src, Method *proxy) in InitProxyMethod() argument
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/ |
| H A D | std_core_Arrays.cpp | 26 static void StdCoreCopyTo(coretypes::Array *src, coretypes::Array *dst, int32_t dstStart, int32_t srcStart, in StdCoreCopyTo() argument 69 extern "C" void StdCoreBoolCopyTo(EtsCharArray *src, EtsCharArray *dst, int32_t dstStart, int32_t srcStart, in StdCoreBoolCopyTo() argument 75 extern "C" void StdCoreCharCopyTo(EtsCharArray *src, EtsCharArray *dst, int32_t dstStart, int32_t srcStart, in StdCoreCharCopyTo() argument 81 extern "C" void StdCoreShortCopyTo(EtsCharArray *src, EtsCharArray *dst, int32_t dstStart, int32_t srcStart, in StdCoreShortCopyTo() argument 87 StdCoreByteCopyTo(EtsCharArray *src, EtsCharArray *dst, int32_t dstStart, int32_t srcStart, int32_t srcEnd) StdCoreByteCopyTo() argument 93 StdCoreIntCopyTo(EtsCharArray *src, EtsCharArray *dst, int32_t dstStart, int32_t srcStart, int32_t srcEnd) StdCoreIntCopyTo() argument 99 StdCoreLongCopyTo(EtsCharArray *src, EtsCharArray *dst, int32_t dstStart, int32_t srcStart, int32_t srcEnd) StdCoreLongCopyTo() argument 105 StdCoreFloatCopyTo(EtsCharArray *src, EtsCharArray *dst, int32_t dstStart, int32_t srcStart, int32_t srcEnd) StdCoreFloatCopyTo() argument 111 StdCoreDoubleCopyTo(EtsCharArray *src, EtsCharArray *dst, int32_t dstStart, int32_t srcStart, int32_t srcEnd) StdCoreDoubleCopyTo() argument [all...] |
| /arkcompiler/runtime_core/static_core/tests/irtoc-interpreter-tests/irtoc-tag/generator/ |
| H A D | tag-isapi.rb | [all...] |
| /arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
| H A D | spreadLowering.cpp | 49 std::stringstream src; in CreateETSCode() local [all...] |
| /arkcompiler/runtime_core/compiler/optimizer/ir/ |
| H A D | spill_fill_data.h | 34 SpillFillData(Location src, Location dst, DataType::Type type) : src_(src), dst_(dst), type_(type) {} in SpillFillData() argument
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
| H A D | reg_alloc_base.cpp | 246 void ConnectIntervals(SpillFillInst *spill_fill, const LifeIntervals *src, const LifeIntervals *dst) in ConnectIntervals() argument
|
| H A D | spill_fills_resolver.h | 55 LocationIndex src; member
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/ |
| H A D | reg_alloc_base.cpp | 271 void ConnectIntervals(SpillFillInst *spillFill, const LifeIntervals *src, const LifeIntervals *dst) in ConnectIntervals() argument
|
| /arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/ |
| H A D | slow_path.cpp | 86 auto src = codegen->ConvertRegister(GetInst()->GetSrcReg(0), DataType::REFERENCE); // obj in GenerateIsInstance() local 89 codegen->CallRuntime(GetInst(), EntrypointId::IS_INSTANCE, dst, RegMask::GetZeroMask(), src, klass); in GenerateIsInstance() local 96 auto src = codegen->ConvertRegister(GetInst()->GetSrcReg(0), DataType::REFERENCE); // obj in GenerateCheckCast() local 98 codegen->CallRuntime(GetInst(), GetEntrypoint(), INVALID_REGISTER, RegMask::GetZeroMask(), src, klass); in GenerateCheckCast() local 107 auto src = codegen->ConvertRegister(inst->GetSrcReg(0), inst->GetInputType(0)); in GenerateCreateObject() local 118 auto src = codegen->ConvertRegister(GetInst()->GetSrcReg(0), DataType::Type::REFERENCE); in GenerateByEntry() local 119 codegen->CallRuntime(GetInst(), GetEntrypoint(), INVALID_REGISTER, RegMask::GetZeroMask(), src); in GenerateByEntry() local 240 auto src = codegen->ConvertRegister(inst->GetSrcReg(0), inst->GetInputType(0)); in GenerateImpl() local 242 codegen->CallRuntime(GetInst(), GetEntrypoint(), INVALID_REGISTER, RegMask::GetZeroMask(), classReg_, src); in GenerateImpl() local [all...] |