/external/libhevc/common/arm/ |
ihevc_weighted_pred_bi.s | 188 vld1.s16 {d0},[r0]! @load and increment the pi2_src1 190 vld1.s16 {d1},[r1]! @load and increment the pi2_src2 192 vld1.s16 {d2},[r6],r3 @load and increment the pi2_src_tmp1 ii iteration 194 vld1.s16 {d3},[r8],r4 @load and increment the pi2_src_tmp1 ii iteration 197 vld1.s16 {d0},[r6],r3 @load and increment the pi2_src1 iii iteration 200 vld1.s16 {d1},[r8],r4 @load and increment the pi2_src2 iii iteration 204 vld1.s16 {d2},[r6],r3 @load and increment the pi2_src_tmp1 iv iteration 208 vld1.s16 {d3},[r8],r4 @load and increment the pi2_src_tmp1 iv iteration 255 add r0,r0,r11 @pi2_src1 + 4*src_strd1 - 2*wd(since pi2_src1 is 16 bit pointer double the increment with double the wd decrement)
|
/external/libhevc/common/arm64/ |
ihevc_weighted_pred_bi.s | 219 ld1 {v0.4h},[x0],#8 //load and increment the pi2_src1 221 ld1 {v1.4h},[x1],#8 //load and increment the pi2_src2 223 ld1 {v2.4h},[x6],x3 //load and increment the pi2_src_tmp1 ii iteration 225 ld1 {v3.4h},[x8],x4 //load and increment the pi2_src_tmp1 ii iteration 228 ld1 {v0.4h},[x6],x3 //load and increment the pi2_src1 iii iteration 231 ld1 {v1.4h},[x8],x4 //load and increment the pi2_src2 iii iteration 235 ld1 {v2.4h},[x6],x3 //load and increment the pi2_src_tmp1 iv iteration 239 ld1 {v3.4h},[x8],x4 //load and increment the pi2_src_tmp1 iv iteration 295 add x0,x0,x11 //pi2_src1 + 4*src_strd1 - 2*wd(since pi2_src1 is 16 bit pointer double the increment with double the wd decrement)
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/ |
GeometricMean.java | 46 * one of the threads invokes the <code>increment()</code> or 100 public void increment(final double d) { method in class:GeometricMean 101 sumOfLogs.increment(d); 157 * before {@link #increment(double) increment} has been used to add data;
|
FourthMoment.java | 48 * one of the threads invokes the <code>increment()</code> or 84 public void increment(final double d) { method in class:FourthMoment 95 super.increment(d);
|
SecondMoment.java | 40 * one of the threads invokes the <code>increment()</code> or 76 public void increment(final double d) { method in class:SecondMoment 80 super.increment(d);
|
ThirdMoment.java | 42 * one of the threads invokes the <code>increment()</code> or 85 public void increment(final double d) { method in class:ThirdMoment 91 super.increment(d);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
RbnfRoundTripTest.java | 180 long increment = 1; local 181 for (long i = lowLimit; i <= highLimit; i += increment) { 186 increment = 1; 188 increment = 2737; 190 increment = 267437;
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
RbnfRoundTripTest.java | 176 long increment = 1; local 177 for (long i = lowLimit; i <= highLimit; i += increment) { 182 increment = 1; 184 increment = 2737; 186 increment = 267437;
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/ |
CounterImpl.java | 54 public CounterImpl increment(final int missed, final int covered) { method in class:CounterImpl.Var 70 public CounterImpl increment(final int missed, final int covered) { method in class:CounterImpl.Fix 131 public CounterImpl increment(final ICounter counter) { method in class:CounterImpl 132 return increment(counter.getMissedCount(), counter.getCoveredCount()); 146 public abstract CounterImpl increment(int missed, int covered); method in class:CounterImpl
|
/external/libmtp/src/ |
Makefile.am | 17 # - CURRENT (Major): Increment if the interface has changes. AGE is always 19 # - AGE (Micro): Increment if any interfaces have been added; set to 0 23 # - REVISION (Minor): Increment any time the source changes; set to 26 # To summarize. Any interface *change* increment CURRENT. If that interface 28 # increment AGE, Otherwise AGE is reset to 0. If CURRENT has changed,
|
/external/v8/test/unittests/ |
atomic-utils-unittest.cc | 43 TEST(AtomicNumber, Increment) { 45 a.Increment(1); 50 b.Increment(1); 55 c.Increment(-1); 57 c.Increment(-1);
|
/libcore/ojluni/src/test/java/util/stream/ |
TestDoubleSumAverage.java | 70 double increment = Math.ulp(base)/2.0; local 73 double expectedSum = base + (increment * (count - 1)); 76 // Factory for double a stream of [base, increment, ..., increment] limited to a size of count 77 Supplier<DoubleStream> ds = () -> DoubleStream.iterate(base, e -> increment).limit(count);
|
/frameworks/base/core/java/android/widget/ |
AbsSeekBar.java | 69 * On key presses (right or left), the amount to increment/decrement the 458 * @param increment The amount to increment or decrement when the user 461 public void setKeyProgressIncrement(int increment) { 462 mKeyProgressIncrement = increment < 0 ? -increment : increment; 470 * @return The amount to increment or decrement when the user presses the 887 int increment = mKeyProgressIncrement; 891 increment = -increment [all...] |
/art/runtime/ |
barrier_test.cc | 60 // Check that barrier wait and barrier increment work. 73 timeout_barrier.Increment(self, 1, 100); // sleep 100 msecs 125 barrier.Increment(self, expected_total_tasks);
|
/art/runtime/gc/allocator/ |
dlmalloc.cc | 23 static void* art_heap_morecore(void* m, intptr_t increment); 42 static void* art_heap_morecore(void* m, intptr_t increment) { 43 return ::art::gc::allocator::ArtDlMallocMoreCore(m, increment);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
ProgressBarTest.java | 172 int increment = 1; local 174 progressBar.incrementProgressBy(increment); 175 assertEquals(oldProgress + increment, progressBar.getProgress()); 177 increment = progressBar.getMax() >> 1; 179 progressBar.incrementProgressBy(increment); 180 assertEquals(oldProgress + increment, progressBar.getProgress()); 197 int increment = 1; local 199 progressBar.incrementSecondaryProgressBy(increment); 200 assertEquals(oldSecondaryProgress + increment, progressBar.getSecondaryProgress()); 202 increment = progressBar.getMax() >> 1 [all...] |
/external/autotest/client/tests/reaim/ |
reaim.py | 41 start = 1, end = 10, increment = 2, 49 # -i <number of users to increment> 51 args = "-f %s -s %d -e %d -i %d" % (workfile, start, end, increment)
|
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/ |
values.pass.cpp | 18 // static constexpr result_type increment = c; 38 static_assert((LCE::increment == c), ""); 44 where(LCE::increment);
|
/external/llvm/test/CodeGen/PowerPC/ |
load-shift-combine.ll | 4 ; This used to cause a crash. A standard load is converted to a pre-increment 5 ; load. Later the pre-increment load is combined with a subsequent SRL to 8 ; pre-increment load. The result was a crash when attempting to process an
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/ |
MethodVisitorTee.java | 106 public void visitIincInsn(int var, int increment) { 107 mv1.visitIincInsn(var, increment); 108 mv2.visitIincInsn(var, increment);
|
/external/v8/src/ |
atomic-utils.h | 23 V8_INLINE T Increment(T increment) { 25 &value_, static_cast<base::AtomicWord>(increment)));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
memory.cpp | 22 increment(T& t) _NOEXCEPT 53 increment(__shared_owners_); 80 increment(__shared_weak_owners_);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.lcong/ |
values.pass.cpp | 18 // static constexpr result_type increment = c; 38 static_assert((LCE::increment == c), ""); 44 where(LCE::increment);
|
/external/jsoncpp/src/lib_json/ |
json_internalarray.inl | 146 void ValueInternalArray::increment(IteratorState& it) { 151 "ValueInternalArray::increment(): moving iterator beyond end"); 213 for (ArrayIndex index = 0; index < size_; ++index, increment(itOther)) { 234 for (; !equals(it, itEnd); increment(it)) { 271 for (; !equals(it, itEnd); increment(it)) { 310 for (; !equals(it, itEnd); increment(it)) {
|
/art/runtime/gc/space/ |
malloc_space.cc | 130 void* MallocSpace::MoreCore(intptr_t increment) { 133 if (increment != 0) { 134 VLOG(heap) << "MallocSpace::MoreCore " << PrettySize(increment); 135 uint8_t* new_end = original_end + increment; 136 if (increment > 0) { 140 CHECK_MEMORY_CALL(mprotect, (original_end, increment, PROT_READ | PROT_WRITE), GetName()); 143 CHECK_GE(original_end + increment, Begin()); 150 size_t size = -increment;
|