/external/tcpdump/tests/ |
isakmp3.sh | 7 if diff isakmp3.new isakmp3.out
|
isakmp4.sh | 7 if diff isakmp4.new isakmp4.out
|
lmp.sh | 7 if diff lmp.new lmp.out
|
ospf-gmpls.sh | 7 if diff ospf-gmpls.new ospf-gmpls.out
|
print-flags.sh | 6 if (../tcpdump -$i -s0 -nr print-flags.pcap | tee print-$i.new | diff - print-$i.out)
|
/packages/apps/Camera/src/com/android/camera/ui/ |
RotateImageView.java | 76 int diff = mTargetDegree - mCurrentDegree; local 77 diff = diff >= 0 ? diff : 360 + diff; // make it in range [0, 359] 81 diff = diff > 180 ? diff - 360 : diff; 83 mClockwise = diff >= 0 [all...] |
/packages/apps/Camera2/src/com/android/camera/ui/ |
RotateImageView.java | 76 int diff = mTargetDegree - mCurrentDegree; local 77 diff = diff >= 0 ? diff : 360 + diff; // make it in range [0, 359] 81 diff = diff > 180 ? diff - 360 : diff; 83 mClockwise = diff >= 0 [all...] |
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
RotateImageView.java | 77 int diff = mTargetDegree - mCurrentDegree; local 78 diff = diff >= 0 ? diff : 360 + diff; // make it in range [0, 359] 82 diff = diff > 180 ? diff - 360 : diff; 84 mClockwise = diff >= 0 [all...] |
/build/tools/droiddoc/test/stubs/ |
run.sh | 32 diff -r $DIR/expected $A_STUBS 34 diff -r $A_STUBS $B_STUBS
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
StackStats.cpp | 106 // Update the checkpoint diff stats: 107 int diff = last - current; local 108 if (diff > StackStats::s_maxCheckPointDiff) { 109 StackStats::s_maxCheckPointDiff = diff; 123 dataLogF(" CHECKPOINT %p diff %d/%.1fk/max %.1fk | reentry %d/max %d | height %.1fk/max %.1fk | stack %p size %.1fk\n", 124 this, diff, diff / 1024.0, StackStats::s_maxCheckPointDiff / 1024.0, 148 dataLogF(" POP to %p diff max %.1fk | reentry %d/%d max | height %.1fk/max %.1fk | stack %p size %.1fk)\n", 184 // Update the checkpoint diff stats: 185 int diff = last - current local 235 int diff = last - current; local [all...] |
/external/chromium_org/tools/gyp/test/variables/commands/ |
gyptest-commands-repeated.py | 35 test.diff(expect, contents, 'commands-repeated.gypd ')
|
gyptest-commands.py | 36 test.diff(expect, contents, 'commands.gypd ')
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowProgressBar.java | 70 public void incrementProgressBy(int diff) { 71 if (!isIndeterminate()) setProgress(progress + diff); 75 public void incrementSecondaryProgressBy(int diff) { 76 if (!isIndeterminate()) setSecondaryProgress(secondaryProgress + diff);
|
/external/valgrind/main/auxprogs/ |
posixtestsuite-1.5.1-diff-results | 20 diff -U2 tmptmp_1 tmptmp_2;
|
/external/libvpx/libvpx/test/ |
vp9_subtract_test.cc | 46 int16_t *diff = reinterpret_cast<int16_t *>( local 47 vpx_memalign(16, sizeof(*diff) * block_width * block_height * 2)); 61 GetParam()(block_height, block_width, diff, block_width, 66 EXPECT_EQ(diff[r * block_width + c], 74 GetParam()(block_height, block_width, diff, block_width * 2, 79 EXPECT_EQ(diff[r * block_width * 2 + c], 87 vpx_free(diff);
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
EntityDiff.java | 48 final EntityDiff diff = new EntityDiff(); local 57 diff.add(builder.build()); 66 diff.add(builder.build()); 74 diff.add(builder.build()); 79 diff.add(builder.build()); 89 diff.add(builder.build()); 105 diff.add(builder.build()); 112 diff.add(builder.build()); 123 diff.add(builder.build()); 127 return diff; [all...] |
EntitySet.java | 115 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local 122 delta.buildAssert(diff); 125 final int assertMark = diff.size(); 132 final int firstBatch = diff.size(); 134 delta.buildDiff(diff); 147 diff.add(builder.build()); 158 diff.add(builder.build()); 163 buildSplitContactDiff(diff, backRefs); 167 if (diff.size() == assertMark) { 168 diff.clear() [all...] |
/external/chromium_org/third_party/skia/src/views/animated/ |
SkProgressBarView.cpp | 23 void SkProgressBarView::changeProgress(int diff) 25 int newProg = fProgress + diff; 35 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); local 37 if (diff == SkAnimator::kDifferent) 39 else if (diff == SkAnimator::kPartiallyDifferent)
|
/external/skia/src/views/animated/ |
SkProgressBarView.cpp | 23 void SkProgressBarView::changeProgress(int diff) 25 int newProg = fProgress + diff; 35 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); local 37 if (diff == SkAnimator::kDifferent) 39 else if (diff == SkAnimator::kPartiallyDifferent)
|
/frameworks/av/media/libstagefright/codecs/aacenc/src/ |
quantize.c | 349 Word32 diff; local 364 diff = saShft - repquat[0]; 365 distSingle = (diff * diff) >> g2; 370 diff = saShft - repquat[1]; 371 distSingle = (diff * diff) >> g2; 376 diff = saShft - repquat[2]; 377 distSingle = (diff * diff) >> g2 399 Word32 diff; local [all...] |
/system/extras/tests/bionic/libc/common/ |
test_drand48.c | 12 double diff = a -b; local 13 if (diff < 0) diff = -diff; 25 return diff < a*1e-8;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayerModelObject.cpp | 92 void RenderLayerModelObject::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) 107 if (diff == StyleDifferenceRepaintLayer) { 111 } else if (diff == StyleDifferenceRepaint || newStyle->outlineSize() < oldStyle->outlineSize()) 115 if (diff == StyleDifferenceLayout || diff == StyleDifferenceSimplifiedLayout) { 137 RenderObject::styleWillChange(diff, newStyle); 140 void RenderLayerModelObject::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) 142 RenderObject::styleDidChange(diff, oldStyle); 168 layer()->styleChanged(diff, oldStyle);
|
/external/chromium_org/media/video/capture/win/ |
capability_list_win.cc | 66 ResolutionDiff diff; local 67 diff.capability = &(*it); 68 diff.diff_width = it->width - requested_width; 69 diff.diff_height = it->height - requested_height; 71 diff.diff_frame_rate = 75 diff_list.push_back(diff);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGInline.cpp | 115 void RenderSVGInline::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) 117 if (diff == StyleDifferenceLayout) 119 RenderInline::styleWillChange(diff, newStyle); 122 void RenderSVGInline::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) 124 RenderInline::styleDidChange(diff, oldStyle); 125 SVGResourcesCache::clientStyleChanged(this, diff, style());
|
/external/chromium_org/webkit/child/ |
fling_animator_impl_android.cc | 106 gfx::Vector2d diff(current_position - last_position_); 110 WebKit::WebFloatSize scroll_amount(diff.x() / dpi_scale, 111 diff.y() / dpi_scale); 121 float diff_length = diff.Length(); 125 current_velocity = gfx::PointF(diff.x() * scroll_to_velocity, 126 diff.y() * scroll_to_velocity);
|