/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...] |
/cts/tests/tests/webkitsecurity/assets/ |
counter-traverse-object-crash.html | 11 <body onload="test()" style="counter-increment: ctr"> 13 <b style="counter-increment: ctr"><div></div></b> 14 <menu style="counter-increment: ctr"></menu>
|
reparent-table-children-with-counters-crash.html | 8 <td style="counter-increment: list-item"></td>
16 <td style="counter-increment: list-item"></td>
|
render-tree-reorg-crash.html | 1 <spacer style='counter-increment: a'>
6 <spacer style='counter-increment: a'>
8 <spacer style='counter-increment: a'>
|
counter-before-selector-crash.html | 6 counter-increment: exampleno; 10 counter-increment: exampleno;
|
counter-crash-frame-src.html | 14 <spacer id='count' style='counter-increment: aaa 1;'>
18 <spacer style='counter-increment: aaa 1;'></spacer>
|
element-removal-crash.xhtml | 6 counter-increment: counter;
|
/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,
|
/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/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/clang/test/SemaObjC/ |
error-implicit-property.m | 18 arg.P++; // expected-error {{no getter method 'P' for increment of property}} 22 arg.P++; // expected-error {{no setter method 'setP:' for increment of property}}
|
/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.
|