HomeSort by relevance Sort by last modified time
    Searched refs:step (Results 476 - 500 of 1645) sorted by null

<<11121314151617181920>>

  /external/zlib/src/test/
infcover.c 276 text to include in an error message, step is how much input data to feed
284 local void inf(char *hex, char *what, unsigned step, int win, unsigned len,
312 if (step == 0 || step > have)
313 step = have;
314 strm.avail_in = step;
315 have -= step;
339 strm.avail_in = step > have ? have : step;
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
set_sign.cpp 202 for (j = i; j < L_CODE; j += STEP)
281 for (j = i; j < L_CODE; j += STEP)
315 step = step size in the tracks (Word16)
364 Word16 step //i : the step size in the tracks
420 for (j = i; j < L_CODE; j += step)
493 Word16 step, /* i : the step size in the tracks */
569 for (j = i; j < L_CODE; j += step)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes;
16 ; * - step <16 or step is not a multiple of 16.
32 step RN 2 label
45 SUB Count,step,#8 ;//Count=step-8
47 LDRD X1,[pSrc],Count ;//pSrc after loading pSrc=pSrc+step
  /frameworks/base/core/java/android/accessibilityservice/
GestureDescription.java 375 * A step along a gesture. Contains all of the touch points at a particular time
485 GestureStep step = steps.get(i); local
486 int currentTouchPointSize = step.numTouchPoints;
491 step.touchPoints, currentTouchPointSize, step.timeSinceGestureStart);
493 lastTouchPointSize, step.touchPoints, currentTouchPointSize,
494 step.timeSinceGestureStart);
496 lastTouchPointSize, step.touchPoints, currentTouchPointSize,
497 step.timeSinceGestureStart);
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
BaseWrapContentTest.java 170 for (Step step : scenario.mStepList) {
172 step.onRun();
245 ArrayList<Step> mStepList = new ArrayList<>();
247 public Scenario(Step... steps) {
260 abstract static class Step {
330 public void assertSame(Snapshot other, int step) {
345 assertMap("child coordinates. step:" + step, mChildCoordinates,
350 assertMap("appearing step:" + step, mAppear, other.mAppear)
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/grovemd/
grovemd.cxx 227 int step = m_currentStep % 4; local
229 switch (step)
  /hardware/bsp/intel/peripheral/libupm/src/uln200xa/
uln200xa.cxx 146 int step = m_currentStep % 8; local
151 // Step I0 I1 I2 I3
161 switch (step)
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
ZoomControl.java 147 protected void setZoomStep(int step) {
148 mStep = step;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pdb.py 55 step
56 step
69 'Fail to step into the caller after a return')
229 ... 'step',
235 (Pdb) step
258 ... 'step',
259 ... 'step',
260 ... 'step',
261 ... 'step',
262 ... 'step',
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pdb.py 55 step
56 step
69 'Fail to step into the caller after a return')
229 ... 'step',
235 (Pdb) step
258 ... 'step',
259 ... 'step',
260 ... 'step',
261 ... 'step',
262 ... 'step',
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pdb.py 55 step
56 step
69 'Fail to step into the caller after a return')
229 ... 'step',
235 (Pdb) step
258 ... 'step',
259 ... 'step',
260 ... 'step',
261 ... 'step',
262 ... 'step',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pdb.py 55 step
56 step
69 'Fail to step into the caller after a return')
229 ... 'step',
235 (Pdb) step
258 ... 'step',
259 ... 'step',
260 ... 'step',
261 ... 'step',
262 ... 'step',
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
World.java 120 * This is used to compute the time step ratio to support a variable time step.
484 // Flag the contact for filtering at the next time step (where either
575 // Flag the contact for filtering at the next time step (where either
586 private final TimeStep step = new TimeStep(); field in class:World
591 * Take a time step. This performs collision detection, integration, and constraint solution.
597 public void step(float dt, int velocityIterations, int positionIterations) { method in class:World
600 // log.debug("Starting step");
610 step.dt = dt;
611 step.velocityIterations = velocityIterations
    [all...]
  /external/opencv/cv/src/
cvpyrsegmentation.cpp 188 int step; local
259 step = roi.width * sizeof( float );
265 cvInitMatHeader( &_pyramida, roi.height, roi.width, CV_32FC1, pyramida, step );
267 /*_CV_CHECK( icvCvtTo_32f_C1R( src_image, src_step, pyramida, step, roi, CV_8UC1 ));*/
269 p_base = (_CvPyramidBase *) (buffer + step * roi.height);
292 cvSetData( &prev_level, pyramida, step );
293 cvSetData( &next_level, pyramida, step );
296 //_CV_CHECK( icvPyrDown_Gauss5x5_32f_C1R( pyramida, step, pyramida, step, size, buff ));
297 //_CV_CHECK( icvPyrDownBorder_32f_CnR( pyramida, step, size, pyramida, step, dst_size, 1 ))
602 int step; local
    [all...]
cvkdtree.cpp 66 return *((scalar_type*)(mat->data.ptr + i * mat->step) + j);
111 dptr += d->step;
112 resultsptr += results->step;
113 distptr += dist->step;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
MotionIndicatorView.java 39 * final int TILT_ANGLE_STEP = 5; // 5 degree(s) per step
40 * final int YAW_ANGLE_STEP = 10; // 10 degree(s) per step
313 RangeCoveredRegister(int low, int high, int step) {
315 mStep = step;
321 RangeCoveredRegister(int step) {
323 mStep = step;
340 * If it is LINEAR mode, the range will be quantized to nearest step boundary. If it is the
377 * Test if a specific step is covered.
379 * @param i the step number
380 * @return if the step specified is covered, return true; otherwise false
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboMultisampleTests.cpp 181 const float step = 2.0f / (float)numSteps; local
190 float d = -1.0f + step*(float)ndx;
204 const int step = 1; local
212 int s = step*ndx;
  /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/jemalloc/test/unit/
smoothstep.c 4 #define STEP(step, h, x, y) \
7 #undef STEP
57 (KQU(1) << SMOOTHSTEP_BFP), "Last step must equal 1");
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/joints/
FrictionJoint.java 181 if (data.step.warmStarting) {
182 // Scale impulses to support a variable time step.
183 m_linearImpulse.mulLocal(data.step.dtRatio);
184 m_angularImpulse *= data.step.dtRatio;
225 float h = data.step.dt;
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Dynamics/
btRigidBody.h 214 void predictIntegratedTransform(btScalar step, btTransform& predictedTransform) ;
216 void saveKinematicState(btScalar step);
275 void integrateVelocities(btScalar step);
542 btVector3 computeGyroscopicImpulseImplicit_Body(btScalar step) const;
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
InterpolationTest.java 158 for (float step = 0; step <= steps; step++) {
160 float percent = step / steps;
KinematicBodyTest.java 60 world.step(Math.min(0.032f, Gdx.graphics.getDeltaTime()), 3, 4);
  /external/lz4/programs/
bench.c 200 size_t step = 64 MB; local
204 requiredMem += 2*step;
209 requiredMem -= step;
214 return (size_t) (requiredMem - step);
  /external/netperf/doc/examples/
bloat.sh 55 $RRDTOOL create netperf_rr.rrd --step 1 --start $MIN_TIMESTAMP \
68 $RRDTOOL create netperf_stream.rrd --step 1 --start $STREAM_MIN_TIMESTAMP \

Completed in 1559 milliseconds

<<11121314151617181920>>