Searched defs:step (Results 201 - 225 of 440) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DomxSP_FFTInv_CCSToR_F32_Sfs_s.S88 #define step r8 define
H A DomxSP_FFTInv_CCSToR_S16_Sfs_s.S78 #define step r8 define
H A DomxSP_FFTInv_CCSToR_S32_Sfs_s.S105 #define step r8 define
/external/chromium_org/third_party/webrtc/modules/audio_device/test/
H A Daudio_device_test_api.cc959 uint32_t step = (maxVolume - minVolume) / 10; local
960 step = (step < stepSize ? stepSize : step);
961 for (vol = minVolume; vol <= maxVolume; vol += step) {
978 uint32_t step = (maxVolume - minVolume) / 10; local
979 step = (step < stepSize ? stepSize : step);
980 for (vol = minVolume; vol <= maxVolume; vol += step) {
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DInputDialogContainer.java79 double min, double max, double step) {
109 0, 0, 0, 0, 0, min, max, step);
114 0, 0, 0, min, max, step);
125 0, min, max, step);
128 0, 0, 0, 0, 0, min, max, step);
132 showPickerDialog(dialogType, year, 0, 0, 0, 0, 0, 0, week, min, max, step);
138 final double min, final double max, final double step,
149 showPickerDialog(dialogType, dialogValue, min, max, step);
197 double min, double max, double step,
203 showPickerDialog(type, value, min, max, step);
78 showPickerDialog(final int dialogType, double dialogValue, double min, double max, double step) argument
136 showSuggestionDialog(final int dialogType, final double dialogValue, final double min, final double max, final double step, DateTimeSuggestion[] suggestions) argument
196 showDialog(final int type, final double value, double min, double max, double step, DateTimeSuggestion[] suggestions) argument
209 showPickerDialog(final int dialogType, int year, int month, int monthDay, int hourOfDay, int minute, int second, int millis, int week, double min, double max, double step) argument
[all...]
/external/deqp/framework/common/
H A DtcuVectorUtil.hpp71 inline float step (float edge, float x) { return (x < edge) ? 0.0f : 1.0f; } function in namespace:tcu
81 inline double step (double edge, double x) { return (x < edge) ? 0.0 : 1.0; } function in namespace:tcu
462 TCU_DECLARE_VECTOR_BINARY_FUNC(step, deFloatStep)
/external/deqp/modules/gles2/functional/
H A Des2fDepthRangeTests.cpp383 int step = (int)deFloatFloor(d / depthStep); local
384 int col = de::clamp(deRoundFloatToInt32((float)step*depthStep*255.0f), 0, 255);
H A Des2fDepthStencilClearTests.cpp327 float step = 2.0f / numSteps; local
336 float d = -1.0f + step*ndx;
361 int step = numValues / numSteps; local
378 int s = step*ndx;
438 float step = deFloatFloor(depth * (float)DEPTH_STEPS) / (float)(DEPTH_STEPS-1); local
440 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), oldColor.getGreen(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getAlpha());
486 float step = (float)(stencil / ((1u<<stencilBits) / (deUint32)STENCIL_STEPS)) / (float)(STENCIL_STEPS-1); local
488 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getBlue(), oldColor.getAlpha());
/external/deqp/modules/gles3/functional/
H A Des3fDepthStencilClearTests.cpp330 float step = 2.0f / numSteps; local
339 float d = -1.0f + step*ndx;
364 int step = numValues / numSteps; local
381 int s = step*ndx;
441 float step = deFloatFloor(depth * (float)DEPTH_STEPS) / (float)(DEPTH_STEPS-1); local
443 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), oldColor.getGreen(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getAlpha());
489 float step = (float)(stencil / ((1u<<stencilBits) / (deUint32)STENCIL_STEPS)) / (float)(STENCIL_STEPS-1); local
491 tcu::RGBA newColor = tcu::RGBA(oldColor.getRed(), deClamp32(deRoundFloatToInt32(step * 255.0f), 0, 255), oldColor.getBlue(), oldColor.getAlpha());
H A Des3fFragDepthTests.cpp409 int step = (int)deFloatFloor(d / depthStep); local
410 int col = de::clamp(deRoundFloatToInt32((float)step*depthStep*255.0f), 0, 255);
/external/eigen/Eigen/src/Core/
H A DFunctors.h543 // base = [low, ..., low] + ([step, ..., step] * [-size, ..., 0])
544 // 2) each step (where size is 1 for coeff access or PacketSize for packet access)
545 // base += [size*step, ..., size*step]
554 linspaced_op_impl(const Scalar& low, const Scalar& step) : argument
555 m_low(low), m_step(step),
556 m_packetStep(pset1<Packet>(packet_traits<Scalar>::size*step)),
557 m_base(padd(pset1<Packet>(low), pmul(pset1<Packet>(step),plset<Scalar>(-packet_traits<Scalar>::size)))) {}
576 // 1) each step
583 linspaced_op_impl(const Scalar& low, const Scalar& 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.
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/icu/icu4c/source/common/
H A Dstringtriebuilder.cpp493 int32_t step=0; local
498 edgeNumber=edge->markRightEdgesFirst(edgeNumber-step);
501 step=1;
/external/icu/icu4c/source/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/libvpx/libvpx/test/
H A Ddct16x16_test.cc84 double step[16]; local
88 // step 1
89 step[ 0] = input[0] + input[15];
90 step[ 1] = input[1] + input[14];
91 step[ 2] = input[2] + input[13];
92 step[ 3] = input[3] + input[12];
93 step[ 4] = input[4] + input[11];
94 step[ 5] = input[5] + input[10];
95 step[ 6] = input[6] + input[ 9];
96 step[
[all...]
/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/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_rast.c551 const unsigned step = 16; local
554 for (i = 0; i < TILE_SIZE; i += step) {
/external/mesa3d/src/gallium/drivers/rbug/
H A Drbug_core.c390 struct rbug_proto_context_draw_step *step = (struct rbug_proto_context_draw_step *)header; local
396 rb_context = rbug_get_context_locked(rb_screen, step->context);
405 if (step->step & RBUG_BLOCK_RULE)
408 rb_context->draw_blocked &= ~step->step;
/external/mesa3d/src/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/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...]
/external/opencv/otherlibs/highgui/
H A Dgrfmt_tiff.cpp165 bool GrFmtTiffReader::ReadData( uchar* data, int step, int color ) argument
193 for( y = 0; y < m_height; y += tile_height0, data += step*tile_height0 )
218 data + x*3 + step*(tile_height - i - 1), 0,
222 data + x + step*(tile_height - i - 1), 0,
559 bool GrFmtTiffReader::ReadData( uchar* data, int step, int color ) argument
594 for( ; y < y_limit; y++, data += step )
681 bool GrFmtTiffWriter::WriteImage( const uchar* data, int step, argument
687 assert( data && width > 0 && height > 0 && step >= fileStep);
727 for( ; y < limit; y++, data += step )

Completed in 941 milliseconds

1234567891011>>