Searched defs:step (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/tests/CoreTests/android/core/
H A DDeflateTest.java71 * "step" determines how compressible the data is.
76 private void bigTest(int step, int expectedAdler) argument
84 createSample(input, step);
101 byte val, step;
107 step = 1;
112 val += step;
115 step += stepStep;
/frameworks/base/awt/java/awt/geom/
H A DArc2D.java484 * The step to calculate next arc subdivision point.
486 double step; field in class:Arc2D.Iterator
551 step = Math.PI / 2.0;
553 step = -step;
558 step = Math.toRadians(extent / arcCount);
559 k = 4.0 / 3.0 * (1.0 - Math.cos(step / 2.0)) / Math.sin(step / 2.0);
603 angle += step;
648 angle += step;
[all...]
/frameworks/base/awt/org/apache/harmony/awt/gl/render/
H A DJavaLineRasterizer.java60 void move(float step) { // main dasher argument
61 pos += step;
62 step += phase;
63 while(step >= dash[index]) {
64 step -= dash[index];
68 phase = step;
481 void rasterize(int step) { argument
484 x += step;
487 x -= step;
493 void skip(int step) { argument
545 rasterize(int step) argument
552 skip(int step) argument
[all...]
/frameworks/base/libs/surfaceflinger/
H A DLayerBase.cpp273 const int step = copybit->get(copybit, COPYBIT_ROTATION_STEP_DEG); local
276 if ((mOrientation < 0) && (step > 1)) {
279 } else if ((mOrientation > 0) && (step > 90)) {
/frameworks/base/awt/java/awt/
H A DBasicStroke.java1895 * The step.
1897 double step; field in class:BasicStroke.DashIterator.Quad
1921 step = 1.0 / n;
1928 double dx1 = step * (step * ax + bx);
1929 double dy1 = step * (step * ay + by);
1930 double dx2 = step * (step * ax * 2.0);
1931 double dy2 = step * (ste
2011 double step; field in class:BasicStroke.DashIterator.Cubic
[all...]
/frameworks/base/libs/audioflinger/
H A DAudioFlinger.cpp663 // 1% corresponds roughly to first step in VOICE_CALL stream volume setting (see AudioService.java)
1651 step();
1655 bool AudioFlinger::MixerThread::TrackBase::step() { function in class:android::AudioFlinger::MixerThread::TrackBase
1779 // Check if last stepServer failed, try to step now
1781 if (!step()) goto getNextBuffer_exit;
1935 // Check if last stepServer failed, try to step now
1937 if (!step()) goto getNextBuffer_exit;
/frameworks/base/core/java/android/view/
H A DViewRoot.java2041 if (DEBUG_TRACKBALL) Log.v(TAG, "TB X=" + x.position + " step="
2042 + x.step + " dir=" + x.dir + " acc=" + x.acceleration
2044 + " / Y=" + y.position + " step="
2045 + y.step + " dir=" + y.dir + " acc=" + y.acceleration
2861 int step; field in class:ViewRoot.TrackballAxis
2869 step = _step;
2890 step = 0;
2900 step = 0;
2954 switch (step) {
2955 // If we are going to execute the first step, the
[all...]

Completed in 252 milliseconds