HomeSort by relevance Sort by last modified time
    Searched refs:diff (Results 526 - 550 of 3197) sorted by null

<<21222324252627282930>>

  /external/mesa3d/src/gallium/auxiliary/util/
u_dynarray.h 82 util_dynarray_grow(struct util_dynarray *buf, int diff)
84 return util_dynarray_resize(buf, buf->size + diff);
  /external/skia/gm/
SkAnimTimer.h 126 double diff = ::fabs(value - half); local
127 return SkDoubleToScalar(ends + (1.0 - diff / half) * (mid - ends));
  /external/skqp/gm/
SkAnimTimer.h 121 double diff = ::fabs(value - half); local
122 return SkDoubleToScalar(ends + (1.0 - diff / half) * (mid - ends));
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
llvm-diff.cpp 1 //===-- llvm-diff.cpp - Module comparator command-line driver ---*- C++ -*-===//
53 Engine.diff(LFn, RFn);
84 // If any global names were given, just diff those.
89 // Otherwise, diff everything in the module.
91 Engine.diff(LModule, RModule);
  /external/swiftshader/third_party/LLVM/utils/
findoptdiff 81 diff "$opt1ll" "$opt2ll" > $diffs
84 echo "Diff fails with these switches:"
  /external/toolchain-utils/binary_search_tool/android/
setup.sh 94 diff good_list bad_list
100 echo "diff exited with non-zero status: ${diff_result}"
  /external/vulkan-validation-layers/tests/
run_loader_tests.sh 87 diff \
115 diff \
  /system/core/libcutils/tests/
sched_policy_test.cpp 53 auto diff = end - start; local
54 sleepTimes.push_back(diff.count());
  /system/update_engine/scripts/
test_paycheck.sh 167 diff "${tmpdir}/${NEW_FULL_KERN_PART}" "${tmpdir}/${NEW_DELTA_KERN_PART}"
168 diff "${tmpdir}/${NEW_FULL_ROOT_PART}" "${tmpdir}/${NEW_DELTA_ROOT_PART}"
  /tools/metalava/src/test/java/com/android/tools/metalava/
AnnotationsDifferTest.kt 31 fun `Write diff`() {
54 val apiFile = temporaryFolder.newFile("diff.txt")
  /tools/repohooks/rh/
shell_unittest.py 38 """Helper that includes diff output when failing."""
44 """Like assertEqual but with built in diff support."""
45 diff = '\n'.join(list(self.differ.compare([test_output], [result])))
47 (func, test_input, test_output, result, diff))
  /tools/repohooks/tools/
google-java-format.py 43 parser.add_argument('--google-java-format-diff',
44 default='google-java-format-diff.py',
45 help='The path of the google-java-format-diff script.')
66 # google-java-format-diff.py looks for google-java-format in $PATH, so find
84 diff_cmd = ['git', 'diff', '--no-ext-diff', '-U0', '%s^!' % opts.commit]
86 diff = rh.utils.run_command(diff_cmd, capture_output=True).output
95 input=diff,
  /external/aac/libSBRdec/src/
HFgen_preFlat.cpp 589 int diff = mult_sf - sum_sf; local
591 if (diff > 0) {
593 sum >>= diff; local
595 } else if (diff < 0) {
597 mult >>= -diff;
654 int diff = mult_sf - sum_sf; local
656 if (diff > 0) {
658 sum >>= diff; local
660 } else if (diff < 0) {
662 mult >>= -diff;
755 int diff = sf - p_sf[i]; local
833 int diff = pp_sf - mult_sf; local
837 mult >>= diff; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
SICBlockCipher.java 185 long diff = 1L << (8 * i); local
186 while (rem >= diff)
189 rem -= diff;
207 long diff = 1L << (8 * i); local
208 while (rem > diff)
211 rem -= diff;
  /external/brotli/c/enc/
metablock_inc.h 109 double diff[2]; variable
118 diff[j] = combined_entropy[j] - entropy - last_entropy[j];
122 diff[0] > self->split_threshold_ &&
123 diff[1] > self->split_threshold_) {
139 } else if (diff[1] < diff[0] - 20.0) {
  /external/clang/utils/
CmpDriver 63 """ZipperDiff - Simple (slow) diff only accommodating inserts."""
143 diff = ZipperDiff(infoA.stdout.split('\n'),
145 for i,(aElt,bElt) in enumerate(diff.getDiffs()):
163 diff = ZipperDiff(infoA.stderr.split('\n'),
165 for i,(aElt,bElt) in enumerate(diff.getDiffs()):
187 diff = DriverZipperDiff(a,b)
188 diffs = list(diff.getDiffs())
  /external/eigen/bench/btl/libs/STL/
STL_interface.hh 210 real diff=A[i]-B[i]; local
211 somme+=diff*diff;
225 real diff=A[i][j] - B[i][j]; local
226 somme += diff*diff;
  /external/icu/icu4c/source/common/
uarrsort.cpp 77 int32_t diff=cmp(context, item, array+i*itemSize); local
78 if(diff==0) {
92 } else if(diff<0) {
101 int32_t diff=cmp(context, item, array+start*itemSize); local
102 if(diff==0) {
104 } else if(diff<0) {
  /external/libavc/common/
ih264_list.c 430 WORD32 diff; local
448 diff = *pi4_wr_idx - *pi4_rd_idx;
450 if(diff < ps_list->i4_buf_max_idx)
519 WORD32 diff; local
534 diff = *pi4_wr_idx - *pi4_rd_idx;
537 if(diff > 0)
  /external/linux-kselftest/tools/testing/selftests/timers/
rtctest.c 100 struct timeval start, end, diff; local
332 timersub(&end, &start, &diff);
333 if (diff.tv_sec > 0 ||
334 diff.tv_usec > ((1000000L / tmp) * 1.10)) {
336 diff.tv_sec, diff.tv_usec,
  /external/webrtc/webrtc/base/
timeutils.cc 154 int32_t diff = later - earlier; local
155 return (diff >= 0 && static_cast<uint32_t>(diff) < HALF);
164 int32_t diff = later - earlier; local
165 return (diff > 0 && static_cast<uint32_t>(diff) < HALF);
  /external/webrtc/webrtc/modules/video_coding/test/
plotTimingTest.m 52 tsDiff = diff(timeStamps);
61 plot(timeStamps(2:end), diff(renderTime(:, 2)), 'b');
62 legend('Decode time', 'Max wait time', 'Render time diff')
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/
Utils.java 223 float diff = target - source; local
224 if (diff < 0) diff += 360f;
225 if (diff > 180) diff -= 360f;
227 float result = source + diff * progress;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Utils.java 223 float diff = target - source; local
224 if (diff < 0) diff += 360f;
225 if (diff > 180) diff -= 360f;
227 float result = source + diff * progress;
  /prebuilts/go/darwin-x86/misc/cgo/testsanitizers/src/
tsan9.go 22 int diff;
32 diff = (tvnow.tv_sec - tvstart.tv_sec) * 1000 * 1000 + (tvnow.tv_usec - tvstart.tv_usec);
36 if (diff > 50 * 1000) {

Completed in 1744 milliseconds

<<21222324252627282930>>