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

1 2 3 4 5 6 78 91011>>

  /external/v8/test/mjsunit/harmony/
async-debug-step-in-out-out.js 15 var [match, expected_count, step] = /\/\/ B(\d) (\w+)$/.exec(line);
17 if (step != "Continue") execState.prepareStep(Debug.StepAction[step]);
async-debug-step-in.js 15 var [match, expected_count, step] = /\/\/ B(\d) (\w+)$/.exec(line);
17 if (step != "Continue") execState.prepareStep(Debug.StepAction[step]);
async-debug-step-nested.js 15 var [match, expected_count, step] = /\/\/ B(\d) (\w+)$/.exec(line);
17 if (step != "Continue") execState.prepareStep(Debug.StepAction[step]);
async-debug-step-next.js 15 var [match, expected_count, step] = /\/\/ B(\d) (\w+)$/.exec(line);
17 if (step != "Continue") execState.prepareStep(Debug.StepAction[step]);
async-debug-step-out.js 15 var [match, expected_count, step] = /\/\/ B(\d) (\w+)$/.exec(line);
17 if (step != "Continue") execState.prepareStep(Debug.StepAction[step]);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidDeflateTest.java 69 * "step" determines how compressible the data is.
74 private void bigTest(int step, int expectedAdler)
82 createSample(input, step);
99 byte val, step;
105 step = 1;
110 val += step;
113 step += stepStep;
OldAndroidZipStreamTest.java 72 byte val, step;
76 step = 1;
81 val += step;
84 step += stepStep;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_userstring.py 98 for step in (None, 1, -1):
103 data = L[start:stop:step]
105 L[start:stop:step] = data
106 s[start:stop:step] = "".join(data)
109 del L[start:stop:step]
110 del s[start:stop:step]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_userstring.py 98 for step in (None, 1, -1):
103 data = L[start:stop:step]
105 L[start:stop:step] = data
106 s[start:stop:step] = "".join(data)
109 del L[start:stop:step]
110 del s[start:stop:step]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_userstring.py 98 for step in (None, 1, -1):
103 data = L[start:stop:step]
105 L[start:stop:step] = data
106 s[start:stop:step] = "".join(data)
109 del L[start:stop:step]
110 del s[start:stop:step]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_userstring.py 98 for step in (None, 1, -1):
103 data = L[start:stop:step]
105 L[start:stop:step] = data
106 s[start:stop:step] = "".join(data)
109 del L[start:stop:step]
110 del s[start:stop:step]
  /external/autotest/client/site_tests/kernel_CpufreqMinMax/
