HomeSort by relevance Sort by last modified time
    Searched defs:diff (Results 226 - 250 of 297) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/traceview/src/com/android/traceview/
MethodData.java 439 double diff = time1 - time2; local
441 if (diff < 0)
443 else if (diff > 0)
454 double diff = time1 - time2; local
456 if (diff < 0)
458 else if (diff > 0)
  /bionic/libc/stdlib/
strtod.c 924 diff function
    [all...]
  /external/chromium/net/disk_cache/
backend_impl.cc 1155 int64 diff = (num_refs_ - current) \/ 50; local
    [all...]
  /external/chromium/testing/gmock/test/
gmock-matchers_test.cc 148 const int diff = lhs - rhs_; local
149 if (diff > 0) {
150 *listener << "which is " << diff << " more than " << rhs_;
151 } else if (diff == 0) {
154 *listener << "which is " << -diff << " less than " << rhs_;
    [all...]
  /external/e2fsprogs/lib/blkid/
probe.c 1505 time_t diff, now; local
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 1140 int diff = b.gapChanged(); local
1471 int diff = newGap - gap; local
    [all...]
  /external/libvpx/vp8/encoder/
onyx_if.c 2383 int diff; local
    [all...]
  /external/opencv/cv/src/
cvcolor.cpp 1225 int vmin = b, diff; local
1271 float vmin, diff; local
1461 float vmin, vmax, diff; local
    [all...]
  /external/opencv/ml/src/
mlsvm.cpp 656 double diff = alpha_i - alpha_j; local
660 if( diff > 0 && alpha_j < 0 )
663 alpha_i = diff;
665 else if( diff <= 0 && alpha_i < 0 )
668 alpha_j = -diff;
671 if( diff > C_i - C_j && alpha_i > C_i )
674 alpha_j = C_i - diff;
676 else if( diff <= C_i - C_j && alpha_j > C_j )
679 alpha_i = C_j + diff;
    [all...]
  /external/ppp/pppd/
auth.c 1110 int diff; local
1131 diff = maxoctets - used;
1132 if(diff < 0) {
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngrutil.c 2355 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
2398 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
2440 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
2649 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
2693 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
2733 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
    [all...]
  /external/skia/samplecode/
SampleApp.cpp 510 SkBitmap* diff) {
627 SkBitmap diff; local
628 if (bitmap_diff(canvas, orig, &diff)) {
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 467 SkScalar diff; local
470 diff = dst.width() - SkScalarMul(src.width(), sy);
472 diff = dst.height() - SkScalarMul(src.height(), sy);
476 diff = SkScalarHalf(diff);
480 tx += diff;
482 ty += diff;
    [all...]
  /external/valgrind/main/coregrind/
m_main.c 3194 Int q, uneg, vneg, diff, borrow; local
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MIPSAssembler.h 867 intptr_t diff = (reinterpret_cast<intptr_t>(to) local
870 if (diff < -32768 || diff > 32767 || *(insn + 2) != 0x10000003) {
933 *insn = (*insn & 0xffff0000) | (diff & 0xffff);
  /external/webkit/Source/JavaScriptCore/wtf/
dtoa.cpp 550 static ALWAYS_INLINE void diff(BigInt& c, const BigInt& aRef, const BigInt& bRef) function in namespace:WTF
1032 diff(delta, bb, bd);
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/main/source/
aecm_core.c 202 WebRtc_Word32 diff; local
207 diff = (WebRtc_Word32)newVal - median;
208 diff = WEBRTC_SPL_SHIFT_W32(diff, -factor);
209 median = median + diff;
1550 WebRtc_Word16 delay, diff, diffMinusOne; local
    [all...]
  /frameworks/base/core/java/android/widget/
CalendarView.java 1264 int diff = mFirstDayOfWeek - mTempDate.get(Calendar.DAY_OF_WEEK); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
vlc_encode.cpp 2057 Int diff, QPtmp; local
    [all...]
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 557 nsecs_t diff = now - mLastFpsTime; local
558 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 402 int diff = Time.THURSDAY - firstDayOfWeek; local
403 if (diff < 0) {
404 diff += 7;
406 int refDay = Time.EPOCH_JULIAN_DAY - diff;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 310 final ArrayList<ContentProviderOperation> diff = state.buildDiff(); local
313 for (ContentProviderOperation operation : diff) {
319 if (!diff.isEmpty()) {
320 results = resolver.applyBatch(ContactsContract.AUTHORITY, diff);
323 final long rawContactId = getRawContactId(state, diff, results);
404 final ArrayList<ContentProviderOperation> diff,
411 final int diffSize = diff.size();
413 ContentProviderOperation operation = diff.get(i);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
CustomContactListFilterActivity.java 372 throw new IllegalStateException("Unexpected diff");
440 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
442 account.buildDiff(diff);
444 return diff;
526 public void buildDiff(ArrayList<ContentProviderOperation> diff) {
529 if (oper != null) diff.add(oper);
533 if (oper != null) diff.add(oper);
839 final ArrayList<ContentProviderOperation> diff = mAdapter.mAccounts.buildDiff(); local
840 if (diff.isEmpty()) {
845 new UpdateTask(this).execute(diff);
882 final ArrayList<ContentProviderOperation> diff = params[0]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssistTest.java 871 String diff = getDiff(beforeWithCaret, actual); local
    [all...]
  /external/icu4c/i18n/
vtzone.cpp 645 int32_t diff = tmp_month - month; local
646 if (diff == -11 || diff == -1) {
652 } else if (diff == 11 || diff == 1) {
    [all...]

Completed in 2857 milliseconds

1 2 3 4 5 6 7 8 91011>>