HomeSort by relevance Sort by last modified time
    Searched defs:diff (Results 76 - 100 of 2033) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/image/png/
writer_test.go 16 func diff(m0, m1 image.Image) error { func
72 err = diff(m0, m2)
116 err = diff(m0, m1)
  /prebuilts/go/linux-x86/src/image/png/
writer_test.go 16 func diff(m0, m1 image.Image) error { func
72 err = diff(m0, m2)
116 err = diff(m0, m1)
  /toolchain/binutils/binutils-2.25/libiberty/
strverscmp.c 80 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
96 int diff; local
132 while ((diff = c1 - c2) == 0 && c1 != '\0')
145 return diff;
152 return ISDIGIT (*p2) ? -1 : diff;
  /art/compiler/linker/mips/
relative_patcher_mips32r6_test.cc 45 0x34, 0x12, 0x5E, 0xEE, // auipc s2, high(diff); placeholder = 0x1234
46 0x78, 0x56, 0x52, 0x26, // addiu s2, s2, low(diff); placeholder = 0x5678
62 uint32_t diff = target_offset - (result.second + kAnchorOffset); local
63 diff += (diff & 0x8000) << 1; // Account for sign extension in addiu.
66 static_cast<uint8_t>(diff >> 16), static_cast<uint8_t>(diff >> 24), 0x5E, 0xEE,
67 static_cast<uint8_t>(diff), static_cast<uint8_t>(diff >> 8), 0x52, 0x26,
relative_patcher_mips_test.cc 50 0x34, 0x12, 0x12, 0x3C, // lui s2, high(diff); placeholder = 0x1234
52 0x78, 0x56, 0x52, 0x26, // addiu s2, s2, low(diff); placeholder = 0x5678
67 uint32_t diff = target_offset - (result.second + kAnchorOffset); local
69 diff += kDexCacheArrayLwOffset;
71 diff += (diff & 0x8000) << 1; // Account for sign extension in addiu.
75 static_cast<uint8_t>(diff >> 16), static_cast<uint8_t>(diff >> 24), 0x12, 0x3C,
77 static_cast<uint8_t>(diff), static_cast<uint8_t>(diff >> 8), 0x52, 0x26
    [all...]
  /art/runtime/arch/arm64/
memcmp16_arm64.S 39 #define diff x6 define
66 eor diff, data1, data2 /* Non-zero if differences found. */
67 csinv endloop, diff, xzr, ne /* Last Dword or differences. */
71 /* Not reached the limit, must have found a diff. */
86 // Swap the byte order of diff. Exact reverse is not important, as we only need to detect
88 rev diff, diff
89 // The most significant bit of DIFF marks the least significant bit of change between DATA1/2
90 clz diff, diff
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
memcmp.S 47 #define diff x6 define
71 eor diff, data1, data2 /* Non-zero if differences found. */
72 csinv endloop, diff, xzr, ne /* Last Dword or differences. */
76 /* Not reached the limit, must have found a diff. */
93 orr diff, diff, mask
97 rev diff, diff
101 /* The MS-non-zero bit of DIFF marks either the first bit
105 clz pos, diff
    [all...]
strcmp.S 50 #define diff x5 define
76 eor diff, data1, data2 /* Non-zero if differences found. */
78 orr syndrome, diff, has_nul
117 orr syndrome, diff, has_nul
  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
fifo.c 69 int32_t diff = rear - front; local
75 diff -= fifo->mFudgeFactor;
79 ALOG_ASSERT(0 <= diff && diff <= (int32_t) fifo->mFrameCount);
80 return (size_t) diff;
  /cts/tests/tests/content/src/android/content/res/cts/
FractionTest.java 80 float diff = Math.abs(expected - res); local
87 + Integer.toHexString(resid) + " " + mValue, diff > prec);
  /dalvik/libdex/
DexUtf.cpp 41 int diff = utf1 - utf2; local
43 if (diff != 0) {
44 return diff;
  /external/bison/lib/
strverscmp.c 34 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
67 int diff; local
103 while ((diff = c1 - c2) == 0 && c1 != '\0')
116 return diff;
123 return ISDIGIT (*p2) ? -1 : diff;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Nat384.java 16 boolean neg = Nat192.diff(x, 6, x, 0, dx, 0) != Nat192.diff(y, 6, y, 0, dy, 0);
35 Nat192.diff(x, 6, x, 0, dx, 0);
Nat512.java 16 boolean neg = Nat256.diff(x, 8, x, 0, dx, 0) != Nat256.diff(y, 8, y, 0, dy, 0);
35 Nat256.diff(x, 8, x, 0, dx, 0);
  /external/compiler-rt/test/asan/TestCases/Linux/
nohugepage_test.cc 101 long diff = rss[i+1] / rss[i]; local
103 diff < 10 ? "SMALL" : "LARGE", rss[i], rss[i + 1]);
  /external/harfbuzz_ng/util/
ansi-print.cc 82 color_diff_t diff (const color_t &o) function in struct:color_t
201 color_diff_t diff = fgc.diff (bgc);
202 int dd = diff.dot (diff);
205 int d = diff.dot (image (x, y).diff (bgc));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
ElapsedTimer.java 105 long diff = age/1000; // millis per second. Workaround ticket:7936 by using whole number seconds. local
106 return fmt.format(diff);
  /external/icu/icu4c/source/tools/toolutil/
filetools.cpp 114 double diff; local
119 diff = difftime(modtime1, modtime2);
120 if (diff < 0.0) {
122 } else if (diff > 0.0) {
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
ElapsedTimer.java 104 long diff = age/1000; // millis per second. Workaround ticket:7936 by using whole number seconds. local
105 return fmt.format(diff);
  /external/linux-kselftest/tools/testing/selftests/timers/
posix_timers.c 65 long long diff; local
67 diff = end.tv_usec - start.tv_usec;
68 diff += (end.tv_sec - start.tv_sec) * USECS_PER_SEC;
70 if (abs(diff - DELAY * USECS_PER_SEC) > USECS_PER_SEC / 2) {
71 printf("Diff too high: %lld..", diff);
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_clntraw_create/
rpc_clntraw_create_performance.c 95 long long diff; local
116 diff =
119 rslt = (double)diff / 1000;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_svcraw_create/
rpc_svcraw_create_performance.c 95 long long diff; local
115 diff =
118 rslt = (double)diff / 1000;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_svctcp_create/
rpc_svctcp_create_performance.c 95 long long diff; local
118 diff =
121 rslt = (double)diff / 1000;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_createdestroy_svcudp_create/
rpc_svcudp_create_performance.c 95 long long diff; local
118 diff =
121 rslt = (double)diff / 1000;
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/rpc/rpc_stdcall_callrpc/
rpc_callrpc_performance.c 95 long long diff; local
123 diff =
126 rslt = (double)diff / 1000;

Completed in 1564 milliseconds

1 2 34 5 6 7 8 91011>>