HomeSort by relevance Sort by last modified time
    Searched defs:diff (Results 276 - 300 of 368) sorted by null

<<1112131415

  /external/valgrind/main/coregrind/
m_main.c 3028 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...]
  /frameworks/av/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 553 nsecs_t diff = now - mLastFpsTime; local
554 mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 440 int diff = Time.THURSDAY - firstDayOfWeek; local
441 if (diff < 0) {
442 diff += 7;
444 int refDay = Time.EPOCH_JULIAN_DAY - diff;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 356 final ArrayList<ContentProviderOperation> diff = state.buildDiff(); local
359 for (ContentProviderOperation operation : diff) {
365 if (!diff.isEmpty()) {
366 results = resolver.applyBatch(ContactsContract.AUTHORITY, diff);
369 final long rawContactId = getRawContactId(state, diff, results);
375 insertedRawContactId = getInsertedRawContactId(diff, results);
522 final ArrayList<ContentProviderOperation> diff,
529 return getInsertedRawContactId(diff, results);
536 final ArrayList<ContentProviderOperation> diff,
538 final int diffSize = diff.size()
    [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 887 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...]
  /external/libxml2/
xmlschemastypes.c 5760 int diff = dec.total - dec.frac; local
    [all...]
  /external/opencv/ml/src/
mltree.cpp 2994 double diff = node->right->sample_count - node->left->sample_count; local
    [all...]
  /external/qemu/block/
vvfat.c 2371 int diff = l1 - l2; local
    [all...]
  /external/skia/samplecode/
SampleApp.cpp 772 SkBitmap* diff) {
861 SkBitmap diff; local
862 if (bitmap_diff(canvas, orig, &diff)) {
    [all...]
  /external/v8/src/
liveobjectlist.cc 2445 int diff = lol->capacity_ - new_count; local
    [all...]
  /external/webkit/Source/WebCore/dom/
Node.cpp 305 Node::StyleChange Node::diff(const RenderStyle* s1, const RenderStyle* s2) function in class:WebCore::Node
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderObject.cpp 1611 StyleDifference diff = StyleDifferenceEqual; local
    [all...]
  /frameworks/base/core/java/android/widget/
CalendarView.java 1581 int diff = mFirstDayOfWeek - mTempDate.get(Calendar.DAY_OF_WEEK); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 1041 final int diff = state ^ old; local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java 1299 float diff = a - b; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbxstr.h 637 CARD8 diff; member in struct:__anon22682
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbxstr.h 637 CARD8 diff; member in struct:__anon24272
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbxstr.h 637 CARD8 diff; member in struct:__anon25784
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.cc 895 const double diff = fabs(val1 - val2); local
896 if (diff <= abs_error) return AssertionSuccess();
902 << " is " << diff << ", which exceeds " << abs_error_expr << ", where\n"
    [all...]
  /external/chromium/testing/gtest/src/
gtest.cc 1042 const double diff = fabs(val1 - val2); local
    [all...]

Completed in 2820 milliseconds

<<1112131415