HomeSort by relevance Sort by last modified time
    Searched refs:increment (Results 1 - 25 of 1489) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
increment.rs 19 int4 RS_KERNEL increment(int4 in)
  /external/curl/packages/NetWare/
get_exp.awk 47 increment = int(idx / 2)
48 while (increment > 0) {
49 for (i = increment+1; i <= idx; i++) {
52 while ((j >= increment+1) && (exports[j-increment] > temp)) {
53 exports[j] = exports[j-increment]
54 j -= increment
58 if (increment == 2)
59 increment = 1
61 increment = int(increment*5/11
    [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...]
  /external/libcxx/test/libcxx/thread/thread.mutex/
thread_safety_requires_capability.pass.cpp 27 void increment() __attribute__((requires_capability(m))) { function
33 increment();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/thread/thread.mutex/
thread_safety_requires_capability.pass.cpp 27 void increment() __attribute__((requires_capability(m))) { function
33 increment();
  /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...]
  /bionic/libc/bionic/
brk.cpp 49 void* sbrk(ptrdiff_t increment) {
56 if (increment == 0) {
62 if ((increment > 0 && static_cast<uintptr_t>(increment) > (UINTPTR_MAX - old_brk)) ||
63 (increment < 0 && static_cast<uintptr_t>(-increment) > old_brk)) {
68 void* desired_brk = reinterpret_cast<void*>(old_brk + increment);
  /frameworks/native/cmds/surfacereplayer/replayer/trace_creator/
trace_creator.py 19 increment = trace.increment.add()
20 increment.time_stamp = int(input("Time stamp of action: "))
23 transaction(increment)
25 surface_create(increment)
27 surface_delete(increment)
29 display_create(increment)
31 display_delete(increment)
33 buffer_update(increment)
35 vsync_event(increment)
    [all...]
  /external/caliper/examples/src/main/java/examples/
NoOpBenchmark.java 25 @Benchmark long increment(long reps) { method in class:NoOpBenchmark
  /external/ltp/testcases/kernel/syscalls/sbrk/
sbrk02.c 35 static long increment = INC; variable
64 /* call sbrk until it fails or increment overflows */
65 while (ret != (void *)-1 && increment > 0) {
66 ret = sbrk(increment);
67 increment += INC;
70 increment, ret, sbrk(0));
79 tret = sbrk(increment);
85 increment, tret, ENOMEM);
91 increment);
95 increment, ENOMEM, strerror(ENOMEM))
    [all...]
sbrk01.c 52 long increment; member in struct:test_case_t
97 tret = sbrk(test->increment);
102 test->increment);
105 test->increment, tret);
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
atomic_count.hpp 23 inline void increment(atomic_count& a, long b) { a += b; } function in namespace:asio::detail
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
increment.rs 20 int4 __attribute__((kernel)) increment(int4 in)
  /external/libcxxabi/test/
test_guard.pass.cpp 21 int increment() { function in namespace:test1
26 static int a = increment();
30 static int a = increment(); ((void)a);
32 static int b = increment(); ((void)b);
46 int increment() { function in namespace:test2
52 static int a = increment();
89 int increment() { function in namespace:test4
95 static int a = increment(); ((void)a);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/
test_guard.pass.cpp 21 int increment() { function in namespace:test1
26 static int a = increment();
30 static int a = increment(); ((void)a);
32 static int b = increment(); ((void)b);
46 int increment() { function in namespace:test2
52 static int a = increment();
89 int increment() { function in namespace:test4
95 static int a = increment(); ((void)a);
  /external/toybox/toys/lsb/
seq.c 1 /* seq.c - Count from first to last, by increment.
14 usage: seq [-w|-f fmt_str] [-s sep_str] [first] [increment] last
16 Count from first to last, by increment. Omitted arguments default
60 double first = 1, increment = 1, last, dd; local
65 case 3: increment = parsef(toys.optargs[1]);
79 dd = (double []){first, increment, last}[i];
85 // Other implementations output nothing if increment is 0 and first > last,
88 if (!increment) return;
92 // Multiply to avoid accumulating rounding errors from increment.
93 dd = first+i*increment;
    [all...]
  /external/adhd/cras/src/server/
cras_ramp.c 29 * increment: The scaler increment that should be added to scaler for
39 float increment; member in struct:cras_ramp
65 ramp->increment = 0;
88 ramp->increment = (1 - ramp->start_scaler) / duration_frames;
96 ramp->increment = -ramp->start_scaler / duration_frames;
112 action.increment = 0.0;
120 action.increment = 0.0;
125 ramp->ramped_frames * ramp->increment;
126 action.increment = ramp->increment
    [all...]
  /external/guava/guava/src/com/google/common/cache/
LongAddable.java 28 void increment(); method in interface:LongAddable
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LongAdder.java 28 public void increment() { method in class:LongAdder
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Counter.java 30 public synchronized int increment() { method in class:Counter
  /external/deqp/framework/delibs/decpp/
deSemaphore.hpp 40 * block until increment has been called from an another thread.
48 void increment (void) throw();
62 * \brief Increment semaphore count.
70 inline void Semaphore::increment (void) throw() function in class:de::Semaphore
80 * (increment() has been called).
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_x86_msvc.cc 71 Atomic32 increment) {
74 static_cast<LONG>(increment)) + increment;
99 Atomic64 increment) {
102 static_cast<LONGLONG>(increment)) + increment;
  /prebuilts/go/darwin-x86/test/
loopbce.go 8 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
16 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
25 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
34 for _, i := range a { // ERROR "Induction variable with minimum 0 and increment 1"
42 for i := 1; i < len(a); i++ { // ERROR "Induction variable with minimum 1 and increment 1$"
50 for i := 0; i < len(a); i += 2 { // ERROR "Induction variable with minimum 0 and increment 2$"
58 for i := -10; i < len(a); i += 2 { // ERROR "Induction variable with minimum -10 and increment 2$"
65 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
73 for i := 0; i < len(a); i++ { // ERROR "Induction variable with minimum 0 and increment 1$"
81 for i := 0; len(a) > i; i++ { // ERROR "Induction variable with minimum 0 and increment 1$
    [all...]
  /prebuilts/go/linux-x86/test/
loopbce.go 8 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
16 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
25 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
34 for _, i := range a { // ERROR "Induction variable with minimum 0 and increment 1"
42 for i := 1; i < len(a); i++ { // ERROR "Induction variable with minimum 1 and increment 1$"
50 for i := 0; i < len(a); i += 2 { // ERROR "Induction variable with minimum 0 and increment 2$"
58 for i := -10; i < len(a); i += 2 { // ERROR "Induction variable with minimum -10 and increment 2$"
65 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
73 for i := 0; i < len(a); i++ { // ERROR "Induction variable with minimum 0 and increment 1$"
81 for i := 0; len(a) > i; i++ { // ERROR "Induction variable with minimum 0 and increment 1$
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
SourceNodeImpl.java 82 public void increment(final ISourceNode child) { method in class:SourceNodeImpl
83 instructionCounter = instructionCounter.increment(child
85 branchCounter = branchCounter.increment(child.getBranchCounter());
86 complexityCounter = complexityCounter.increment(child
88 methodCounter = methodCounter.increment(child.getMethodCounter());
89 classCounter = classCounter.increment(child.getClassCounter());
114 public void increment(final ICounter instructions, final ICounter branches, method in class:SourceNodeImpl
119 instructionCounter = instructionCounter.increment(instructions);
120 branchCounter = branchCounter.increment(branches);
129 lines[line - offset] = l.increment(instructions, branches)
    [all...]

Completed in 356 milliseconds

1 2 3 4 5 6 7 8 91011>>