/arkcompiler/runtime_core/libpandabase/tests/ |
D | mutex_test.cpp | 43 ThreadRWLockArgs *arg = reinterpret_cast<ThreadRWLockArgs *>(input); in TestThread1() local 54 ThreadRWLockArgs *arg = reinterpret_cast<ThreadRWLockArgs *>(input); in TestThread2() local 64 ThreadRWLockArgs *arg = reinterpret_cast<ThreadRWLockArgs *>(input); in TestThread3() local 82 ThreadMutexArgs *arg = reinterpret_cast<ThreadMutexArgs *>(input); in TestThread4() local 94 ThreadRWLockArgs *arg = reinterpret_cast<ThreadRWLockArgs *>(input); in TestThread5() local 104 ThreadRWLockArgs arg = {rwlock, &res}; variable 131 ThreadRWLockArgs arg = {rwlock, &res}; variable 163 ThreadMutexArgs arg = {lock, &index}; variable 178 ThreadRWLockArgs arg = {rwlock, nullptr}; variable
|
/arkcompiler/runtime_core/libpandabase/tests/genmc/ |
D | mutex_test_4.cpp | 31 static void *Thread1(void *arg) in Thread1() 46 static void *Thread2(void *arg) in Thread2() 59 static void *Thread3(void *arg) in Thread3()
|
D | mutex_test_genmc.cpp | 28 static void *ThreadN(void *arg) in ThreadN()
|
D | mutex_test_3.cpp | 30 static void *Threadn(void *arg) in Threadn()
|
D | mutex_test_2.cpp | 34 static void *ThreadN(void *arg) in ThreadN()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
D | pandargs.h | 221 bool Add(PandArgBase *arg) in Add() 234 bool PushBackTail(PandArgBase *arg) in PushBackTail() 345 bool IsArgSet(PandArgBase *arg) const in IsArgSet() 360 auto arg = static_cast<PandArgCompound *>(i); in GetHelpString() local 510 auto arg = parent_arg->FindSubArg(arg_name); in ParseSubArgument() local 541 auto arg = static_cast<PandArgCompound *>(FindArg(arg_name)); in ParseCompoundArg() local 593 PandArgBase *arg = FindArg(arg_name); in ParseNextRegularArg() local 614 PandArgBase *arg = nullptr; in ParseNextArg() local 718 size_t ParseNextParam(PandArgBase *arg, std::string_view argstr) in ParseNextParam() 753 std::size_t ParseStringArgParam(PandArg<std::string> *arg, std::string_view argstr) in ParseStringArgParam() [all …]
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
D | js_arguments_test.cpp | 64 JSHandle<JSArguments> arg = thread->GetEcmaVM()->GetFactory()->NewJSArguments(); in HWTEST_F_L0() local 87 JSHandle<JSArguments> arg = thread->GetEcmaVM()->GetFactory()->NewJSArguments(); in HWTEST_F_L0() local 109 JSHandle<JSArguments> arg = thread->GetEcmaVM()->GetFactory()->NewJSArguments(); in HWTEST_F_L0() local 129 JSHandle<JSArguments> arg = thread->GetEcmaVM()->GetFactory()->NewJSArguments(); in HWTEST_F_L0() local 151 JSHandle<JSArguments> arg = thread->GetEcmaVM()->GetFactory()->NewJSArguments(); in HWTEST_F_L0() local
|
/arkcompiler/runtime_core/runtime/tests/ |
D | invokation_helper.h | 44 inline void WriteArgImpl(arch::ArgWriter<RUNTIME_ARCH> *writer, size_t nfloats, float arg, Args... … in WriteArgImpl() 51 inline void WriteArgImpl(arch::ArgWriter<RUNTIME_ARCH> *writer, size_t nfloats, T arg, Args... args) in WriteArgImpl() 79 inline void WriteArg(arch::ArgWriter<RUNTIME_ARCH> *writer, T arg, Args... args) in WriteArg()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/regAllocator/ |
D | test-spill-fill-with-env-args.js | 1 function xx(arg) { argument
|
/arkcompiler/runtime_core/compiler/ |
D | compiler_logger.cpp | 26 for (const auto& arg : args) { in SetComponents() local
|
D | compiler_options.h | 117 for (const auto &arg : GetCompilerCpuFeatures()) { in ParseEnabledCpuFeatures() local
|
/arkcompiler/ets_frontend/es2panda/ir/expressions/ |
D | callExpression.cpp | 93 compiler::VReg arg = pg->AllocReg(); in Compile() local 146 compiler::VReg arg = pg->AllocReg(); in Compile() local
|
D | newExpression.cpp | 56 compiler::VReg arg = pg->AllocReg(); in Compile() local
|
D | taggedTemplateExpression.cpp | 72 compiler::VReg arg = pg->AllocReg(); in Compile() local
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_atomics.cpp | 346 uint8_t arg[ARGS_NUMBER] = {0}; in HandleWithUint8() local 366 int8_t arg[ARGS_NUMBER] = {0}; in HandleWithInt8() local 386 uint16_t arg[ARGS_NUMBER] = {0}; in HandleWithUint16() local 406 int16_t arg[ARGS_NUMBER] = {0}; in HandleWithInt16() local 426 uint32_t arg[ARGS_NUMBER] = {0}; in HandleWithUint32() local 446 int32_t arg[ARGS_NUMBER] = {0}; in HandleWithInt32() local 469 int64_t arg[ARGS_NUMBER] = {0}; in HandleWithBigInt64() local 492 uint64_t arg[ARGS_NUMBER] = {0}; in HandleWithBigUint64() local
|
D | builtins_sharedarraybuffer.cpp | 59 JSHandle<JSTaggedValue> arg = GetCallArg(argv, 0); in IsSharedArrayBuffer() local
|
/arkcompiler/runtime_core/runtime/tooling/inspector/tests/ |
D | inspector_test.cpp | 48 void Call(const char *method, Arg &&... arg) in Call() 56 void OnCall(const char *method, Arg &&... arg) in OnCall()
|
/arkcompiler/ets_frontend/ts2panda/tests/expression/ |
D | bindingPattern.test.ts | 76 let arg = new VReg(); variable
|
/arkcompiler/ets_runtime/test/moduletest/callframe/ |
D | callframe.js | 100 var arg = foo8(1,2,3); variable
|
/arkcompiler/runtime_core/runtime/tooling/inspector/ |
D | inspector_hooks.h | 76 void RunHooks(void (PtHooks::*method)(Param...), Arg &&... arg) in RunHooks()
|
/arkcompiler/ets_frontend/es2panda/ir/ts/ |
D | tsAsExpression.cpp | 44 static bool IsValidConstAssertionArgument(checker::Checker *checker, const ir::AstNode *arg) in IsValidConstAssertionArgument()
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | commonjs.cpp | 61 ir::Expression *arg = AllocNode<ir::Identifier>(argName, Allocator()); in AddReflectApplyArgs() local
|
/arkcompiler/runtime_core/verification/util/ |
D | set_operations.h | 96 Arg SetDifference(const Arg &arg, const Args &... args) in SetDifference()
|
/arkcompiler/runtime_core/assembler/ |
D | asm_metadata.rb | 224 def add_unused_attribute(arg) argument
|
/arkcompiler/runtime_core/verification/absint/ |
D | panda_types.cpp | 106 for (const auto &arg : method.signature) { in MethodSignature() local
|