Home
last modified time | relevance | path

Searched defs:ret (Results 251 - 275 of 42275) sorted by relevance

1...<<11121314151617181920>>...1691

/kernel/liteos_a/testsuites/unittest/process/fs/smoke/
H A DIt_process_fs_007.cpp47 bool ret = std::regex_match(buf.data(), reg); in ItProcessFs007() local
H A DIt_process_fs_008.cpp47 bool ret = std::regex_match(buf.data(), reg); in ItProcessFs008() local
H A DIt_process_fs_010.cpp47 bool ret = std::regex_match(buf.data(), reg); in ItProcessFs010() local
H A DIt_process_fs_011.cpp47 bool ret = std::regex_match(buf.data(), reg); in ItProcessFs011() local
H A DIt_process_fs_022.cpp47 bool ret = std::regex_match(buf.data(), reg); in ItProcessFs022() local
H A DIt_process_fs_021.cpp47 bool ret = std::regex_match(buf.data(), reg); in ItProcessFs021() local
/kernel/liteos_a/testsuites/unittest/process/plimits/smoke/
H A DIt_process_plimits_001.cpp47 int ret; in ItProcessPlimits001() local
H A DIt_process_plimits_005.cpp38 int ret; in ItProcessPlimits005() local
H A DIt_process_plimits_003.cpp38 int ret; in ItProcessPlimits003() local
/test/xts/acts/kernel_lite/math_posix/src/
H A DMathComplexApiTest.cpp35 int ret = TestCabs(); in HWTEST_F() local
44 int ret = TestCabsf(); in HWTEST_F() local
54 int ret = TestCabsl(); in HWTEST_F() local
64 int ret = TestCacos(); in HWTEST_F() local
74 int ret = TestCacosf(); in HWTEST_F() local
84 int ret = TestCacoshf(); HWTEST_F() local
94 int ret = TestCacoshl(); HWTEST_F() local
104 int ret = TestCacosl(); HWTEST_F() local
114 int ret = TestCarg(); HWTEST_F() local
124 int ret = TestCargf(); HWTEST_F() local
134 int ret = TestCargl(); HWTEST_F() local
144 int ret = TestCasin(); HWTEST_F() local
154 int ret = TestCasinf(); HWTEST_F() local
164 int ret = TestCasinh(); HWTEST_F() local
174 int ret = TestCasinhf(); HWTEST_F() local
184 int ret = TestCasinhl(); HWTEST_F() local
194 int ret = TestCasinl(); HWTEST_F() local
204 int ret = TestCatan(); HWTEST_F() local
214 int ret = TestCatanf(); HWTEST_F() local
224 int ret = TestCatanh(); HWTEST_F() local
234 int ret = TestCatanhf(); HWTEST_F() local
244 int ret = TestCatanhl(); HWTEST_F() local
254 int ret = TestCatanl(); HWTEST_F() local
264 int ret = TestCcos(); HWTEST_F() local
274 int ret = TestCcosf(); HWTEST_F() local
284 int ret = TestCcosh(); HWTEST_F() local
294 int ret = TestCcoshf(); HWTEST_F() local
304 int ret = TestCcoshl(); HWTEST_F() local
314 int ret = TestCcosl(); HWTEST_F() local
324 int ret = TestCexp(); HWTEST_F() local
334 int ret = TestCexpf(); HWTEST_F() local
344 int ret = TestCexpl(); HWTEST_F() local
354 int ret = TestCimag(); HWTEST_F() local
364 int ret = TestCimagf(); HWTEST_F() local
374 int ret = TestCimagl(); HWTEST_F() local
384 int ret = TestClog(); HWTEST_F() local
394 int ret = TestClogf(); HWTEST_F() local
404 int ret = TestClogl(); HWTEST_F() local
414 int ret = TestConj(); HWTEST_F() local
424 int ret = TestConjf(); HWTEST_F() local
434 int ret = TestConjl(); HWTEST_F() local
444 int ret = TestCpow(); HWTEST_F() local
454 int ret = TestCpowf(); HWTEST_F() local
464 int ret = TestCpowl(); HWTEST_F() local
474 int ret = TestCproj(); HWTEST_F() local
484 int ret = TestCprojf(); HWTEST_F() local
494 int ret = TestCprojl(); HWTEST_F() local
504 int ret = TestCreal(); HWTEST_F() local
514 int ret = TestCrealf(); HWTEST_F() local
524 int ret = TestCreall(); HWTEST_F() local
534 int ret = TestCsin(); HWTEST_F() local
544 int ret = TestCsinf(); HWTEST_F() local
554 int ret = TestCsinh(); HWTEST_F() local
564 int ret = TestCsinhf(); HWTEST_F() local
574 int ret = TestCsinhl(); HWTEST_F() local
584 int ret = TestCsinl(); HWTEST_F() local
594 int ret = TestCsqrt(); HWTEST_F() local
604 int ret = TestCsqrtf(); HWTEST_F() local
614 int ret = TestCsqrtl(); HWTEST_F() local
624 int ret = TestCtan(); HWTEST_F() local
634 int ret = TestCtanf(); HWTEST_F() local
644 int ret = TestCtanh(); HWTEST_F() local
654 int ret = TestCtanhf(); HWTEST_F() local
664 int ret = TestCtanhl(); HWTEST_F() local
674 int ret = TestCtanl(); HWTEST_F() local
684 int ret = TestCacosh(); HWTEST_F() local
[all...]
/test/xts/acts/kernel_lite/io_posix/src/
H A DIoTestSprintf.cpp31 int ret = sprintf(str, "%d", -2147483648); in HWTEST_F() local
64 int ret = sprintf(str, "%ld", -2147483648); // 2^31-1 HWTEST_F() local
97 int ret = sprintf(str, "%lld", -9223372036854775807LL); // 2^63-1 HWTEST_F() local
130 int ret = sprintf(str, "%jd", -9223372036854775807LL); HWTEST_F() local
155 int ret = sprintf(str, "%td", 2147483647); HWTEST_F() local
172 int ret = sprintf(str, "%zd", 2147483647); HWTEST_F() local
189 int ret = sprintf(str, "%hd %hhd %hu %hhu", 32767, 127, 65535, 255); HWTEST_F() local
206 int ret = sprintf(str, "%5d %5d", 1, -1); HWTEST_F() local
251 int ret = sprintf(str, "%-5d %-5d", 1, -1); HWTEST_F() local
284 int ret = sprintf(str, "%.5d %.5d", 1, -1); HWTEST_F() local
341 int ret = sprintf(str, "%o", 4294967295); HWTEST_F() local
374 int ret = sprintf(str, "%10o", 65535); HWTEST_F() local
423 int ret = sprintf(str, "%x", 4294967295); HWTEST_F() local
456 int ret = sprintf(str, "%10x", 65535); HWTEST_F() local
505 int ret = sprintf(str, "%X", 4294967295); HWTEST_F() local
538 int ret = sprintf(str, "%10X", 65535); HWTEST_F() local
591 int ret = sprintf(str, "%f", -1.1); HWTEST_F() local
644 int ret = sprintf(str, "%a", 0.00457878e+16); HWTEST_F() local
693 int ret = sprintf(str, "%A", -0.00457878e+16); HWTEST_F() local
742 int ret = sprintf(str, "%e", 0.00457878e+16); HWTEST_F() local
791 int ret = sprintf(str, "%E", -0.00457878e+16); HWTEST_F() local
840 int ret = sprintf(str, "%g", 0.00457878e+16); HWTEST_F() local
889 int ret = sprintf(str, "%G", 0.00457878e+16); HWTEST_F() local
938 int ret = sprintf(str, "%s", "hello world"); HWTEST_F() local
1003 int ret = sprintf(str, "%c", 97); HWTEST_F() local
1036 int ret = sprintf(str, "%p", 97); HWTEST_F() local
1057 int ret = sprintf(str, "%%", 97); HWTEST_F() local
[all...]
/third_party/curl/tests/libtest/
H A Dlib1910.c32 CURLcode ret = CURLE_OK; in test() local
H A Dlib1568.c31 CURLcode ret; in test() local
H A Dlib1913.c32 CURLcode ret = CURLE_OK; in test() local
/third_party/ffmpeg/libavcodec/aarch64/
H A Dvorbisdsp_neon.S80 ret: label
/third_party/ffmpeg/libavcodec/tests/
H A Dhtmlsubtitles.c43 int ret = ff_htmlmarkup_to_ass(NULL, &dst, test_cases[i]); in main() local
H A Dutils.c24 int ret = 0; in main() local
/third_party/elfutils/libdw/
H A Ddwarf_macro_param.c36 dwarf_macro_param (Dwarf_Macro *macro, size_t idx, Dwarf_Attribute *ret) in dwarf_macro_param() argument
/third_party/elfutils/libelf/
H A Delf_next.c45 Elf_Cmd ret; in elf_next() local
/third_party/gn/src/gn/
H A Dbuilder_record_map_unittest.cc25 auto ret = map.try_emplace(kLabel1, nullptr, BuilderRecord::ITEM_TARGET); in TEST() local
[all...]
H A Dstring_utils.h18 std::string ret; in operator +() local
26 std::string ret; in operator +() local
[all...]
/third_party/benchmark/cmake/
H A Dpthread_affinity.cpp10 int ret; in main() local
/third_party/bounds_checking_function/src/
H A Dscanf_s.c41 int ret; /* If initialization causes e838 */ in scanf_s() local
H A Dwscanf_s.c42 int ret; /* If initialization causes e838 */ in wscanf_s() local
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/
H A Dlinux_sched.c41 UINT32 ret; in linux_schedule_timeout() local

Completed in 8 milliseconds

1...<<11121314151617181920>>...1691