HomeSort by relevance Sort by last modified time
    Searched defs:step (Results 51 - 75 of 339) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java 124 int step = 1; local
127 step = -1;
133 offset += step;
  /packages/apps/Gallery2/src/com/android/camera/
OnScreenIndicators.java 78 * Sets the exposure indicator using exposure compensations step rounding.
84 float step = params.getExposureCompensationStep(); local
85 value = Math.round(value * step);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
BytesBufferPool.java 46 int step = Math.min(READ_STEP, capacity - length); local
47 int rc = fis.read(data, length, step);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
PerNameExecutorTest.java 49 assertRanNever("step 0", a1, a2, a3, b1);
50 step(); // run a1, b1 method
51 assertRanOnce("step 1", a1, b1);
52 assertRanNever("step 1", a2, a3);
53 step(); // run a2 method
54 assertRanOnce("step 2", a1, b1, a2);
55 assertRanNever("step 2", a3);
56 step(); // run a3 method
57 assertRanOnce("step 3", a1, b1, a2, a3);
58 step(); // should do nothin method
67 step(); \/\/ run a1, b1 method
73 step(); \/\/ do nothing method
81 step(); \/\/ run a3, c1 method
84 step(); \/\/ do nothing method
109 private void step() { method in class:PerNameExecutorTest
    [all...]
  /dalvik/vm/jdwp/
JdwpEvent.h 74 } step; member in union:JdwpEventMod
  /external/javasqlite/src/main/java/SQLite/
