HomeSort by relevance Sort by last modified time
    Searched refs:diff (Results 201 - 225 of 1090) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/qemu/distrib/libpng-1.2.19/
pnggccrd.c 123 * - made "diff" variable (now "_dif") global to simplify conversion of
124 * filtering routines (running out of regs, sigh). "diff" is still used
327 * "diff"--see 19991120 entry above), using register constraints
1010 int diff; local
1133 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
1176 int diff; local
1306 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
1347 int diff; local
1440 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
1649 int diff; local
1757 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
1798 int diff; local
1947 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
1988 int diff = (int) (png_ptr->width & 7); \/* amount lost *\/ local
3253 int diff; \/\/ __attribute__((used)); local
4018 int diff; \/\/ __attribute__((used)); local
5131 int diff; \/\/ __attribute__((used)); local
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 314 private String diff = null; field in class:TestCertUtils.TestCertificate
328 public TestCertificate(String diff) {
330 this.diff = diff;
335 * diff. Leave the <code>diff</code> null when no difference needed.
337 * @param diff
340 public TestCertificate(String diff, String type) {
342 this.diff = diff;
    [all...]
  /external/pixman/test/
matrix-test.c 157 double diff = fabs (result_f.v[j] - local
160 if (is_affine && diff > (0.51 / 65536.0))
163 testnum, i, diff);
166 else if (diff > (0.71 / 65536.0))
169 testnum, i, diff);
  /external/skia/bench/
bench_compare.py 30 print ' d: diff'
31 print ' p: percent diff'
42 self.diff = old.time - new.time
45 diffp = self.diff / old.time
123 'd' : '{diff: 0.2f}\t',
132 'd' : '{diff}\t',
144 'd' : '{diff: >+10.2f} ',
153 'd' : '{diff: >10} ',
172 , diff='diff'
    [all...]
  /external/stlport/test/unit/cppunit/
cppunit_mini.h 79 double diff = in_expected - in_real; local
80 if (diff < 0.) {
81 diff = -diff;
83 return diff < in_maxErr;
  /hardware/qcom/display/msm8960/libqdutils/
profiler.cpp 147 nsecs_t diff = currtime_us - oldtime_us; local
152 diff > debug_fps_metadata.ignorethresh_us) {
157 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
163 unsigned int currstep = (diff + debug_fps_metadata.margin_us) / 16666;
180 debug_fps_metadata.time_elapsed += ((float)diff/1000.0);
  /hardware/qcom/display/msm8974/libqdutils/
profiler.cpp 147 nsecs_t diff = currtime_us - oldtime_us; local
152 diff > debug_fps_metadata.ignorethresh_us) {
157 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
163 unsigned int currstep = (diff + debug_fps_metadata.margin_us) / 16666;
180 debug_fps_metadata.time_elapsed += ((float)diff/1000.0);
  /hardware/qcom/display/msm8x26/libqdutils/
profiler.cpp 147 nsecs_t diff = currtime_us - oldtime_us; local
152 diff > debug_fps_metadata.ignorethresh_us) {
157 debug_fps_metadata.framearrivals[debug_fps_metadata.curr_frame] = diff;
163 unsigned int currstep = (diff + debug_fps_metadata.margin_us) / 16666;
180 debug_fps_metadata.time_elapsed += ((float)diff/1000.0);
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
cppunit_mini.h 79 double diff = in_expected - in_real; local
80 if (diff < 0.) {
81 diff = -diff;
83 return diff < in_maxErr;
  /ndk/tests/device/test-stlport/unit/cppunit/
cppunit_mini.h 79 double diff = in_expected - in_real; local
80 if (diff < 0.) {
81 diff = -diff;
83 return diff < in_maxErr;
  /system/core/toolbox/grep/
file.c 145 ptrdiff_t diff; local
184 diff = p - bufpos;
185 len += diff;
188 memcpy(lnbuf + off, bufpos, diff);
189 bufrem -= diff;
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
preamble_patcher_test.cc 312 __int64 diff = 0; local
317 diff = reinterpret_cast<__int64>(p1) - reinterpret_cast<__int64>(b1);
319 SIDESTEP_EXPECT_TRUE(diff <= INT_MAX && diff >= INT_MIN);
322 diff = reinterpret_cast<__int64>(p2) - reinterpret_cast<__int64>(b2);
323 SIDESTEP_EXPECT_TRUE(diff <= INT_MAX && diff >= INT_MIN);
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
preamble_patcher_test.cc 312 __int64 diff = 0; local
317 diff = reinterpret_cast<__int64>(p1) - reinterpret_cast<__int64>(b1);
319 SIDESTEP_EXPECT_TRUE(diff <= INT_MAX && diff >= INT_MIN);
322 diff = reinterpret_cast<__int64>(p2) - reinterpret_cast<__int64>(b2);
323 SIDESTEP_EXPECT_TRUE(diff <= INT_MAX && diff >= INT_MIN);
  /external/iputils/
ping_common.h 234 __u16 diff = (__u16)ntransmitted - acked; local
235 return (diff<=0x7FFF) ? diff : ntransmitted-nreceived-nerrors;
240 __u16 diff = (__u16)ntransmitted - seq; local
241 if (diff <= 0x7FFF) {
242 if ((int)diff+1 > pipesize)
243 pipesize = (int)diff+1;
  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c 310 int32_t diff = new_value - *mean_value; local
313 if (diff < 0) {
314 diff = -((-diff) >> factor);
316 diff = (diff >> factor);
318 *mean_value += diff;
  /bionic/libc/tzcode/
strftime.c 595 int diff; local
601 diff = t->TM_GMTOFF;
624 diff = -timezone;
630 diff = -altzone;
635 if (diff < 0) {
637 diff = -diff;
640 diff /= SECSPERMIN;
641 diff = (diff / MINSPERHOUR) * 100
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedField.java 136 int diff = fieldIdx - lastIndex; local
142 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
149 out.writeUnsignedLeb128(diff);
  /dalvik/dx/src/com/android/dx/dex/file/
EncodedField.java 135 int diff = fieldIdx - lastIndex; local
141 out.annotate(Leb128.unsignedLeb128Size(diff),
148 out.writeUleb128(diff);
  /external/chromium_org/chrome/browser/webdata/
autofill_profile_syncable_service.cc 323 bool diff = false; local
327 diff = true;
333 diff = UpdateMultivaluedField(autofill::NAME_FIRST,
334 specifics.name_first(), profile) || diff;
335 diff = UpdateMultivaluedField(autofill::NAME_MIDDLE,
336 specifics.name_middle(), profile) || diff;
337 diff = UpdateMultivaluedField(autofill::NAME_LAST,
338 specifics.name_last(), profile) || diff;
339 diff = UpdateField(autofill::ADDRESS_HOME_LINE1,
340 specifics.address_home_line1(), profile) || diff;
    [all...]
  /external/chromium_org/components/autofill/core/browser/webdata/
autofill_entry.cc 46 int diff = name_.compare(key.name()); local
47 if (diff < 0) {
49 } else if (diff == 0) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceFilterPrimitive.cpp 34 void RenderSVGResourceFilterPrimitive::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
36 RenderSVGHiddenContainer::styleDidChange(diff, oldStyle);
43 if (diff == StyleDifferenceEqual || !oldStyle)
  /external/chromium_org/third_party/opus/src/silk/
stereo_MS_to_LR.c 45 opus_int32 sum, diff, pred0_Q13, pred1_Q13; local
81 diff = x1[ n + 1 ] - (opus_int32)x2[ n + 1 ];
83 x2[ n + 1 ] = (opus_int16)silk_SAT16( diff );
  /external/chromium_org/third_party/skia/src/views/animated/
SkScrollBarView.cpp 89 SkAnimator::DifferenceType diff = fAnim.draw(canvas, &paint, SkTime::GetMSecs()); local
91 if (diff == SkAnimator::kDifferent)
93 else if (diff == SkAnimator::kPartiallyDifferent)
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
EncodedField.java 136 int diff = fieldIdx - lastIndex; local
142 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
149 out.writeUleb128(diff);
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
ParametrizedLine.h 73 VectorType diff = p-origin(); local
74 return (diff - diff.eigen2_dot(direction())* direction()).squaredNorm();

Completed in 2320 milliseconds

1 2 3 4 5 6 7 891011>>