Home
last modified time | relevance | path

Searched refs:diff (Results 1 – 25 of 25) sorted by relevance

/bionic/libc/dns/nameser/
Dns_samedomain.c57 int diff, escaped; in ns_samedomain() local
109 diff = (int)(la - lb); in ns_samedomain()
116 if (diff < 2) in ns_samedomain()
124 if (a[diff - 1] != '.') in ns_samedomain()
132 for (i = diff - 1; i > 0; i--) in ns_samedomain()
144 cp = a + diff; in ns_samedomain()
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dfgetln.c106 size_t diff; in fgetln() local
127 diff = p - fp->_p; in fgetln()
128 len += diff; in fgetln()
131 (void)memcpy(fp->_lb._base + off, fp->_p, diff); in fgetln()
132 fp->_r -= diff; in fgetln()
/bionic/libc/tzcode/
Dstrftime.c567 long diff; in _fmt() local
572 diff = t->TM_GMTOFF; in _fmt()
597 diff = -timezone; in _fmt()
603 diff = -altzone; in _fmt()
608 negative = diff < 0; in _fmt()
609 if (diff == 0) { in _fmt()
626 diff = -diff; in _fmt()
629 diff /= SECSPERMIN; in _fmt()
630 diff = (diff / MINSPERHOUR) * 100 + in _fmt()
631 (diff % MINSPERHOUR); in _fmt()
[all …]
Dlocaltime.c2134 int_fast32_t diff = mytm.TM_GMTOFF - yourtm.TM_GMTOFF; in time2sub() local
2135 if (!increment_overflow_time(&altt, diff)) { in time2sub()
/bionic/libc/upstream-openbsd/lib/libc/time/
Dwcsftime.c455 int diff; in _fmt() local
460 diff = t->tm_gmtoff; in _fmt()
461 if (diff < 0) { in _fmt()
463 diff = -diff; in _fmt()
467 diff /= SECSPERMIN; in _fmt()
468 diff = (diff / MINSPERHOUR) * 100 + in _fmt()
469 (diff % MINSPERHOUR); in _fmt()
470 pt = _conv(diff, L"%04d", pt, ptlim); in _fmt()
/bionic/tools/versioner/tests/preprocessor_no_guard/
Drun.sh4 diff -q -w -B out expected
/bionic/tools/versioner/tests/preprocessor_idempotence/
Drun.sh4 diff -q -w -B out expected
/bionic/tools/versioner/tests/preprocessor_merging/
Drun.sh4 diff -q -w -B out expected
/bionic/tools/versioner/tests/preprocessor_file_offset_bits/
Drun.sh5 diff -q -w -B out expected
/bionic/tools/versioner/tests/slow_preprocessor_idempotence/
Drun.sh6 diff -qrwB out/initial out/second
/bionic/tools/versioner/tests/preprocessor/
Drun.sh8 diff -q -w -B $2 expected
/bionic/tools/versioner/tests/preprocessor_extern_cpp/
Drun.sh8 diff -q -w -B $2 expected
/bionic/tools/
Dupdate_notice.sh14 git diff --exit-code HEAD libc/NOTICE
/bionic/tools/versioner/src/
DDriver.cpp232 auto diff = (end - start) / 1.0ms; in initializeTargetCC1FlagCache() local
233 printf("Generated compiler flags for %zu targets in %0.2Lfms\n", types.size(), diff); in initializeTargetCC1FlagCache()
Dversioner.cpp671 auto diff = (end - start) / 1.0ms; in main() local
672 printf("Compiled headers for %zu targets in %0.2LFms\n", compilation_types.size(), diff); in main()
/bionic/libc/kernel/tools/
Dgenerate_uapi_headers.sh120 if [[ -e ${tgt_file} ]] && ! diff "${file}" "${tgt_file}" > /dev/null; then
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/
Dgdtoaimp.h536 #define diff __diff_D2A macro
588 extern Bigint *diff ANSI((Bigint*, Bigint*));
Dstrtodg.c829 delta = diff(bb, bd);
1003 rvb = diff(rvb, ab);
Ddtoa.c669 delta = diff(S, mhi);
Dgdtoa.c669 delta = diff(S, mhi);
Dmisc.c552 diff in diff() function
Dstrtod.c679 delta = diff(bb, bd);
/bionic/docs/
Dfdsan.md142 ```diff
191 ```diff
Delf-tls.md397 [r240543]: https://github.com/llvm-mirror/lldb/commit/79246050b0f8d6b54acb5366f153d07f235d2780#diff
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp178 std::string diff; in ShowDiffs() local
181 diff += android::base::StringPrintf("Byte %zu: 0x%x 0x%x\n", i, a[i], b[i]); in ShowDiffs()
184 return diff; in ShowDiffs()