Searched defs:increment (Results 1 - 25 of 163) sorted by relevance

1234567

/external/skia/tools/lua/
H A Dagg_dash.lua13 function increment(table, tableKey, key, value) function
H A Dscrape_dashing.lua47 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")
H A Dscrape_dashing_full.lua35 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_ca
[all...]
/external/v8/test/mjsunit/
H A Dmath-exp-precision.js49 var increment = Math.PI / 35; // Roughly 0.1, but we want to try many variable
51 for (var x = -708; x < 710; x += increment) {
/external/deqp/framework/delibs/decpp/
H A DdeSemaphore.hpp40 * block until increment has been called from an another thread.
48 void increment (void) throw();
70 inline void Semaphore::increment (void) throw() function in class:de::Semaphore
80 * (increment() has been called).
/external/guava/guava/src/com/google/common/cache/
H A DLongAddable.java28 void increment(); method in interface:LongAddable
H A DLongAddables.java61 public void increment() { method in class:LongAddables.PureJavaLongAddable
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
H A DLongAdder.java28 public void increment() { method in class:LongAdder
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
H A DProgressMonitor.java39 * has changed. It is up to the monitor to determine if the increment is
51 public void incrementProgress(float increment); argument
/external/lldb/include/lldb/Utility/
H A DRefCounter.h40 increment(T* t) function in class:lldb_utility::RefCounter
/external/toybox/toys/lsb/
H A Dseq.c1 /* 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/libcxxabi/test/
H A Dtest_guard.pass.cpp22 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/nist-sip/java/gov/nist/javax/sip/header/
H A DIndentation.java78 * increment the indentation field
80 protected void increment() { method in class:Indentation
/external/protobuf/src/google/protobuf/stubs/
H A Datomicops_internals_x86_msvc.cc71 Atomic32 increment) {
74 static_cast<LONG>(increment)) + increment;
99 Atomic64 increment) {
102 static_cast<LONGLONG>(increment)) + increment;
70 Barrier_AtomicIncrement(volatile Atomic32* ptr, Atomic32 increment) argument
98 Barrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
H A Datomicops_internals_x86_msvc.h41 Atomic32 increment) {
42 return Barrier_AtomicIncrement(ptr, increment);
94 Atomic64 increment) {
95 return Barrier_AtomicIncrement(ptr, increment);
40 NoBarrier_AtomicIncrement(volatile Atomic32* ptr, Atomic32 increment) argument
93 NoBarrier_AtomicIncrement(volatile Atomic64* ptr, Atomic64 increment) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DShellSorter.java25 * 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;
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 o
58 insertionSort(Type[] array, int count, int start, int increment, Comparator<Type> comparator) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
H A DAbstractStorelessUnivariateStatistic.java40 * {@link #increment} in a loop over the the input array, and then uses
66 * {@link #increment} in a loop over the specified portion of the input
113 public abstract void increment(final double d); method in class:AbstractStorelessUnivariateStatistic
116 * This default implementation just calls {@link #increment} in a loop over
133 * This default implementation just calls {@link #increment} in a loop over
148 increment(values[i]);
H A DStorelessUnivariateStatistic.java21 * {@link #increment} and {@link #incrementAll(double[])} methods for adding
36 void increment(double d); method in interface:StorelessUnivariateStatistic
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
H A DFourthMoment.java48 * 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);
H A DSecondMoment.java40 * 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);
H A DThirdMoment.java42 * 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);
H A DVectorialMean.java52 public void increment(double[] v) throws DimensionMismatchException { method in class:VectorialMean
57 means[i].increment(v[i]);
/external/jetty/src/java/org/eclipse/jetty/util/statistic/
H A DCounterStatistic.java78 public void increment() method in class:CounterStatistic
/external/lldb/test/functionalities/inline-stepping/
H A Dcalling.cpp30 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 local
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DSpdy3Test.java91 private void windowUpdate(long increment) throws IOException { argument
92 new Spdy3.Writer(new Buffer(), true).windowUpdate(expectedStreamId, increment);

Completed in 527 milliseconds

1234567