Searched defs:step (Results 51 - 75 of 190) sorted by relevance

12345678

/external/opencv/otherlibs/highgui/
H A Dgrfmt_pxm.cpp196 bool GrFmtPxMReader::ReadData( uchar* data, int step, int color ) argument
240 for( y = 0; y < m_height; y++, data += step )
253 for( y = 0; y < m_height; y++, data += step )
269 for( y = 0; y < m_height; y++, data += step )
375 bool GrFmtPxMWriter::WriteImage( const uchar* data, int step, argument
385 assert( data && width > 0 && height > 0 && step >= fileStep );
415 for( y = 0; y < height; y++, data += step )
H A Dgrfmt_sunras.cpp173 bool GrFmtSunRasterReader::ReadData( uchar* data, int step, int color ) argument
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, argument
[all...]
/external/openssl/apps/
H A Dengine.c100 static int append_buf(char **buf, const char *s, int *size, int step) argument
106 *size = step;
118 *size += step;
/external/quake/quake/src/QW/client/
H A Dsnd_mix.c145 int step; local
166 step = 3 - shm->channels;
206 p+= step;
221 p+= step;
/external/quake/quake/src/WinQuake/
H A Dsnd_mix.cpp153 int step; local
174 step = 3 - shm->channels;
214 p+= step;
229 p+= step;
H A Dsv_user.cpp60 int step, dir, steps; local
93 step = (int) (z[j] - z[j-1]);
94 if (step > -ON_EPSILON && step < ON_EPSILON)
97 if (dir && ( step-dir > ON_EPSILON || step-dir < -ON_EPSILON ) )
101 dir = step;
/external/valgrind/unittest/
H A Dlinear_solver.h271 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/
H A DRangeInputType.cpp131 // value matches to step on user input, and sanitization takes care
172 // FIXME: We can't use stepUp() for the step value "any". So, we increase
174 double step = (max - min) / 100; local
177 // Stepping-up and -down for step="any" are special cases for type="range" from renderer for convenient.
178 // No stepping normally for step="any". They cannot be handled by stepUp()/stepDown()/stepUpFromRenderer().
182 newValue = current + step;
186 newValue = current - step;
196 // Reasonable stepping-up/-down by stepUpFromRenderer() unless step="any"
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteStatement.cpp96 int SQLiteStatement::step() function in class:WebCore::SQLiteStatement
106 LOG(SQLDatabase, "SQL - step - %s", m_query.ascii().data());
143 if (step() != SQLITE_DONE) {
156 if (step() != SQLITE_ROW) {
433 if (step() != SQLITE_ROW) {
460 while (step() == SQLITE_ROW)
480 while (step() == SQLITE_ROW)
500 while (step() == SQLITE_ROW)
520 while (step() == SQLITE_ROW)
/external/webkit/Source/WebCore/platform/wx/wxcode/win/
H A Dscrollbar_render.cpp123 const wxRect& rect, wxOrientation orient, int current, wxScrollbarPart focusPart, wxScrollbarPart hoverPart, int max, int step, int flags)
185 current, step, &thumbStart, &thumbLength);
122 wxRenderer_DrawScrollbar(wxWindow* window, wxDC& dc, const wxRect& rect, wxOrientation orient, int current, wxScrollbarPart focusPart, wxScrollbarPart hoverPart, int max, int step, int flags) argument
/external/webkit/Source/WebCore/storage/
H A DSQLTransaction.cpp121 const char* SQLTransaction::debugStepName(SQLTransaction::TransactionStepMethod step) argument
123 if (step == &SQLTransaction::acquireLock)
125 else if (step == &SQLTransaction::openTransactionAndPreflight)
127 else if (step == &SQLTransaction::runStatements)
129 else if (step == &SQLTransaction::postflightAndCommit)
131 else if (step == &SQLTransaction::cleanupAfterTransactionErrorCallback)
133 else if (step == &SQLTransaction::deliverTransactionCallback)
135 else if (step == &SQLTransaction::deliverTransactionErrorCallback)
137 else if (step == &SQLTransaction::deliverStatementCallback)
139 else if (step
[all...]
/external/zlib/src/contrib/testzlib/
H A Dtestzlib.c196 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);
/external/zlib/src/test/
H A Dinfcover.c276 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, argument
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;
/external/aac/libSBRdec/src/
H A Denv_dec.cpp369 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;
/external/aac/libSBRenc/src/
H A Dnf_est.cpp390 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/chromium/testing/gtest/include/gtest/
H A Dgtest-param-test.h86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // begin+step+step, ...}. The values do not
88 // include end. step defaults to 1.
224 // Range(start, end, step)
225 // - returns a generator producing a sequence of values {start, start+step,
226 // start+step+step, ..., }.
242 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) { argument
[all...]
/external/gtest/include/gtest/
H A Dgtest-param-test.h86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // begin+step+step, ...}. The values do not
88 // include end. step defaults to 1.
223 // Range(start, end, step)
224 // - returns a generator producing a sequence of values {start, start+step,
225 // start+step+step, ..., }.
241 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) { argument
[all...]
/external/icu4c/common/
H A Dstringtriebuilder.cpp496 int32_t step=0; local
501 edgeNumber=edge->markRightEdgesFirst(edgeNumber-step);
504 step=1;
/external/icu4c/test/intltest/
H A Dbytestrietest.cpp612 int32_t index, step; local
616 step=2;
620 step=3;
623 step=-1;
628 index=(index+step)%dataLength;
/external/libvorbis/vq/
H A Dbookutil.c25 int _best(codebook *book, float *a, int step){ argument
37 for(i=0,o=step*(dim-1);i<dim;i++,o-=step){
43 for(i=0,o=step*(dim-1);i<dim;i++,o-=step){
60 float val=(e[j]-a[j*step]);
/external/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest-param-test.h86 // Range(begin, end [, step]) - Yields values {begin, begin+step,
87 // begin+step+step, ...}. The values do not
88 // include end. step defaults to 1.
223 // Range(start, end, step)
224 // - returns a generator producing a sequence of values {start, start+step,
225 // start+step+step, ..., }.
241 internal::ParamGenerator<T> Range(T start, T end, IncrementT step) { argument
[all...]
/external/opencv/cv/src/
H A Dcvsnakes.cpp54 // srcStep - its step in bytes,
422 int step; local
430 cvGetRawData( src, &data, &step, &size );
432 IPPI_CALL( icvSnake8uC1R( data, step, size, points, length,
/external/opencv/cvaux/src/
H A Dcvtexture.cpp125 // roll together Directions and magnitudes together with knowledge of image (step)
307 // generate GLCM for each step
532 CV_IMPL double cvGetGLCMDescriptor( CvGLCM* GLCM, int step, int descriptor ) argument
546 if( (unsigned)step >= (unsigned)(GLCM->numMatrices))
547 CV_ERROR( CV_StsOutOfRange, "step is not in 0 .. GLCM->numMatrices - 1" );
552 value = GLCM->descriptors[step][descriptor];
608 cvCreateGLCMImage( CvGLCM* GLCM, int step )
625 if( (unsigned)step >= (unsigned)(GLCM->numMatrices) )
626 CV_ERROR( CV_StsOutOfRange, "The step index is out of range" );
636 double matrixValue = GLCM->matrices[step][sideLoop
[all...]
/external/opencv/
H A Dcvjni.h167 int step,
179 assert( data && width > 0 && height > 0 && step >= fileStep );
219 data += step*(height - 1);
220 for( ; height--; data -= step )
166 loadImageBytes(const uchar* data, int step, int width, int height, int depth, int channels, WLNonFileByteStream* m_strm) argument
/external/opencv/cxcore/include/
H A Dcxcore.hpp159 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...]

Completed in 477 milliseconds

12345678