/third_party/elfutils/libdw/ |
H A D | dwarf_diecu.c | 38 dwarf_diecu (Dwarf_Die *die, Dwarf_Die *result, uint8_t *address_sizep, in dwarf_diecu() argument 44 *result = CUDIE (die->cu); in dwarf_diecu() 51 return result; in dwarf_diecu()
|
/third_party/gn/src/gn/ |
H A D | action_values.cc | 17 std::vector<SourceFile>* result) const { in GetOutputsAsSourceFiles() 25 target->sources(), result); in GetOutputsAsSourceFiles() 29 SubstitutionWriter::GetListAsSourceFiles(outputs_, result); in GetOutputsAsSourceFiles()
|
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
H A D | RawCollationKey.java | 101 int result = super.compareTo(rhs); in compareTo() 102 return result < 0 ? -1 : result == 0 ? 0 : 1; in compareTo()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/ |
H A D | MultiplierParseHandler.java | 19 public void postProcess(ParsedNumber result) { in postProcess() argument 20 if (result.quantity != null) { in postProcess() 21 multiplier.applyReciprocalTo(result.quantity); in postProcess()
|
/third_party/icu/icu4c/source/common/ |
H A D | locutil.h | 27 static UnicodeString& canonicalLocaleString(const UnicodeString* id, UnicodeString& result); 28 static Locale& initLocaleFromName(const UnicodeString& id, Locale& result); 29 static UnicodeString& initNameFromLocale(const Locale& locale, UnicodeString& result);
|
H A D | ucurrimp.h | 30 icu::UnicodeString& result, UErrorCode& ec); 62 UChar* result, 70 * @param result the UnicodeSet to which to add the starting characters 72 void uprv_currencyLeads(const char* locale, icu::UnicodeSet& result, UErrorCode& ec);
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/parse/ |
H A D | MultiplierParseHandler.java | 21 public void postProcess(ParsedNumber result) { in postProcess() argument 22 if (result.quantity != null) { in postProcess() 23 multiplier.applyReciprocalTo(result.quantity); in postProcess()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | RawCollationKey.java | 97 int result = super.compareTo(rhs); in compareTo() 98 return result < 0 ? -1 : result == 0 ? 0 : 1; in compareTo()
|
/third_party/lzma/CPP/7zip/Archive/Common/ |
H A D | OutStreamWithCRC.cpp | 9 HRESULT result = S_OK;
in Write() local 11 result = _stream->Write(data, size, &size);
in Write() 17 return result;
in Write()
|
/third_party/lzma/CPP/7zip/UI/FileManager/ |
H A D | FormatUtils.cpp | 20 UString result = format;
in MyFormatNew() local 21 result.Replace(L"{0}", argument);
in MyFormatNew() 22 return result;
in MyFormatNew()
|
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
H A D | json_platform_v8.cc | 16 // Parses |str| into |result|. Returns false iff there are 18 bool StrToD(const char* str, double* result) { in StrToD() argument 19 *result = in StrToD() 21 return std::isfinite(*result); in StrToD()
|
/third_party/musl/src/unistd/ |
H A D | lseek.c | 7 off_t result; in __lseek() local 8 return syscall(SYS__llseek, fd, offset>>32, offset, &result, whence) ? -1 : result; in __lseek()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | ucurrimp.h | 30 icu::UnicodeString& result, UErrorCode& ec); 62 UChar* result, 70 * @param result the UnicodeSet to which to add the starting characters 72 void uprv_currencyLeads(const char* locale, icu::UnicodeSet& result, UErrorCode& ec);
|
H A D | locutil.h | 27 static UnicodeString& canonicalLocaleString(const UnicodeString* id, UnicodeString& result); 28 static Locale& initLocaleFromName(const UnicodeString& id, Locale& result); 29 static UnicodeString& initNameFromLocale(const Locale& locale, UnicodeString& result);
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/munlock/ |
H A D | 10-1.c | 36 int result; in main() local 47 result = munlock(page_ptr, BUFSIZE); in main() 49 if (result == -1 && errno == ENOMEM) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/shm_open/ |
H A D | 41-1.c | 25 int fd, result; in main() local 27 result = shm_unlink(SHM_NAME); in main() 28 if (result != 0 && errno != ENOENT) { in main()
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/mlock/ |
H A D | 5-1.c | 23 int result; in main() local 32 result = mlock(ptr, BUFSIZE); in main() 33 if (result == 0 && errno == 0) { in main()
|
/third_party/lz4/tests/ |
H A D | decompress-partial.c | 40 int result = LZ4_decompress_safe_partial(cmpBuffer, outBuffer, i, srcLen, BUFFER_SIZE); in main() local 41 if ((result < 0) || (result != srcLen) || memcmp(source, outBuffer, srcLen)) { in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/dirent/dirent_gtest/ |
H A D | dirent_scandir_test.cpp | 21 dirent** result = nullptr; in HWTEST_F() local 23 EXPECT_TRUE(scandir("/fake-dir", &result, nullptr, nullptr) == -1); in HWTEST_F() 25 EXPECT_EQ(result, nullptr); in HWTEST_F()
|
/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | brk.c | 36 int result = brk(new_break); in brk_0100() local 37 if (result == -1) { in brk_0100() 42 if (result != 0) { in brk_0100()
|
/third_party/musl/libc-test/src/functionalext/supplement/locale/ |
H A D | wcscoll.c | 23 int result = wcscoll(l, r); in wcscoll_test() local 24 if (result != want_result) { in wcscoll_test() 25 t_error("%s wcscoll error get result is %d not want result %d\n", func_name, result, want_result); in wcscoll_test()
|
/third_party/musl/libc-test/src/functionalext/common/ |
H A D | time_test_data.h | 25 const char *result; member 30 const double result; member 35 const time_t result; member
|
/third_party/musl/libc-test/src/functionalext/supplement/network/ |
H A D | if_nametoindex.c | 37 unsigned int result = if_nametoindex(name); in if_nametoindex_0100() local 38 if (result != 1) { in if_nametoindex_0100() 39 t_error("%s if_nametoindex by name :'%s' get result is %d are not want 1\n", __func__, name, result); in if_nametoindex_0100()
|
/third_party/musl/libc-test/src/functionalext/supplement/stdlib/stdlib_gtest/ |
H A D | stdlib_div_test.cpp | 22 div_t result = div(NUMONE, NUMTWO); in HWTEST_F() local 23 EXPECT_EQ(EXPONE, result.quot); in HWTEST_F() 24 EXPECT_EQ(EXPTWO, result.rem); in HWTEST_F()
|
/third_party/musl/libc-test/src/functionalext/supplement/string/ |
H A D | wcpcpy.c | 30 wchar_t *result = wcpcpy(dst, src); in wcpcpy_0100() local 31 if (wcscmp(result, dst + 13) != 0) { in wcpcpy_0100() 32 t_error("%s wcpcpy get result is %ls are not want %ls\n", __func__, result, dst + 13); in wcpcpy_0100()
|