Stmt.java 21 * Internal last error code for prepare()/step() methods.
35 * Perform one step of compiled SQLite3 statement.
45 * while (s.step(cb)) {
55 * while (s.step(cb)) {
69 public native boolean step() throws SQLite.Exception; method in class:Stmt
  /external/libvorbis/lib/
codebook.c 359 int step=n/book->dim; local
360 long *entry = alloca(sizeof(*entry)*step);
361 float **t = alloca(sizeof(*t)*step);
364 for (i = 0; i < step; i++) {
369 for(i=0,o=0;i<book->dim;i++,o+=step)
370 for (j=0;j<step;j++)
  /external/oprofile/libabi/
opimport.cpp 147 unsigned int step = abi.need("sizeof_odb_node_t"); local
149 cerr << "extracting " << node_nr << " nodes of " << step << " bytes each " << endl;
151 assert(src + (node_nr * step) <= begin + len);
153 for (odb_node_nr_t i = 1 ; i < node_nr ; ++i, src += step) {
  /external/smack/src/org/xbill/DNS/
Generator.java 22 /** The step value of the range. */
23 public long step; field in class:Generator
61 * @param step The step value of the range.
74 Generator(long start, long end, long step, String namePattern,
77 if (start < 0 || end < 0 || start > end || step <= 0)
86 this.step = step;
221 current += step;
233 for (long i = start; i < end; i += step) {
    [all...]
  /external/valgrind/unittest/
linear_solver.h 271 double step = 1024.0; local
274 if (current[i] + derivative[i] * step < 0.0) {
275 step = - current[i] / derivative[i];
279 new_curr = current + derivative*step;
280 step /= 2.0;
282 if (step < 0.00001) {
  /external/webkit/Source/WebCore/html/
BaseDateAndTimeInputType.cpp 111 bool BaseDateAndTimeInputType::stepMismatch(const String& value, double step) const
119 ASSERT(round(step) == step);
120 return fmod(doubleValue, step);
167 double step; local
168 if (!element()->getAllowedValueStep(&step))
170 if (!fmod(step, msecPerMinute))
172 if (!fmod(step, msecPerSecond))
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
pitch_f4.c 79 Word16 max, t0, step, temp; local
119 step = 1; /* 1/4 subsample resolution */
123 step = 2; /* 1/2 subsample resolution */
132 for (i = fraction + step; i <= 3; i += step)
  /frameworks/av/media/libstagefright/codecs/g711/dec/
SoftG711.cpp 289 int32_t step = 4 << segment; local
291 int32_t abs = (0x80l << exponent) + step * mantissa + step / 2 - 4 * 33;
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
MosaicRendererSurfaceViewRenderer.java 44 MosaicRenderer.step();
  /libcore/luni/src/test/java/libcore/sqlite/
OldFunctionContextTest.java 97 assertEquals("error in step", e.getMessage());
115 st.step();
151 st.step();
209 public void step(FunctionContext fc, String[] args) {} method in class:OldFunctionContextTest.TestFCError
223 public void step(FunctionContext fc, String[] args) {} method in class:OldFunctionContextTest.TestFCCount
236 public void step(FunctionContext fc, String[] args) {} method in class:OldFunctionContextTest.TestFCZeroBlob
250 public void step(FunctionContext fc, String[] args) {} method in class:OldFunctionContextTest.TestFCString
264 public void step(FunctionContext fc, String[] args) {} method in class:OldFunctionContextTest.TestFCInt
278 public void step(FunctionContext fc, String[] args) {} method in class:OldFunctionContextTest.TestFCByteArray
292 public void step(FunctionContext fc, String[] args) { method in class:OldFunctionContextTest.SinFunc
    [all...]
OldDatabaseTest.java 635 s.step();
713 stat.step();
860 st.step();
1012 public void step(FunctionContext fc, String[] args) {} method in class:OldDatabaseTest.SinFunc
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
SweepGradientTest.java 84 final double step = twoPi / NUM_STEPS; local
87 for (double rad = step; rad <= twoPi - step; rad += step) {
  /development/ndk/platforms/android-18/samples/gles3jni/jni/
gles3jni.cpp 193 void Renderer::step() { function in class:Renderer
226 step();
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNIView.java 328 GL2JNILib.step();
  /external/aac/libSBRdec/src/
env_dec.cpp 369 FIXP_SGL step; /* speed of fade */ local
401 step = (FIXP_SGL)DECAY_COUPLING;
405 step = (FIXP_SGL)DECAY;
409 step <<= 1;
414 h_sbr_data->iEnvelope[i] = -step;
416 h_sbr_data->iEnvelope[i] = step;
sbrdec_freq_sca.cpp 425 /* Scaled bandfactor and step 1 bit right to avoid overflow
428 FIXP_DBL step = FL2FXCONST_DBL(0.125f); /* Initial increment for factor */ local
441 while ( step > FL2FXCONST_DBL(0.0f)) {
452 /* Halfen step. Right shift is not done as fract because otherwise the
454 step = (FIXP_DBL)((LONG)step >> 1);
456 bandfactor = bandfactor + step;
460 step = (FIXP_DBL)((LONG)step >> 1);
462 bandfactor = bandfactor - step;
647 int step; local
    [all...]
  /external/aac/libSBRenc/src/
nf_est.cpp 390 INT step; local
404 step=org_length/result_length; /* floor; */
405 org_length=org_length - step;
407 v_index[i]=v_index[i-1]+step;
  /external/clang/test/SemaCXX/
for-range-examples.cpp 30 T it, step; member in class:value_range_detail::value_range_step_iter
32 value_range_step_iter(const T &it, const T &step) : it(it), step(step) {}
35 value_range_step_iter &operator++() { it += step; return *this; }
40 T it, step, end_; member in class:value_range_detail::value_range_step
42 value_range_step(const T &it, const T &end, const T &step) :
43 it(it), end_(end), step(step) {}
45 iterator begin() const { return iterator(it, step); }
    [all...]
  /external/icu4c/common/
stringtriebuilder.cpp 497 int32_t step=0; local
502 edgeNumber=edge->markRightEdgesFirst(edgeNumber-step);
505 step=1;
  /external/icu4c/test/intltest/
bytestrietest.cpp 612 int32_t index, step; local
616 step=2;
620 step=3;
623 step=-1;
628 index=(index+step)%dataLength;

Completed in 2932 milliseconds

1 23 4 5 6 7 8 91011>>