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

<<11121314151617181920>>

  /libcore/luni/src/test/java/tests/support/
MockFunction.java 42 public void step(FunctionContext fc, String args[]) { method in class:MockFunction
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Dynamics/
btRigidBody.cpp 314 btVector3 btRigidBody::computeGyroscopicImpulseImplicit_Body(btScalar step) const
330 btVector3 f = step * omegab.cross(ibo);
339 btMatrix3x3 J = Ib + (skew0*Ib - skew1)*step;
355 btVector3 btRigidBody::computeGyroscopicImpulseImplicit_World(btScalar step) const
358 // calculate using implicit euler step so it's stable.
369 // f(w') = -(T*step + Iw) + Iw' + w' + w'xIw'*step = 0
370 // df/dw' = I + 1xIw'*step + w'xI*step
374 // one step of newton's metho
    [all...]
  /external/opencv/cxcore/include/
cxcore.hpp 159 int step() const { return image ? image->widthStep : 0; } function in class:CvImage
218 void* data=0, int step=CV_AUTOSTEP )
219 { matrix = cvInitMatHeader( hdr, rows, cols, type, data, step ); }
223 CvMatrix( int rows, int cols, int type, void* data, int step=CV_AUTOSTEP )
225 cvSetData( matrix, data, step ); }
327 int step() const { return matrix ? matrix->step : 0; } function in class:CvMatrix
329 void set_data( void* data, int step=CV_AUTOSTEP )
330 { cvSetData( matrix, data, step ); }
332 uchar* row(int i) { return !matrix ? 0 : matrix->data.ptr + i*matrix->step; }
    [all...]
  /external/opencv3/modules/core/src/
kmeans.cpp 72 step(_step),
82 tdist2[i] = std::min(normL2Sqr(data + step*i, data + stepci, dims), dist[i]);
93 const size_t step; member in class:cv::KMeansPPDistanceComputer
106 size_t step = _data.step/sizeof(data[0]); local
117 dist[i] = normL2Sqr(data + step*i, data + step*centers[0], dims);
135 KMeansPPDistanceComputer(tdist2, data, dist, dims, step, step*ci));
155 const float* src = data + step*centers[k]
    [all...]
  /external/chromium-trace/catapult/firefighter/update/common/buildbot/
