Home
last modified time | relevance | path

Searched defs:res (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/arkcompiler/runtime_core/libpandabase/tests/
Dlogger_test.cpp65 std::string res = helpers::string::Format( variable
149 std::string res = helpers::string::Format("[TID %06x] E/compiler: c\n", tid); variable
168 std::string res = helpers::string::Format( variable
191 std::string res = helpers::string::Format("[TID %06x] E/common: c\n", tid); variable
236 std::string res = helpers::string::Format( variable
266 std::string res = helpers::string::Format( variable
298 std::string res = helpers::string::Format( variable
324 std::string res = helpers::string::Format("[TID %06x] I/common: a\n", tid); variable
346 std::string res = helpers::string::Format( variable
Dutf_test.cpp31 const std::vector<uint16_t> res {0x0}; variable
40 const std::vector<uint16_t> res {0x7f}; variable
49 const std::vector<uint16_t> res {0xa7, 0x33}; variable
58 const std::vector<uint16_t> res {0xffc3, 0x33}; variable
67 const std::vector<uint16_t> res {0xd801, 0xdc37}; variable
75 const std::vector<uint16_t> res {0x5b, 0x61, 0x62, 0x63, 0xd8d2, 0x5d}; variable
83 const std::vector<uint16_t> res {0xD83D, 0xDC73}; variable
95 size_t res = Utf16ToMUtf8Size(in.data(), in.size()); variable
102 size_t res = Utf16ToMUtf8Size(in.data(), in.size()); variable
108 size_t res = Utf16ToMUtf8Size(in.data(), in.size()); variable
[all …]
Dmutex_test.cpp65 bool res = arg->rwlock->TryReadLock(); in TestThread3() local
83 bool res = arg->lock->TryLockWithSpinning(); in TestThread4() local
102 size_t res; variable
130 size_t res = 0; variable
159 bool res = lock->TryLockWithSpinning(); variable
184 bool res = lock->TryLock(); variable
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter-inl.h789 JSTaggedValue res = state->acc; in GeneratorReEnterInterpreter() local
806 auto res = thread->GetEcmaVM()->ExecuteAot(method->GetNumArgs(), args.data(), prevFp, in GeneratorReEnterAot() local
1339 JSTaggedValue res = SlowRuntimeStub::CallSpread(thread, func, obj, array); in RunInternal() local
1356 JSTaggedValue res = SlowRuntimeStub::CallSpread(thread, func, obj, array); in RunInternal() local
1503 JSTaggedValue res = SlowRuntimeStub::GetUnmapedArgs(thread, sp, actualNumArgs, startIdx); in RunInternal() local
1511 JSTaggedValue res = SlowRuntimeStub::AsyncFunctionEnter(thread); in RunInternal() local
1518 JSTaggedValue res = FastRuntimeStub::FastTypeOf(thread, GET_ACC()); in RunInternal() local
1524 JSTaggedValue res = FastRuntimeStub::FastTypeOf(thread, GET_ACC()); in RunInternal() local
1531 JSTaggedValue res = SlowRuntimeStub::GetPropIterator(thread, GET_ACC()); in RunInternal() local
1542 JSTaggedValue res = SlowRuntimeStub::CloseIterator(thread, iter); in RunInternal() local
[all …]
Dinterpreter_assembly.cpp230 auto res = in Execute() local
616 JSTaggedValue res = SlowRuntimeStub::GetUnmapedArgs(thread, sp, actualNumArgs, startIdx); in HandleGetunmappedargs() local
627 JSTaggedValue res = SlowRuntimeStub::AsyncFunctionEnter(thread); in HandleAsyncfunctionenter() local
644 JSTaggedValue res = SlowRuntimeStub::ToNumber(thread, value); in HandleTonumberImm8() local
667 JSTaggedValue res = SlowRuntimeStub::Neg(thread, value); in HandleNegImm8() local
690 JSTaggedValue res = SlowRuntimeStub::Not(thread, value); in HandleNotImm8() local
716 JSTaggedValue res = SlowRuntimeStub::Inc(thread, value); in HandleIncImm8() local
742 JSTaggedValue res = SlowRuntimeStub::Dec(thread, value); in HandleDecImm8() local
763 JSTaggedValue res = FastRuntimeStub::FastTypeOf(thread, GET_ACC()); in HandleTypeofImm8() local
773 JSTaggedValue res = SlowRuntimeStub::GetPropIterator(thread, GET_ACC()); in HandleGetpropiterator() local
[all …]
/arkcompiler/runtime_core/compiler/tests/
Daot_test.cpp70 …auto res = os::exec::Exec(aotdump_path_.c_str(), "--show-code=disasm", "--output-file", tmpfile.Ge… in RunAotdump() local
102 auto res = parser.Parse(source); in TEST_F() local
110 …auto res = os::exec::Exec(paoc_path_.c_str(), "--paoc-panda-files", panda_fname.GetFileName(), "--… in TEST_F() local
139 auto res = parser.Parse(source); in TEST_F() local
146 …auto res = os::exec::Exec(paoc_path_.c_str(), "--paoc-panda-files", panda_fname.GetFileName(), "--… in TEST_F() local
155 auto res = in TEST_F() local
240 …auto res = aot_manager.AddFile(tmpfile.c_str(), nullptr, static_cast<uint32_t>(mem::GCType::STW_GC… in TEST_F() local
319 auto res = parser.Parse(source); in TEST_F() local
326 auto res = in TEST_F() local
363 auto res = parser.Parse(source); in TEST_F() local
[all …]
Dclass_hash_table_test.cpp106 auto res = parser.Parse(GetSourceCode()); in TEST_F() local
145 auto res = parser.Parse(source); in TEST_F() local
164 auto res = parser.Parse(source); in TEST_F() local
170 …auto res = os::exec::Exec(GetPaocFile(), "--paoc-panda-files", panda_fname2.GetFileName(), "--pand… in TEST_F() local
211 auto res = parser.Parse(GetSourceCode()); in TEST_F() local
217 …auto res = os::exec::Exec(GetPaocFile(), "--paoc-panda-files", panda_fname.GetFileName(), "--paoc-… in TEST_F() local
225 auto res = os::exec::Exec(GetAotdumpFile(), "--show-code=disasm", filename.c_str()); in TEST_F() local
242 auto res = parser.Parse(GetSourceCode()); in TEST_F() local
250 …auto res = os::exec::Exec(GetPaocFile(), "--paoc-panda-files", panda_fname.GetFileName(), "--paoc-… in TEST_F() local
280 auto res = parser.Parse(GetSourceCode()); in TEST_F() local
[all …]
/arkcompiler/runtime_core/runtime/tests/
Dc2i_bridge_test.cpp91 auto res = p.Parse(source); in SetUpHelperFunctions() local
146 auto res = p.Parse(out.str()); in MakeNoArgsMethod() local
249 auto res = p.Parse(out.str()); in MakeCheckArgsMethod() local
275 int32_t res = InvokeEntryPoint<int32_t>(method); in TEST_F() local
283 int64_t res = InvokeEntryPoint<int64_t>(method); in TEST_F() local
291 auto res = InvokeEntryPoint<double>(method); in TEST_F() local
299 ObjectHeader *res = InvokeEntryPoint<ObjectHeader *>(method); in TEST_F() local
307 DecodedTaggedValue res = InvokeEntryPoint<DecodedTaggedValue>(method); in TEST_F() local
316 int32_t res = InvokeEntryPoint<int32_t>(method, 5); in TEST_F() local
324 int32_t res = InvokeEntryPoint<int32_t>(method, nullptr, 5); in TEST_F() local
[all …]
Dmath_helpers_test.cpp34 T res = bit_shl<T>()(v, shift); in TestBitShl() local
41 T res = bit_shl<T>()(v, shift); in TestBitShl() local
48 T res = bit_shl<T>()(v, shift); in TestBitShl() local
55 T res = bit_shl<T>()(v, shift); in TestBitShl() local
72 T res = bit_shr<T>()(v, shift); in TestBitShr() local
79 T res = bit_shr<T>()(v, shift); in TestBitShr() local
86 T res = bit_shr<T>()(v, shift); in TestBitShr() local
93 T res = bit_shr<T>()(v, shift); in TestBitShr() local
110 T res = bit_ashr<T>()(v, shift); in TestBitAshr() local
117 T res = bit_ashr<T>()(v, shift); in TestBitAshr() local
[all …]
Dexception_test.cpp144 auto res = parser.Parse(source); in TEST_F() local
227 auto res = parser.Parse(source); in TEST_F() local
313 auto res = parser.Parse(source); in TEST_F() local
399 auto res = parser.Parse(source); in TEST_F() local
486 auto res = parser.Parse(source); in TEST_F() local
573 auto res = parser.Parse(source); in TEST_F() local
656 auto res = parser.Parse(source); in TEST_F() local
739 auto res = parser.Parse(source); in TEST_F() local
824 auto res = parser.Parse(source); in TEST_F() local
909 auto res = parser.Parse(source); in TEST_F() local
[all …]
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Derror.cpp38 std::string res; in ToString() local
43 std::string res = strerror_r(err, buf.data(), buf.size()); in ToString() local
Dfile.h53 ssize_t res = read(fd_, buf, n); in Read() local
62 auto res = Read(buf, n); in ReadAll() local
72 ssize_t res = write(fd_, buf, n); in Write() local
81 auto res = Write(buf, n); in WriteAll() local
/arkcompiler/ets_frontend/es2panda/compiler/base/
Dlreference.cpp33 binder::ScopeFindResult res) in LReference()
102 binder::ScopeFindResult res = pg->Scope()->Find(name); in CreateLRef() local
131 binder::ScopeFindResult res = pg->Scope()->Find(name); in CreateLRef() local
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp115 … auto *res = AllocNode<ir::MemberExpression>(id, AllocNode<ir::Identifier>(name, Allocator()), in VisitTSNode() local
128 auto res = VisitTsModuleDeclaration(node); in VisitTSNode() local
144 auto res = VisitTsModuleDeclaration(tsModuleDeclaration, true); in VisitTSNode() local
153 auto res = VisitExportNamedVariable(decl); in VisitTSNode() local
163 auto *res = VisitTsImportEqualsDeclaration(node); in VisitTSNode() local
189 auto *res = AllocNode<ir::ExpressionStatement>(assignExpr); in VisitTsImportEqualsDeclaration() local
194 … ir::Statement *res = CreateVariableDeclarationWithIdentify(name, VariableParsingFlags::VAR, node, in VisitTsImportEqualsDeclaration() local
234 auto *res = exportTSBindings->FindExportTSVariable<binder::TSBindingType::NAMESPACE>(name); in FindTSModuleVariable() local
250 auto *res = currentScope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name); in FindTSModuleVariable() local
273 std::vector<ir::AstNode *> res; in VisitExportNamedVariable() local
[all …]
/arkcompiler/runtime_core/runtime/mem/
Dobject_helpers-inl.h48 bool res = handler(object, field_object, obj_offset, is_volatile); in TraverseClass() local
78 bool res = handler(object, field_object, offset, is_volatile); in TraverseObject() local
98 bool res = handler(array, array_element, array->GetElementOffset<false>(i), false); in TraverseArray() local
135 bool res = handler(dyn_class, tagged_value.GetHeapObject(), field_offset, false); in TraverseClass() local
160 bool res = handler(object, tagged_value.GetHeapObject(), field_offset, false); in TraverseObject() local
180 bool res = handler(array, array_element.GetHeapObject(), offset, false); in TraverseArray() local
/arkcompiler/runtime_core/runtime/
Dmonitor_object_lock.cpp28 [[maybe_unused]] auto res = Monitor::MonitorEnter(obj_handler_.GetPtr()); in ObjectLock() local
58 [[maybe_unused]] auto res = Monitor::MonitorExit(obj_handler_.GetPtr()); in ~ObjectLock() local
/arkcompiler/runtime_core/platforms/windows/libpandabase/
Dfile.h46 auto res = _read(fd_, buf, n); in Read() local
55 auto res = Read(buf, n); in ReadAll() local
65 auto res = _write(fd_, buf, n); in Write() local
74 auto res = Write(buf, n); in WriteAll() local
/arkcompiler/runtime_core/compiler/optimizer/code_generator/target/aarch32/
Dlib_helpers.inl48 DivLUResult res {0, 0}; local
56 DivLSResult res {0, 0}; local
75 DivUResult res {0, 0}; local
83 DivSResult res {0, 0}; local
/arkcompiler/runtime_core/assembler/tests/
Demitter_test.cpp66 auto res = p.Parse(source, source_filename); in TEST() local
212 auto res = p.Parse(source, source_filename); in TEST() local
301 auto res = p.Parse(source); in TEST() local
361 auto res = p.Parse(source); in TEST() local
375 auto res = p.Parse(source); in TEST() local
389 auto res = p.Parse(source); in TEST() local
403 auto res = p.Parse(source); in TEST() local
418 auto res = p.Parse(source); in TEST() local
435 auto res = p.Parse(source); in TEST() local
463 auto res = p.Parse(source); in TEST() local
[all …]
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/
Djs_pandafile_manager_test.cpp72 auto res = parser.Parse(source, fileName); in HWTEST_F_L0() local
97 auto res = parser.Parse(data); in HWTEST_F_L0() local
119 auto res = parser.Parse(data); in HWTEST_F_L0() local
148 auto res = parser.Parse(data); in HWTEST_F_L0() local
178 auto res = parser.Parse(data); in HWTEST_F_L0() local
209 auto res = parser.Parse(data); in HWTEST_F_L0() local
228 auto res = parser.Parse(data); in HWTEST_F_L0() local
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-conditional-expression.js23 var res = (a == 1 ? a : 42); variable
/arkcompiler/ets_runtime/test/moduletest/globalthis/
Dglobalthis.js28 let res; variable
/arkcompiler/ets_runtime/ecmascript/mem/
Dc_string.cpp73 CString res; in ConvertToString() local
92 CString res; in ConvertToString() local
125 std::string res; in CstringConvertToStdString() local
/arkcompiler/ets_runtime/test/moduletest/container/
Dcontainer_lightweightmap.js26 let res = new Map(); variable
116 function elements(value, key, res) { argument
/arkcompiler/ets_runtime/test/moduletest/stackoverflow/
Dstackoverflow.js24 var res = String.fromCharCode.apply(null, array); variable

12345678910>>...12