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

/fuchsia/zircon/bootloader/lib/
H A Dstrings.c10 int diff = tolower(*s1) - tolower(*s2); local
11 if (diff != 0 || *s1 == '\0') {
12 return diff;
21 int diff = tolower(*s1) - tolower(*s2); local
22 if (diff != 0 || *s1 == '\0') {
23 return diff;
H A Dstring.c82 int diff = *s1 - *s2; local
83 if (diff != 0 || *s1 == '\0') {
84 return diff;
/fuchsia/zircon/third_party/lib/acpica/tests/templates/
H A DMakefile8 rm -f *.asl *.aml *.dsl *.hex diff.log
H A Dtemplates.sh36 > diff.log
47 diff -pu -I" \*" $sig.asl $sig.dsl >> diff.log
/fuchsia/zircon/third_party/lib/cortex-strings/src/aarch64/
H A Dmemcmp.S54 #define diff x6 define
78 eor diff, data1, data2 /* Non-zero if differences found. */
79 csinv endloop, diff, xzr, ne /* Last Dword or differences. */
83 /* Not reached the limit, must have found a diff. */
100 orr diff, diff, mask
104 rev diff, diff
112 clz pos, diff
H A Dstrcmp.S55 #define diff x5 define
80 eor diff, data1, data2 /* Non-zero if differences found. */
82 orr syndrome, diff, has_nul
121 orr syndrome, diff, has_nul
H A Dstrncmp.S56 #define diff x6 define
95 eor diff, data1, data2 /* Non-zero if differences found. */
96 csinv endloop, diff, xzr, pl /* Last Dword or differences. */
102 /* Not reached the limit, must have found the end or a diff. */
123 orr syndrome, diff, has_nul
160 orr syndrome, diff, has_nul
/fuchsia/zircon/third_party/uapp/dash/src/
H A Dsystem.c109 int diff = cmp(key, midobj); local
111 if (diff == 0)
114 if (diff > 0) {
/fuchsia/zircon/system/ulib/perftest/
H A Dresults.cpp33 double diff = value - mean; local
34 sum_of_squared_diffs += diff * diff;
/fuchsia/zircon/kernel/dev/timer/arm_generic/
H A Darm_generic_timer.cpp239 uint64_t diff = abs_int64(a - b); local
240 if (diff <= limit)
241 LTRACEF("ROUNDED by %" PRIu64 " (up to %" PRIu64 " allowed)\n", diff, limit);
243 TRACEF("FAIL, off by %" PRIu64 "\n", diff);
/fuchsia/zircon/scripts/
H A Dupdate-prebuilt-versions131 diff -u "$VERSIONS_FILE" "$NEW_VERSIONS_FILE" && exit 0
H A Dsymbolize386 diff = self.bias - self.zircon_code_start
389 diff = self.zircon_code_start - self.bias
391 writeline('kaslr offset is %c0x%x' % (c, diff))
/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Dlarge.c106 size_t diff = extent_size_get(extent) - (usize + large_pad); local
114 if (diff != 0) {
116 &extent_hooks, extent, usize + large_pad, usize, diff,
117 diff);
H A Darena.c142 size_t diff, regind; local
152 diff = (size_t)((uintptr_t)ptr - (uintptr_t)extent_addr_get(slab));
156 regind = diff / (reg_size); \
157 assert(diff == regind * (reg_size)); \
/fuchsia/zircon/kernel/lib/memory_limit/
H A Dmemory_limit.cpp102 size_t diff = ctx->ramdisk_size - ctx->memory_limit; local
104 "of %zu bytes by %zu bytes!\n", ctx->memory_limit, diff);
105 ctx->memory_limit += diff;
/fuchsia/zircon/system/ulib/cobalt-client/
H A Dhistogram.cpp54 double diff = value - options.offset; local
57 if (diff >= options.scalar) {
58 unshifted_bucket = static_cast<uint32_t>(floor((log2(diff) - log2(options.scalar)) / log2(options.base)));
/fuchsia/zircon/system/core/virtcon/
H A Dtextcon.cpp149 // Scroll by |diff| lines, which may be positive (for moving lines up) or
151 static void scroll_lines(textcon_t* tc, int y0, int y1, int diff) { argument
152 int delta = diff > 0 ? diff : -diff;
156 if (diff > 0) {
H A Dvc-device.cpp393 int diff = vpy - vc->viewport_y; local
394 if (diff == 0)
396 int diff_abs = ABS(diff);
407 if (diff > 0) {
H A Dtextcon-test.cpp150 bool diff = diffs[x + y * cmp_size_x]; local
151 *ptr++ = diff ? 'D' : '-';
/fuchsia/zircon/system/uapp/gpt/
H A Dgpt.c137 #define CHECK(f) setxy(diff & (f), &X, &Y)
155 unsigned diff; local
156 gpt_get_diffs(gpt, i, &diff);
/fuchsia/zircon/third_party/uapp/kilo/
H A Dkilo.c1118 int diff = E.cx - E.screencols; local
1119 E.cx -= diff;
1120 E.coloff += diff;
/fuchsia/zircon/third_party/ulib/linenoise/
H A Dlinenoise.c805 size_t diff; local
811 diff = old_pos - l->pos;
813 l->len -= diff;
/fuchsia/zircon/third_party/ulib/jemalloc/bin/
H A Djeprof.in4729 my $diff;
4733 $diff = (hex($addr1)-hex($addr2)) % (0x10000000 * 16);
4734 return sprintf("%08x", $diff);
4749 $diff = $a1 - $a2;
4750 my $r = sprintf("%07x", $diff);
4761 $diff = $a1 - $a2;
4762 $r = sprintf("%07x", $diff) . $r;
4767 $diff = $a1 - $a2;
4768 $r = sprintf("%02x", $diff) . $r;
/fuchsia/zircon/third_party/ulib/lz4/
H A Dlz4.c323 size_t diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); local
324 if (!diff) { pIn+=STEPSIZE; pMatch+=STEPSIZE; continue; }
325 pIn += LZ4_NbCommonBytes(diff);
/fuchsia/zircon/third_party/ulib/uboringssl/crypto/chacha/asm/
H A Dchacha-armv8.pl801 my $diff = ($#thread0+1)*6 - $#thread67 - 1;

Completed in 181 milliseconds