build.py 5 from common.buildbot import step namespace
23 self._steps = tuple(step.Step(step_data, self._url)
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
Profile.java 73 public final ProfileEntry step = new ProfileEntry(); field in class:Profile
86 strings.add(" step: " + step);
  /external/libvorbis/lib/
codebook.h 91 extern int _best(codebook *book, float *a, int step);
95 extern int vorbis_book_besterror(codebook *book,float *a,int step,int addmul);
  /external/libvorbis/vq/
localcodebook.h 93 extern int _best(codebook *book, float *a, int step);
97 extern int vorbis_book_besterror(codebook *book,float *a,int step,int addmul);
  /external/opencv/cv/src/
cvcanny.cpp 102 IPPI_CALL( icvCanny_16s8u_C1R_p( (short*)dx->data.ptr, dx->step,
103 (short*)dy->data.ptr, dy->step,
104 dst->data.ptr, dst->step,
167 const short* _dx = (short*)(dx->data.ptr + dx->step*i);
168 const short* _dy = (short*)(dy->data.ptr + dy->step*i);
213 _dx = (short*)(dx->data.ptr + dx->step*(i-1));
214 _dy = (short*)(dy->data.ptr + dy->step*(i-1));
343 uchar* _dst = dst->data.ptr + dst->step*i;
cvcontours.cpp 44 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
45 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
46 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
47 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
48 (deltas)[6] = (step), (deltas)[7] = (step) + (nch))
157 int img_step; /* image step */
198 int step; local
217 step = mat->step
839 int step; local
    [all...]
  /external/v8/test/mjsunit/
array-shift4.js 8 // encounters the hole on the copy step.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Intra.c 50 * positioning, and IDCT, with appropriate clipping on each step, are performed
64 * [in] step width of the destination plane
108 * blockIndex exceeds [0,9], step is not the multiple of 8, intraDCVLC is zero while
120 OMX_INT step,
221 armVCM4P2_Clip8(pTempBuf2,pDst,step);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_colorsys.py 4 def frange(start, stop, step):
7 start += step
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_colorsys.py 4 def frange(start, stop, step):
7 start += step
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_colorsys.py 4 def frange(start, stop, step):
7 start += step
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_colorsys.py 4 def frange(start, stop, step):
7 start += step
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
NonLinearConjugateGradientOptimizer.java 56 /** Initial step used to bracket the optimum in line search. */
95 * Set the initial step used to bracket the optimum in line search.
97 * The initial step is a factor with respect to the search direction,
100 * @param initialStep initial step used to bracket the optimum in line search,
101 * if a non-positive value is used, the initial step is reset to its
162 // find the optimal step in the search direction
164 final double step = solver.solve(lsf, 0, findUpperBound(lsf, 0, initialStep)); local
168 point[i] += step * searchDirection[i];
219 * @param h initial step to try
229 for (double step = h; step < Double.MAX_VALUE; step *= FastMath.max(2, yA / yB))
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_imageio.cpp 125 bool GrFmtImageIOReader::ReadData( uchar* data, int step, int color )
201 uchar * line = base + y * step;
220 memcpy (data + y * step, bitmap + y * m_width, m_width);
275 bool GrFmtImageIOWriter::WriteImage( const uchar* data, int step,
326 const uchar * line = base + y * step;
345 memcpy (bitmapData + y * width, data + y * step, width);
  /external/opencv3/modules/imgcodecs/src/
ios_conversions.mm 74 image.step.p[0],
107 m.step[0], colorSpace,
117 m.step[0], colorSpace,
  /external/valgrind/VEX/switchback/
binary_switchback.pl 366 # Calculate next step:
369 my $step = $diff / 2;
371 if ($step < 0) {
372 print "Error: step = $step\n";
377 if ($step!=0) {
378 $N = $N_LAST_GOOD + $step; # Keep on going...
387 print "EOL: s=$step\n";
  /external/zlib/src/contrib/testzlib/
testzlib.c 196 int step=0; local
212 step++;
220 printf("total compress size = %u, in %u step\n",lSizeCpr,step);
237 int step=0; local
253 step++;
261 printf("total uncompress size = %u, in %u step\n",lSizeUncpr,step);
  /frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
TestLatencyView.java 118 for(int step = 0; step < 8; step++) {
119 float sx = (x + dx * step) * mScaleX + mOffsetX;
120 float sy = (y + dy * step) * mScaleY + mOffsetY;
121 int cbase = step * 4;
  /external/skia/gm/
multipicturedraw.cpp 388 ComposeStep& step = composeSteps->push_back(); local
390 step.fSurf = create_compat_surface(finalCanvas, kPicWidth, kPicHeight);
392 SkCanvas* subCanvas = step.fSurf->getCanvas();
417 ComposeStep& step = composeSteps->push_back(); local
419 step.fX = SkIntToScalar(x*kTileWidth);
420 step.fY = SkIntToScalar(y*kTileHeight);
421 step.fPaint = new SkPaint;
422 step.fPaint->setColorFilter(
425 step.fSurf = create_compat_surface(finalCanvas, kTileWidth, kTileHeight);
427 SkCanvas* subCanvas = step.fSurf->getCanvas()
512 const ComposeStep& step = composeSteps[i]; variable
    [all...]
  /external/icu/icu4c/source/test/intltest/
convtest.cpp 860 int32_t step,
871 if(step>=0) {
872 // call ucnv_toUnicode() with in/out buffers no larger than (step) at a time
874 // step==0 performs bulk conversion and generates offsets
877 if(step==0) {
1074 int32_t step; member in struct:__anon12148
1089 int32_t i, step; local
1521 int32_t step; member in struct:__anon12149
1529 int32_t i, step; local
    [all...]
  /external/opencv/cxcore/src/
cxmeansdv.cpp 247 step /= sizeof(src[0])
377 ( const arrtype* src, int step, \
379 (src, step, size, mean, sdv) ) \
386 for( ; size.height--; src += step ) \
412 ( const arrtype* src, int step, \
414 (src, step, size, mean, sdv) ) \
420 for( ; size.height--; src += step ) \
436 ( const arrtype* src, int step, \
446 for( ; size.height--; src += step ) \
472 ( const arrtype* src, int step, CvSize size,
    [all...]

Completed in 1382 milliseconds

<<11121314151617181920>>