/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/lldb/test/functionalities/inline-stepping/ |
calling.cpp | 30 int increment = caller_ref_2(value); // In caller_ref_1. local 31 value += increment; // At increment in caller_ref_1. 38 int increment = inline_ref_1 (value); // In caller_ref_2. local 39 value += increment; // At increment in caller_ref_2. 53 int increment = inline_ref_2(value); // In inline_ref_1. local 54 value += increment; // At increment in inline_ref_1. 61 int increment = called_by_inline_ref (value); // In inline_ref_2 local [all...] |
/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...] |
/external/toybox/toys/lsb/ |
seq.c | 1 /* seq.c - Count from first to last, by increment. 14 usage: seq [-f fmt_str] [-s sep_str] [first] [increment] last 16 Count from first to last, by increment. Omitted arguments default 34 double first, increment, last, dd; local 41 first = increment = 1; 43 case 3: increment = atof(toys.optargs[1]); 52 // you use a non-integer increment. Deal with it. 53 for (dd=first; (increment>0 && dd<=last) || (increment<0 && dd>=last); 54 dd+=increment) [all...] |
/external/vixl/src/vixl/a64/ |
instrument-a64.cc | 53 void Counter::Increment() { 166 // Increment the instruction counter, and dump all counters if a sample period 170 counter->Increment(); 260 counter->Increment(); 268 counter->Increment(); 276 counter->Increment(); 288 counter->Increment(); 297 counter->Increment(); 305 counter->Increment(); 313 counter->Increment(); [all...] |
/external/skia/tools/lua/ |
scrape_dashing_full.lua | 35 function increment(table, key) function 70 increment(total_found, t.verb); 71 increment(dashInterval_count, #de.intervals) 74 increment(dashInterval_pattern, "one_one") 76 increment(dashInterval_pattern, "zero_on") 78 increment(dashInterval_pattern, "other") 83 increment(dash_phase, "zero") 85 increment(dash_phase, "other") 90 increment(dash_cap, "butt") 92 increment(dash_cap, "round" [all...] |
scrape_dashing.lua | 47 function increment(table, key) function 56 increment(total_total, t.verb) 62 increment(total_found, t.verb) 68 increment(drawPointsTable, #points) 71 increment(drawPointsTable_direction, "hori") 73 increment(drawPointsTable_direction, "vert") 75 increment(drawPointsTable_direction, "other")
|
/external/e2fsprogs/tests/progs/ |
test_icount_cmds.ct | 19 request do_increment, "Increment an icount entry", 20 increment, inc;
|
/external/llvm/test/Instrumentation/InstrProfiling/ |
noruntime.ll | 12 call void @llvm.instrprof.increment(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @__llvm_profile_name_foo, i32 0, i32 0), i64 0, i32 1, i32 0) 16 declare void @llvm.instrprof.increment(i8*, i64, i32, i32)
|
profiling.ll | 15 call void @llvm.instrprof.increment(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @__llvm_profile_name_foo, i32 0, i32 0), i64 0, i32 1, i32 0) 22 call void @llvm.instrprof.increment(i8* getelementptr inbounds ([4 x i8], [4 x i8]* @__llvm_profile_name_bar, i32 0, i32 0), i64 0, i32 1, i32 0) 29 call void @llvm.instrprof.increment(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @baz_prof_name, i32 0, i32 0), i64 0, i32 3, i32 0) 30 call void @llvm.instrprof.increment(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @baz_prof_name, i32 0, i32 0), i64 0, i32 3, i32 1) 31 call void @llvm.instrprof.increment(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @baz_prof_name, i32 0, i32 0), i64 0, i32 3, i32 2) 35 declare void @llvm.instrprof.increment(i8*, i64, i32, i32)
|
/external/v8/src/arm64/ |
instrument-arm64.cc | 32 void Counter::Increment() { 143 // Increment the instruction counter, and dump all counters if a sample period 147 counter->Increment(); 236 counter->Increment(); 248 sp_counter->Increment(); 250 add_sub_counter->Increment(); 258 counter->Increment(); 270 counter->Increment(); 278 counter->Increment(); 285 counter->Increment(); [all...] |
/frameworks/base/core/java/com/android/internal/logging/ |
EventLogTags.logtags | 8 524290 sysui_count (name|3),(increment|1)
|
/bionic/libc/bionic/ |
brk.cpp | 47 void* sbrk(ptrdiff_t increment) { 54 if (increment == 0) { 60 if ((increment > 0 && static_cast<uintptr_t>(increment) > (UINTPTR_MAX - old_brk)) || 61 (increment < 0 && static_cast<uintptr_t>(-increment) > old_brk)) { 66 void* desired_brk = reinterpret_cast<void*>(old_brk + increment);
|
/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/google-breakpad/src/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/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());
|
/ndk/sources/third_party/googletest/googletest/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/libhevc/common/arm/ |
ihevc_weighted_pred_bi_default.s | 181 vld1.s16 {d6},[r0]! @load and increment the pi2_src1 183 vld1.s16 {d7},[r1]! @load and increment the pi2_src2 184 vld1.s16 {d8},[r11],r3 @load and increment the pi2_src1 ii iteration 187 vld1.s16 {d9},[r12],r4 @load and increment the pi2_src2 ii iteration 191 vld1.s16 {d22},[r11],r3 @load and increment the pi2_src1 iii iteration 192 vld1.s16 {d23},[r12],r4 @load and increment the pi2_src2 iii iteration 195 vld1.s16 {d24},[r11],r3 @load and increment the pi2_src1 iv iteration 196 vld1.s16 {d25},[r12],r4 @load and increment the pi2_src2 iv iteration 211 add r0,r0,r7 @pi2_src1 + 4*src_strd1 - 2*wd(since pi2_src1 is 16 bit pointer double the increment with double the wd decrement) 231 vld1.s16 {d6},[r0]! @load and increment the pi2_src [all...] |
/external/libhevc/common/arm64/ |
ihevc_weighted_pred_bi_default.s | 195 ld1 {v6.4h},[x0],#8 //load and increment the pi2_src1 197 ld1 {v7.4h},[x1],#8 //load and increment the pi2_src2 198 ld1 {v1.4h},[x11],x3 //load and increment the pi2_src1 ii iteration 201 ld1 {v3.4h},[x12],x4 //load and increment the pi2_src2 ii iteration 206 ld1 {v22.4h},[x11],x3 //load and increment the pi2_src1 iii iteration 207 ld1 {v23.4h},[x12],x4 //load and increment the pi2_src2 iii iteration 210 ld1 {v24.4h},[x11],x3 //load and increment the pi2_src1 iv iteration 211 ld1 {v25.4h},[x12],x4 //load and increment the pi2_src2 iv iteration 227 add x0,x0,x7 //pi2_src1 + 4*src_strd1 - 2*wd(since pi2_src1 is 16 bit pointer double the increment with double the wd decrement) 250 ld1 {v6.4h},[x0],#8 //load and increment the pi2_src [all...] |
/external/clang/test/SemaCXX/ |
enum-increment.cpp | 6 a++; // expected-error{{cannot increment expression of enum type 'A'}} 8 ++a; // expected-error{{cannot increment expression of enum type 'A'}}
|
/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/libcxxabi/test/ |
test_guard.pass.cpp | 22 int increment() { function in namespace:test1 27 static int a = increment(); 30 static int a = increment(); 32 static int b = increment(); 45 int increment() { function in namespace:test2 51 static int a = increment(); 84 int increment() { function in namespace:test4 90 static int a = increment();
|
/external/protobuf/src/google/protobuf/stubs/ |
atomicops_internals_solaris.h | 53 Atomic32 increment) { 54 return (Atomic32)atomic_add_32_nv((volatile uint32_t*)ptr, (uint32_t)increment); 63 Atomic32 increment) { 65 Atomic32 ret = NoBarrier_AtomicIncrement(ptr, increment); 127 inline Atomic64 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) { 128 return atomic_add_64_nv((volatile uint64_t*)ptr, increment); 131 inline Atomic64 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) { 133 Atomic64 ret = atomic_add_64_nv((volatile uint64_t*)ptr, increment);
|