/external/replicaisland/src/com/replica/replicaisland/ |
ShellSorter.java | 25 * Note that the running time can be tuned by adjusting the size of the increment used 27 * of increment = increment / 3 + 1. 31 int increment = count / 3 + 1; local 34 while ( increment > 1 ) { 35 for ( int start = 0; start < increment; start++ ) { 36 insertionSort(array, count, start, increment, comparator); 38 increment = increment / 3 + 1; 41 // Do a final pass with an increment of 1 [all...] |
/external/chromium/chrome/browser/debugger/manual_tests/resources/ |
loop-statements.js | 14 function increment() function
|
/external/webkit/Source/WebCore/manual-tests/inspector/resources/ |
loop-statements.js | 14 function increment() function
|
/external/e2fsprogs/tests/progs/test_data/ |
test.icount | 13 increment 0 17 increment 20001 50 # Time to test increment. First increment from 0 (previously unreferenced) 53 increment 2 55 increment 2 57 increment 2 59 increment 2 73 increment 3 83 increment [all...] |
expect.icount | 7 test_icount: increment 0 8 increment: Invalid argument passed to ext2 library while calling ext2fs_icount_increment 15 test_icount: increment 20001 16 increment: Invalid argument passed to ext2 library while calling ext2fs_icount_increment 62 test_icount: increment 2 66 test_icount: increment 2 70 test_icount: increment 2 74 test_icount: increment 2 95 test_icount: increment 3 108 test_icount: increment [all...] |
/bionic/libc/private/ |
bionic_atomic_x86.h | 64 /* Atomic increment, without explicit barriers */ 68 int increment = 1; local 70 : "+r" (increment), "+m" (*ptr) 72 /* increment now holds the old value of *ptr */ 73 return increment; 80 int increment = -1; local 82 : "+r" (increment), "+m" (*ptr) 84 /* increment now holds the old value of *ptr */ 85 return increment;
|
/external/e2fsprogs/tests/progs/ |
test_icount_cmds.ct | 19 request do_increment, "Increment an icount entry", 20 increment, inc;
|
/system/extras/tests/bionic/libc/bionic/ |
lib_static_init.cpp | 6 /* increment the static variable */
|
/external/llvm/test/CodeGen/ARM/ |
tail-dup.ll | 10 @fn.codetable = internal unnamed_addr constant [3 x i8*] [i8* blockaddress(@fn, %RETURN), i8* blockaddress(@fn, %INCREMENT), i8* blockaddress(@fn, %DECREMENT)], align 4 18 INCREMENT: ; preds = %indirectgoto 30 indirectgoto: ; preds = %DECREMENT, %INCREMENT, %entry 31 %result.0 = phi i32 [ 0, %entry ], [ %dec, %DECREMENT ], [ %inc, %INCREMENT ] 32 %opcodes.pn = phi i32* [ %opcodes, %entry ], [ %opcodes.addr.0, %DECREMENT ], [ %opcodes.addr.0, %INCREMENT ] 33 %indirect.goto.dest.in = phi i8** [ %arrayidx, %entry ], [ %arrayidx4, %DECREMENT ], [ %arrayidx2, %INCREMENT ] 36 indirectbr i8* %indirect.goto.dest, [label %RETURN, label %INCREMENT, label %DECREMENT]
|
/external/chromium/base/ |
atomicops_internals_x86_msvc.h | 35 Atomic32 increment) { 38 static_cast<LONG>(increment)) + increment; 42 Atomic32 increment) { 43 return Barrier_AtomicIncrement(ptr, increment); 118 Atomic64 increment) { 121 static_cast<LONGLONG>(increment)) + increment; 125 Atomic64 increment) { 126 return Barrier_AtomicIncrement(ptr, increment); [all...] |
atomicops_internals_x86_macosx.h | 41 Atomic32 increment) { 42 return OSAtomicAdd32(increment, const_cast<Atomic32*>(ptr)); 46 Atomic32 increment) { 47 return OSAtomicAdd32Barrier(increment, const_cast<Atomic32*>(ptr)); 132 Atomic64 increment) { 133 return OSAtomicAdd64(increment, reinterpret_cast<volatile int64_t*>(ptr)); 137 Atomic64 increment) { 138 return OSAtomicAdd64Barrier(increment,
|
atomic_ref_count.h | 22 // Increment a reference count by "increment", which must exceed 0. 24 AtomicRefCount increment) { 25 subtle::NoBarrier_AtomicIncrement(ptr, increment); 42 // Increment a reference count by 1.
|
/external/chromium/testing/gtest/samples/ |
sample4_unittest.cc | 35 // Tests the Increment() method. 36 TEST(Counter, Increment) { 42 EXPECT_EQ(0, c.Increment()); 43 EXPECT_EQ(1, c.Increment()); 44 EXPECT_EQ(2, c.Increment());
|
/external/gtest/samples/ |
sample4_unittest.cc | 35 // Tests the Increment() method. 36 TEST(Counter, Increment) { 42 EXPECT_EQ(0, c.Increment()); 43 EXPECT_EQ(1, c.Increment()); 44 EXPECT_EQ(2, c.Increment());
|
/external/libvpx/libvpx/third_party/googletest/src/samples/ |
sample4_unittest.cc | 35 // Tests the Increment() method. 36 TEST(Counter, Increment) { 42 EXPECT_EQ(0, c.Increment()); 43 EXPECT_EQ(1, c.Increment()); 44 EXPECT_EQ(2, c.Increment());
|
/external/protobuf/gtest/samples/ |
sample4_unittest.cc | 35 // Tests the Increment() method. 36 TEST(Counter, Increment) { 42 EXPECT_EQ(0, c.Increment()); 43 EXPECT_EQ(1, c.Increment()); 44 EXPECT_EQ(2, c.Increment());
|
/external/webkit/Source/WebCore/rendering/style/ |
StyleMarqueeData.cpp | 30 : increment(RenderStyle::initialMarqueeIncrement()) 40 , increment(o.increment) 50 return increment == o.increment && speed == o.speed && direction == o.direction &&
|
/external/iptables/extensions/ |
libip6t_HL.man | 8 .B Don't ever set or increment the value on packets that leave your local network! 17 Increment the Hop Limit `value' times.
|
libipt_TTL.man | 10 .B Don't ever set or increment the value on packets that leave your local network! 19 Increment the TTL value `value' times.
|
/external/oprofile/libopagent/ |
Makefile.am | 16 # Do not increment the major version for this library except to 19 # change existing functions; then just increment the minor version.
|
/frameworks/base/core/java/com/android/internal/util/ |
BitwiseOutputStream.java | 84 * Write some data and increment the current position. 107 * Write data in bulk from a byte array and increment the current position. 114 int increment = Math.min(8, bits - (i << 3)); local 115 if (increment > 0) { 116 write(increment, (byte)(arr[i] >>> (8 - increment))); 122 * Increment the current position, implicitly writing zeros. 124 * @param bits the amount by which to increment the position
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
loop1.cpp | 2 // and does not increment I before the call.
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
loop1.cpp | 2 // and does not increment I before the call.
|
/external/libffi/ |
libtool-version | 17 # update, then increment revision (`c:r:a' becomes `c:r+1:a'). 20 # last update, increment current, and set revision to 0. 23 # then increment age.
|
/external/v8/src/ |
atomicops_internals_x86_macosx.h | 63 Atomic32 increment) { 64 return OSAtomicAdd32(increment, const_cast<Atomic32*>(ptr)); 68 Atomic32 increment) { 69 return OSAtomicAdd32Barrier(increment, const_cast<Atomic32*>(ptr)); 154 Atomic64 increment) { 155 return OSAtomicAdd64(increment, const_cast<Atomic64*>(ptr)); 159 Atomic64 increment) { 160 return OSAtomicAdd64Barrier(increment, const_cast<Atomic64*>(ptr)); 240 AtomicWord increment) { 242 reinterpret_cast<volatile AtomicWordCastType*>(ptr), increment); [all...] |