| /external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
| DecimalQuantity_AbstractBCD.java | 628 int diff = a - b; local 629 if (b < 0 && diff < a) return Integer.MAX_VALUE; 630 if (b > 0 && diff > a) return Integer.MIN_VALUE; 631 return diff;
|
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
| DecimalQuantity_AbstractBCD.java | 626 int diff = a - b; local 627 if (b < 0 && diff < a) return Integer.MAX_VALUE; 628 if (b > 0 && diff > a) return Integer.MIN_VALUE; 629 return diff;
|
| /external/libevent/test/ |
| regress_thread.c | 550 struct timeval diff; local 552 evutil_timersub(×[i], &starttime, &diff); 553 sec = diff.tv_sec + diff.tv_usec/1.0e6;
|
| /external/libnl/python/netlink/route/ |
| tc.py | 92 diff = self.ifindex - other.ifindex 93 if diff == 0: 94 diff = int(self.handle) - int(other.handle) 95 return diff
|
| /external/ltp/utils/ffsb-6.0-rc2/ |
| fileops.c | 37 struct timeval diff; local 43 timersub(end, start, &diff); 45 value = 1000000 * diff.tv_sec + diff.tv_usec;
|
| /external/pdfium/third_party/libopenjpeg20/ |
| mqc.c | 276 const ptrdiff_t diff = mqc->bp - mqc->start; local 278 assert(diff <= 0xffffffff && diff >= 0); /* UINT32_MAX */ 280 return (OPJ_UINT32)diff;
|
| /external/tensorflow/tensorflow/contrib/factorization/python/ops/ |
| gmm_ops.py | 291 diff = shard - self._means 298 diff, perm=[0, 2, 1]), lower=True)) 317 diff = shard - self._means 318 x2 = math_ops.square(diff)
|
| /external/toolchain-utils/binary_search_tool/ |
| binary_search_state.py | 414 diff = int(time.time() - self.start_time) 415 seconds = diff % 60 416 minutes = (diff / 60) % 60 417 hours = diff / (60 * 60)
|
| /external/webrtc/webrtc/common_audio/vad/ |
| vad_core.c | 133 int16_t diff; local 411 // |diff| = "global" speech mean - "global" noise mean. 413 diff = (int16_t) (speech_global_mean >> 9) - 415 if (diff < kMinimumDifference[channel]) { 416 tmp_s16 = kMinimumDifference[channel] - diff; 418 // |tmp1_s16| = ~0.8 * (kMinimumDifference - diff) in Q7. 419 // |tmp2_s16| = ~0.2 * (kMinimumDifference - diff) in Q7.
|
| /external/webrtc/webrtc/modules/audio_coding/neteq/test/delay_tool/ |
| plot_neteq_delay.m | 170 jumps=find(abs((diff(x)-1))>65000); 182 jumps=find(abs((diff(x(n+1:end))-1))>65000);
|
| /frameworks/base/core/java/com/android/internal/util/ |
| ArrayUtils.java | 571 boolean diff = false; 572 for (int i = 0; i < sizeA && !diff; i++) { 573 diff |= a.get(i) != b.get(i); 575 return !diff;
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
| StackStateAnimator.java | 295 float diff = index - shelfIndex; local 296 diff = (float) Math.pow(diff, 0.7f); 297 result += (long) (diff * ANIMATION_DELAY_PER_ELEMENT_GO_TO_FULL_SHADE * 0.25);
|
| /frameworks/layoutlib/rename_font/ |
| build_font_single.py | 190 keep the style info, to minimize the diff. """
|
| /packages/apps/Contacts/src/com/android/contacts/model/ |
| RawContactDelta.java | 394 private void possibleAdd(ArrayList<ContentProviderOperation> diff, 397 diff.add(builder.build()); 405 private void possibleAddWrapper(ArrayList<CPOWrapper> diff, BuilderWrapper bw) { 407 diff.add(new CPOWrapper(bw.getBuilder().build(), bw.getType()));
|
| /system/media/audio_utils/include/audio_utils/ |
| fifo.h | 95 int32_t diff(uint32_t rear, uint32_t front, size_t *lost = NULL, bool flush = false) const;
|
| /system/security/keystore/ |
| test-keystore | 62 diff $baseline_file $log_file || (log $tag FAILED && exit 1)
|
| /toolchain/binutils/binutils-2.27/gprof/ |
| cg_arcs.c | 542 double diff; local 544 diff = (left->cg.prop.self + left->cg.prop.child) 546 if (diff < 0.0) 550 if (diff > 0.0)
|
| /external/dng_sdk/source/ |
| dng_lossless_jpeg.cpp | 3036 int16 diff = (int16) (pixel - predictor [channel]); local 3142 int16 diff = (int16) (pixel - predictor [channel]); local [all...] |
| /art/tools/ahat/src/test/com/android/ahat/ |
| DiffFieldsTest.java | 140 // field diff to match the order of the returned fields. If the 153 List<DiffedFieldValue> diffed = DiffFields.diff(a, b); 178 // field diff to match the order of the returned fields. If the 190 List<DiffedFieldValue> diffed = DiffFields.diff(a, b);
|
| /bionic/tools/versioner/src/ |
| Driver.cpp | 237 auto diff = (end - start) / 1.0ms; local 238 printf("Generated compiler flags for %zu targets in %0.2Lfms\n", types.size(), diff);
|
| /build/kati/ |
| runtest.rb | 304 puts `diff -u out.make out.kati` 380 puts `diff -u out.make out.kati`
|
| /development/tools/repo_diff/ |
| repo_diff_trees.py | 76 """Retrieves stats of diff between two git revisions. 79 directory: A path to the git directory to diff. 80 rev_a: A git revision to diff. 81 rev_b: A git revision to diff. 94 ['-C', directory, 'diff', '--shortstat', rev_a, rev_b]) 104 """Retrieves stats of diff between two git projects. 441 'Diff Status', 460 'Diff Status': stat['status'], 470 def diff(upstream_source_tree, downstream_source_tree, project_output_file, function 472 """Diff one repo source tree against another [all...] |
| /device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/ |
| gdtoaimp.h | 509 #define diff __diff_D2A
macro 561 extern Bigint *diff (Bigint*, Bigint*);
|
| /external/clang/utils/analyzer/ |
| CmpRuns.py | 25 diff = compareResults(resultsA, resultsB) 245 # the structure of the diagnostic), compute the diff, then use that as the 267 diff = compareResults(resultsA, resultsB) 269 for res in diff:
|
| /external/curl/lib/ |
| checksrc.pl | 500 my $diff = $second - $first; 502 "not indented $indent steps, uses $diff)");
|