HomeSort by relevance Sort by last modified time
    Searched refs:delta (Results 51 - 75 of 3192) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
Count.java 40 public int getAndAdd(int delta) {
42 value = result + delta;
46 public int addAndGet(int delta) {
47 return value += delta;
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
AtomicInteger.java 71 public final int getAndAdd(int delta) {
73 value += delta;
85 public final int addAndGet(int delta) {
86 value += delta;
AtomicLong.java 71 public final long getAndAdd(long delta) {
73 value += delta;
85 public final long addAndGet(long delta) {
86 value += delta;
  /external/icu/icu4c/source/i18n/
fphdlimp.cpp 57 FieldPositionOnlyHandler::shiftLast(int32_t delta) {
58 if (delta != 0 && pos.getField() != FieldPosition::DONT_CARE && pos.getBeginIndex() != -1) {
59 pos.setBeginIndex(delta + pos.getBeginIndex());
60 pos.setEndIndex(delta + pos.getEndIndex());
103 FieldPositionIteratorHandler::shiftLast(int32_t delta) {
104 if (U_SUCCESS(status) && delta != 0) {
108 vec->setElementAt(delta + vec->elementAti(i), i);
110 vec->setElementAt(delta + vec->elementAti(i), i);
  /external/testng/src/main/java/org/testng/internal/junit/
InexactComparisonCriteria.java 8 public InexactComparisonCriteria(double delta) {
9 fDelta= delta;
  /external/libmojo/mojo/public/cpp/bindings/lib/
message_buffer.cc 47 void* MessageBuffer::Allocate(size_t delta) {
48 delta = internal::Align(delta);
50 DCHECK_LE(delta, static_cast<size_t>(data_num_bytes_));
51 DCHECK_GT(bytes_claimed_ + static_cast<uint32_t>(delta), bytes_claimed_);
53 uint32_t new_bytes_claimed = bytes_claimed_ + static_cast<uint32_t>(delta);
  /external/ltp/tools/pounder21/src/time_tests/
inconsistency-check.c 80 unsigned long long delta; local
89 delta = list[inconsistent].tv_sec * NSEC_PER_SEC;
90 delta += list[inconsistent].tv_nsec;
91 delta -= list[inconsistent + 1].tv_sec * NSEC_PER_SEC;
92 delta -= list[inconsistent + 1].tv_nsec;
93 printf("Delta: %llu ns\n", delta);
  /external/valgrind/memcheck/tests/
leak-delta.stderr.exp 4 by 0x........: f (leak-delta.c:14)
5 by 0x........: main (leak-delta.c:60)
11 by 0x........: f (leak-delta.c:14)
12 by 0x........: main (leak-delta.c:60)
16 by 0x........: f (leak-delta.c:23)
17 by 0x........: main (leak-delta.c:60)
22 by 0x........: f (leak-delta.c:28)
23 by 0x........: main (leak-delta.c:60)
29 by 0x........: f (leak-delta.c:14)
30 by 0x........: main (leak-delta.c:60
    [all...]
  /frameworks/base/core/java/android/content/res/
Configuration.java 2153 final Configuration delta = new Configuration(); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DeBlockPixel.c 71 int ap, aq, delta; local
117 delta = (((q0-p0)<<2) + (p1-q1) + 4) >> 3;
118 delta = armClip(-tC, tC, delta);
120 pQ0[-1*Step] = (OMX_U8)armClip(0, 255, p0 + delta);
121 pQ0[ 0*Step] = (OMX_U8)armClip(0, 255, q0 - delta);
125 delta = (p2 + ((p0+q0+1)>>1) - (p1<<1))>>1;
126 delta = armClip(-tC0, tC0, delta);
127 pQ0[-2*Step] = (OMX_U8)(p1 + delta);
    [all...]
  /external/libmicrohttpd/src/examples/
benchmark.c 71 uint64_t delta; local
77 delta = 0;
79 delta += (tve.tv_sec - tv->tv_sec) * 1000000LL
82 delta += (tve.tv_sec - tv->tv_sec) * 1000000LL
84 if (delta < SMALL)
85 small_deltas[delta]++;
87 fprintf (stdout, "D: %llu 1\n", (unsigned long long) delta);
benchmark_https.c 71 uint64_t delta; local
77 delta = 0;
79 delta += (tve.tv_sec - tv->tv_sec) * 1000000LL
82 delta += (tve.tv_sec - tv->tv_sec) * 1000000LL
84 if (delta < SMALL)
85 small_deltas[delta]++;
87 fprintf (stdout, "D: %llu 1\n", (unsigned long long) delta);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/
6-1.c 39 int sig, i, delta, timeelapsed; local
114 delta = timeelapsed - TIMERVALUESEC;
116 if ((delta > ACCEPTABLEDELTA) || (delta < 0)) {
139 delta = timeelapsed - TIMERINTERVALSEC;
141 if ((delta > ACCEPTABLEDELTA) || (delta < 0)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
punycode.py 59 delta = (curlen+1) * (char - oldchar)
64 delta += index - oldindex
65 result.append(delta-1)
67 delta = 0
93 def adapt(delta, first, numchars):
95 delta //= 700
97 delta //= 2
98 delta += delta // numchars
101 while delta > 455:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
punycode.py 59 delta = (curlen+1) * (char - oldchar)
64 delta += index - oldindex
65 result.append(delta-1)
67 delta = 0
93 def adapt(delta, first, numchars):
95 delta //= 700
97 delta //= 2
98 delta += delta // numchars
101 while delta > 455:
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
punycode.py 59 delta = (curlen+1) * (char - oldchar)
64 delta += index - oldindex
65 result.append(delta-1)
67 delta = 0
93 def adapt(delta, first, numchars):
95 delta //= 700
97 delta //= 2
98 delta += delta // numchars
101 while delta > 455
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
punycode.py 59 delta = (curlen+1) * (char - oldchar)
64 delta += index - oldindex
65 result.append(delta-1)
67 delta = 0
93 def adapt(delta, first, numchars):
95 delta //= 700
97 delta //= 2
98 delta += delta // numchars
101 while delta > 455
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
punycode.py 59 delta = (curlen+1) * (char - oldchar)
64 delta += index - oldindex
65 result.append(delta-1)
67 delta = 0
93 def adapt(delta, first, numchars):
95 delta //= 700
97 delta //= 2
98 delta += delta // numchars
101 while delta > 455
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
punycode.py 59 delta = (curlen+1) * (char - oldchar)
64 delta += index - oldindex
65 result.append(delta-1)
67 delta = 0
93 def adapt(delta, first, numchars):
95 delta //= 700
97 delta //= 2
98 delta += delta // numchars
101 while delta > 455
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
chvr_filter.cpp 42 int sum, delta; local
146 delta = (sum + *ptr_c + 4) >> 3; /* Average pixel values with rounding */
147 *(ptr_c) = (uint8) delta;
158 delta = (sum + *ptr_c + 4) >> 3;
159 *ptr_c = (uint8)(delta);
209 delta = (*(ptr - w1) - *(ptr)) >> 1;
210 if (delta >= 0)
212 if (delta >= A3_0)
214 delta = PV_MAX(A3_0, 0);
221 delta = 0
    [all...]
  /device/google/contexthub/firmware/os/algos/calibration/gyroscope/
gyro_stillness_detect.c 33 // Set the delta about the variance threshold for calculation
61 float delta = 0; local
109 delta = (x - gyro_still_det->assumed_mean_x);
110 gyro_still_det->win_mean_x += delta;
111 gyro_still_det->acc_var_x += delta * delta;
113 delta = (y - gyro_still_det->assumed_mean_y);
114 gyro_still_det->win_mean_y += delta;
115 gyro_still_det->acc_var_y += delta * delta;
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
dogleg.h 10 Scalar delta,
48 if (qnorm <= delta)
66 alpha = delta / qnorm;
87 if (sgnorm >= delta)
94 temp = bnorm / gnorm * (bnorm / qnorm) * (sgnorm / delta);
95 temp = temp - delta / qnorm * numext::abs2(sgnorm / delta) + sqrt(numext::abs2(temp - delta / qnorm) + (1.-numext::abs2(delta / qnorm)) * (1.-numext::abs2(sgnorm / delta)));
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UCharacterIterator.java 324 * sign of delta (positive or negative respectively). If the resulting index would be less than zero, the index is
327 * @param delta
334 public int moveIndex(int delta) {
335 int x = Math.max(0, Math.min(getIndex() + delta, getLength()));
342 * sign of delta (positive or negative respectively). If the current index is at a trail surrogate then the first
347 * @param delta
351 * is thrown if an invalid delta is supplied
353 public int moveCodePointIndex(int delta) {
354 if (delta > 0) {
355 while (delta > 0 && nextCodePoint() != DONE)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UCharacterIterator.java 349 * sign of delta (positive or negative respectively). If the resulting index would be less than zero, the index is
352 * @param delta
360 public int moveIndex(int delta) {
361 int x = Math.max(0, Math.min(getIndex() + delta, getLength()));
368 * sign of delta (positive or negative respectively). If the current index is at a trail surrogate then the first
373 * @param delta
377 * is thrown if an invalid delta is supplied
380 public int moveCodePointIndex(int delta) {
381 if (delta > 0) {
382 while (delta > 0 && nextCodePoint() != DONE)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
TimeToSampleBox.java 34 * number of consecutive samples with the same time delta, and the delta of those samples. By adding the
36 * The Decoding Time to Sample Box contains decode time delta's: <code>DT(n+1) = DT(n) + STTS(n)</code> where STTS(n)
39 * The DT axis has a zero origin; <code>DT(i) = SUM(for j=0 to i-1 of delta(j))</code>, and the sum of all
94 long delta; field in class:TimeToSampleBox.Entry
96 public Entry(long count, long delta) {
98 this.delta = delta;
106 return delta;
113 public void setDelta(long delta) {
    [all...]

Completed in 757 milliseconds

1 23 4 5 6 7 8 91011>>