kernel_CpufreqMinMax.py 73 step = (available_freqs[1] - available_freqs[0]) / 4
74 if step:
76 available_freqs[1] + 1, step)
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/joints/
ConstantVolumeJoint.java 169 // bodies[next].m_linearVelocity.x += delta.x * step.inv_dt;
170 // bodies[next].m_linearVelocity.y += delta.y * step.inv_dt;
179 public void initVelocityConstraints(final SolverData step) {
180 Velocity[] velocities = step.velocities;
181 Position[] positions = step.positions;
191 if (step.step.warmStarting) {
192 m_impulse *= step.step.dtRatio;
208 public boolean solvePositionConstraints(SolverData step) {
    [all...]
  /external/opencv/cvaux/src/
cvcreatehandmask.cpp 53 uchar * image_mask, int step,
79 memset( image_mask, 0, step * size.height );
90 *(image_mask + pt.y * step + pt.x) = 255;
cvmorphing.cpp 74 float step = 0; local
105 step = 0;
107 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
134 begLine += step;
161 begLine += step;
194 step = 0;
196 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
231 begLine += step;
261 begLine += step;
  /external/opencv/otherlibs/highgui/
grfmt_sunras.cpp 173 bool GrFmtSunRasterReader::ReadData( uchar* data, int step, int color )
209 for( y = 0; y < m_height; y++, data += step )
265 data += step;
278 for( y = 0; y < m_height; y++, data += step )
328 data = FillUniColor( data, line_end, step, width3,
332 data = FillUniGray( data, line_end, step, width3,
343 line_end += step;
356 for( y = 0; y < m_height; y++, data += step )
375 for( y = 0; y < m_height; y++, data += step )
414 bool GrFmtSunRasterWriter::WriteImage( const uchar* data, int step,
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
Exif.java 123 int step = 1; local
126 step = -1;
132 offset += step;
  /external/opencv/cxcore/src/
cxarithm.cpp 83 type* dst, int step, CvSize size ), \
84 (src1, step1, src2, step2, dst, step, size) ) \
86 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \
90 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
98 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
112 type* dst, int step, CvSize size, int /*scalefactor*/ ), \
113 (src1, step1, src2, step2, dst, step, size, 0) ) \
115 step1/=sizeof(src1[0]); step2/=sizeof(src2[0]); step/=sizeof(dst[0]); \
119 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
127 for( ; size.height--; src1 += step1, src2 += step2, dst += step ) \
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/emr/
__init__.py 30 from boto.emr.step import Step, StreamingStep, JarStep
  /external/javasqlite/src/main/java/SQLite/
Backup.java 41 * Perform a backup step.
47 public boolean step(int n) throws SQLite.Exception { method in class:Backup
56 * Perform the backup in one step.
  /external/opencv3/modules/core/include/opencv2/core/
ippasync.hpp 125 size_t newSize = (size_t)(height*(hpp32u)(dst.step));
127 sts = hppiGetMatrixData(accel,src,(hpp32u)(dst.step),dst.data,&newSize);
181 if ((int)(src.data)%4096==0 && pitch==(hpp32u)(src.step))
187 return hppiCreateMatrix(htype, src.cols*cn, src.rows, src.data, (hpp32s)(src.step));;
  /external/opencv3/modules/cudaarithm/src/cuda/
transpose.cu 77 nppSafeCall( nppiTranspose_8u_C1R(src.ptr<Npp8u>(), static_cast<int>(src.step),
78 dst.ptr<Npp8u>(), static_cast<int>(dst.step), sz) );
  /external/opencv3/modules/cudacodec/src/cuda/
rgb_to_yv12.cu 80 const size_t planeSize = src.rows * dst.step;
81 GlobPtr<uchar> y_plane = globPtr(dst.data, dst.step);
82 GlobPtr<uchar> u_plane = globPtr(y_plane.data + planeSize, dst.step / 2);
83 GlobPtr<uchar> v_plane = globPtr(u_plane.data + (planeSize / 4), dst.step / 2);
117 const size_t planeSize = src.rows * dst.step;
118 GlobPtr<uchar> y_plane = globPtr(dst.data, dst.step);
119 GlobPtr<uchar> u_plane = globPtr(y_plane.data + planeSize, dst.step / 2);
120 GlobPtr<uchar> v_plane = globPtr(u_plane.data + (planeSize / 4), dst.step / 2);
  /external/tremolo/Tremolo/
mdct.h 64 int step,
  /external/opencv3/modules/imgcodecs/src/
grfmt_exr.cpp 191 int step = img.step; local
212 ystep = step;
306 UpSample( data, 3, step / xstep, xsample[0], m_blue->ySampling );
308 UpSample( data + xstep, 3, step / xstep, xsample[1], m_green->ySampling );
310 UpSample( data + 2 * xstep, 3, step / xstep, xsample[2], m_red->ySampling );
313 UpSample( data, 1, step / xstep, xsample[0], m_green->ySampling );
344 ChromaToBGR( (float *)buffer, 1, step );
364 out += step;
369 UpSampleY( data, 3, step / xstep, m_blue->ySampling )
586 const int step = img.step; local
    [all...]

Completed in 506 milliseconds

1 2 3 4 5 6 78 91011>>