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

1 2 3 4 5 67 8 91011>>

  /libcore/luni/src/main/java/java/lang/
AbstractStringBuilder.java 412 int diff = end - start - stringLength; local
413 if (diff > 0) { // replacing with fewer characters
427 } else if (diff < 0) {
429 move(-diff, end);
435 count -= diff;
  /libcore/luni/src/main/java/java/util/zip/
ZipInputStream.java 165 int diff = entryIn - inB; local
167 if (diff != 0) {
168 ((PushbackInputStream) in).unread(buf, len - diff, diff);
  /packages/apps/Calendar/src/com/android/calendar/
CalendarViewAdapter.java 348 int diff = dayOfWeek - firstDayOfWeek; local
349 if (diff != 0) {
350 if (diff < 0) {
351 diff += 7;
353 t.monthDay -= diff;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 280 String diff = getDiff(before, after); local
281 assertEqualsGolden(name, diff);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 313 private String diff = null; field in class:TestCertUtils.TestCertificate
327 public TestCertificate(String diff) {
329 this.diff = diff;
334 * diff. Leave the <code>diff</code> null when no difference needed.
336 * @param diff
339 public TestCertificate(String diff, String type) {
341 this.diff = diff;
    [all...]
  /external/chromium/chrome/browser/net/
predictor.cc 360 int diff = left_host.compare(left_start, left_host.size(), local
362 if (diff > 0) return false;
363 if (diff < 0) return true;
  /external/icu4c/common/
unistr.cpp 668 int32_t diff = uprv_strCompare(getArrayStart() + start, length, srcChars + srcStart, srcLength, FALSE, TRUE); local
670 if(diff!=0) {
671 return (int8_t)(diff >> 15 | 1);
    [all...]
  /external/icu4c/test/cintltst/
bocu1tst.c 225 int32_t prev, count, diff; member in struct:Bocu1Rx
234 packDiff(int32_t diff);
278 * @param diff difference value -0x10ffff..0x10ffff
286 packDiff(int32_t diff) {
289 if(diff>=BOCU1_REACH_NEG_1) {
291 if(diff<=BOCU1_REACH_POS_1) {
293 return 0x01000000|(BOCU1_MIDDLE+diff);
294 } else if(diff<=BOCU1_REACH_POS_2) {
296 diff-=BOCU1_REACH_POS_1+1;
299 } else if(diff<=BOCU1_REACH_POS_3)
    [all...]
udatatst.c 1527 uint8_t diff[8]; local
    [all...]
  /external/iproute2/misc/
arpd.c 247 int diff = (now.tv_sec-prev.tv_sec)*1000+(now.tv_usec-prev.tv_usec)/1000; local
248 buckets += diff;
  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 423 int diff = newTdLen - oldTdLen; local
425 if (diff > 0)
431 if (diff > 0)
  /external/libnfc-nxp/src/
phFriNfc_MifULFormat.c 191 int8_t diff = 0; local
200 for(;((n>0)&&(diff==0));n--,char_1++,char_2++)
202 diff = *char_1 - *char_2;
205 return (int)diff;
    [all...]
  /external/libvpx/vp8/encoder/
pickinter.c 107 int diff; local
111 diff = src_ptr[j] - ref_ptr[j];
112 sum += diff;
113 pred_error += diff * diff;
141 int diff = src_ptr[c] - ref_ptr[c]; local
142 distortion += diff * diff;
285 int diff; local
360 diff = u_p - expected_udc
    [all...]
  /external/opencv/cv/src/
cvemd.cpp 341 float s_sum = 0, d_sum = 0, diff; local
431 diff = s_sum - d_sum;
432 if( fabs( diff ) >= CV_EMD_EPS * s_sum )
435 if( diff < 0 )
437 state->s[ssize] = -diff;
442 state->d[dsize] = diff;
911 float min_delta, diff; local
1024 diff = max_val - cur_v->val;
1026 if( fabs( diff ) < eps )
1029 delta[cur_u - u][j] += diff;
    [all...]
cvstereobm.cpp 232 int diff = abs(lval - rptr[d]); local
233 cbuf[d] = (uchar)diff;
234 hsad[d] = (ushort)(hsad[d] + diff);
271 __m128i diff = _mm_adds_epu8(_mm_subs_epu8(lv, rv), _mm_subs_epu8(rv, lv)); local
272 __m128i diff_h = _mm_sub_epi16(_mm_unpackhi_epi8(diff, z), _mm_unpackhi_epi8(cbs, z));
273 _mm_store_si128((__m128i*)(cbuf + d), diff);
274 diff = _mm_sub_epi16(_mm_unpacklo_epi8(diff, z), _mm_unpacklo_epi8(cbs, z));
276 hsad_l = _mm_add_epi16(hsad_l, diff);
438 int diff = abs(lval - rptr[d]) local
472 int diff = abs(lval - rptr[d]); local
    [all...]
cvsubdivision2d.cpp 719 icvIsRightOf2( const CvPoint2D32f& pt, const CvPoint2D32f& org, const CvPoint2D32f& diff )
722 cw_area.f = (org.x - pt.x)*diff.y - (org.y - pt.y)*diff.x;
732 CvPoint2D32f diff; local
764 diff.x = pt.x - start.x;
765 diff.y = pt.y - start.y;
778 if( icvIsRightOf2( t, start, diff ) >= 0 )
789 if( icvIsRightOf2( t, start, diff ) < 0 )
  /external/opencv/ml/src/
mlem.cpp 224 CvMat diff, expo; local
241 diff = cvMat( 1, dims, CV_64FC1, (double*)buffer + nclusters );
263 diff.data.db[i] = sample_data[i] - mean_k[i];
265 cvGEMM( &diff, u, 1, 0, 0, &diff, CV_GEMM_B_T );
268 double val = diff.data.db[i];
    [all...]
  /external/ppp/pppd/
tty.c 1233 int diff; local
1237 diff = (now.tv_sec - tp->tv_sec) * 10 + (now.tv_usec - tp->tv_usec);
1238 if (diff > 0) {
1239 if (diff > 255) {
1241 putc(diff >> 24, f);
1242 putc(diff >> 16, f);
1243 putc(diff >> 8, f);
1244 putc(diff, f);
1247 putc(diff, f);
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngvcrd.c 148 int unmask, diff; local
159 diff = (png_ptr->width)&7;
227 mov ecx,diff
283 int unmask, diff; local
295 diff = (png_ptr->width)&7;
374 mov ecx,diff
428 int diff, unmask; local
444 diff = png_ptr->width & 7; //amount lost
480 mov ecx,diff
699 int unmask, diff; local
815 int unmask, diff; local
1946 int diff; local
1971 mov diff, edi \/\/ take start of row local
1972 add diff, ebx \/\/ add bpp local
1973 add diff, 0xf \/\/ add 7 + 8 to incr past alignment boundary local
1974 and diff, 0xfffffff8 \/\/ mask to alignment boundary local
1975 sub diff, edi \/\/ subtract from start ==> value ebx at alignment local
2383 int diff; local
2408 mov diff, edi \/\/ take start of row local
2409 add diff, ebx \/\/ add bpp local
2411 add diff, 0xf \/\/ add 7 + 8 to incr past alignment boundary local
2412 and diff, 0xfffffff8 \/\/ mask to alignment boundary local
2413 sub diff, edi \/\/ subtract from start ==> value ebx at alignment local
3282 int diff; local
3292 mov diff, edi \/\/ take start of row local
3293 add diff, 0xf \/\/ add 7 + 8 to incr past local
3296 and diff, 0xfffffff8 \/\/ mask to alignment boundary local
3297 sub diff, edi \/\/ subtract from start ==> value local
    [all...]
  /external/qemu/telephony/
sysdeps_posix.c 440 SysTime diff = first->when - now; local
441 timeout->tv_sec = diff / 1000;
442 timeout->tv_usec = (diff - timeout->tv_sec*1000) * 1000;
  /external/skia/src/core/
SkMath.cpp 526 int diff = cos2 + sin2 - SK_Fixed1; local
527 SkASSERT(SkAbs32(diff) <= 7);
  /external/speex/libspeex/
nb_celp.c 339 int diff = st->windowSize-st->frameSize; local
365 SPEEX_COPY(st->sw, st->winBuf, diff);
366 SPEEX_COPY(st->sw+diff, in, st->frameSize-diff);
398 SPEEX_COPY(st->exc, st->winBuf, diff);
399 SPEEX_COPY(st->exc+diff, in, st->frameSize-diff);
    [all...]
  /external/webkit/Source/JavaScriptCore/yarr/
YarrPattern.cpp 271 unsigned diff = curr->value ^ next->value; local
273 curr->mask |= diff;
    [all...]
  /external/wpa_supplicant/
radius.c 420 int diff; local
427 diff = nbuf - msg->buf;
433 (((u8 *) msg->attrs[i]) + diff);
  /frameworks/base/core/java/android/content/res/
Configuration.java 486 * {@link #diff}.
625 public int diff(Configuration delta) { method in class:Configuration
727 int diff = other.seq - seq; local
728 if (diff > 0x10000) {
733 return diff > 0;
    [all...]

Completed in 1382 milliseconds

1 2 3 4 5 67 8 91011>>