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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_Clip8_s.s 44 step RN 2 label
82 ADD pDst,pDst,step ;// Increment pDst by step value
omxVCM4P2_DecodeBlockCoef_Intra.c 44 * positioning, and IDCT, with appropriate clipping on each step, are performed
58 * [in] step width of the destination plane
102 * blockIndex exceeds [0,9], step is not the multiple of 8, intraDCVLC is zero while
114 OMX_INT step,
215 armVCM4P2_Clip8(pTempBuf2,pDst,step);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
BytesBufferPool.java 46 int step = Math.min(READ_STEP, capacity - length); local
47 int rc = fis.read(data, length, step);
  /external/opencv/cxcore/src/
cxmatrix.cpp 57 int i, k, len, step; local
84 step = mat->step;
85 if( step == 0 )
86 step = CV_STUB_STEP;
87 IPPI_CALL( icvSetZero_8u_C1R( data, step, size ));
88 step += pix_size;
94 step /= sizeof(_data[0]);
95 len *= step;
97 for( i = 0; i < len; i += step )
149 int step = mat->step + sizeof(float); local
158 int step = mat->step + sizeof(double); local
560 int step = matrix->step\/sizeof(data[0]); local
572 int step = matrix->step\/sizeof(data[0]); local
796 int step = mat->step; local
814 int step = mat->step; local
1537 int step = dst->step ? dst->step\/sizeof(src1data[0]) : 1; local
1560 int step = dst->step ? dst->step\/sizeof(src1data[0]) : 1; local
    [all...]
cxmean.cpp 114 step /= sizeof(src[0])
242 ( const arrtype* src, int step, \
245 (src, step, mask, maskstep, size, mean)) \
249 for( ; size.height--; src += step, mask += maskstep ) \
273 ( const arrtype* src, int step, \
276 (src, step, mask, maskstep, size, mean)) \
280 for( ; size.height--; src += step, mask += maskstep ) \
294 icvMean_##flavor##_CnCMR( const arrtype* src, int step, \
302 for( ; size.height--; src += step, mask += maskstep ) \
326 icvMean_##flavor##_CnCMR( const arrtype* src, int step, \
    [all...]
  /external/opencv3/samples/python2/
opt_flow.py 16 def draw_flow(img, flow, step=16):
18 y, x = np.mgrid[step/2:h:step, step/2:w:step].reshape(2,-1)
  /external/skia/resources/
slides_transitions.lua 64 self:step()
74 rec.step = function (self)
85 rec.step = function (self)
110 self:step()
117 rec.step = function (self)
142 self:step()
148 rec.step = function (self)
155 rec.step = function (self)
185 self:step()
189 step = function (self
    [all...]
  /external/icu/icu4c/source/i18n/
collationrootelements.cpp 89 int32_t step; local
94 step = (int32_t)q & PRIMARY_STEP_MASK;
95 if(step == 0) {
106 step = (int32_t)nextElement & PRIMARY_STEP_MASK;
110 return Collation::decTwoBytePrimaryByOneStep(p, isCompressible, step);
112 return Collation::decThreeBytePrimaryByOneStep(p, isCompressible, step);
174 int32_t step; local
175 if((q & SEC_TER_DELTA_FLAG) == 0 && (step = (int32_t)q & PRIMARY_STEP_MASK) != 0) {
178 return Collation::incTwoBytePrimaryByOffset(p, isCompressible, step);
180 return Collation::incThreeBytePrimaryByOffset(p, isCompressible, step);
    [all...]
  /external/opencv3/modules/imgcodecs/src/
grfmt_sunras.cpp 159 int step = (int)img.step; local
188 for( y = 0; y < m_height; y++, data += step )
244 data += step;
257 for( y = 0; y < m_height; y++, data += step )
307 data = FillUniColor( data, line_end, step, width3,
311 data = FillUniGray( data, line_end, step, width3,
322 line_end += step;
335 for( y = 0; y < m_height; y++, data += step )
354 for( y = 0; y < m_height; y++, data += step )
    [all...]
  /external/opencv/cv/src/
cvmotempl.cpp 141 mhi_step = mhi->step;
142 silh_step = silh->step;
227 dX_min_row.data.ptr = dX_min->data.ptr + y*dX_min->step;
228 dY_max_row.data.ptr = dY_max->data.ptr + y*dY_max->step;
229 orient_row.data.ptr = orient->data.ptr + y*orient->step;
230 mask_row.data.ptr = mask->data.ptr + y*mask->step;
257 dX_min_row.data.ptr = dX_min->data.ptr + y*dX_min->step;
258 dY_max_row.data.ptr = dY_max->data.ptr + y*dY_max->step;
259 mask_row.data.ptr = mask->data.ptr + y*mask->step;
260 orient_row.data.ptr = orient->data.ptr + y*orient->step;
    [all...]
cvadapthresh.cpp 88 const uchar* s = src->data.ptr + i*src->step;
89 const uchar* m = mean->data.ptr + i*mean->step;
90 uchar* d = dst->data.ptr + i*dst->step;
  /external/opencv/cvaux/src/
cvdpstereo.cpp 70 uchar step; //local-optimal step member in struct:_CvDPCell
183 CELL(0,x).step = CELL(dispH-1,x).step = ICV_DP_STEP_LEFT;
188 CELL(d,d-2).step = ICV_DP_STEP_UP;
191 CELL(1,0).step = ICV_DP_STEP_LEFT;
205 //check left step
208 //check up step
209 if( _cell[d+1].step != ICV_DP_STEP_DIAG && e0 )
213 if( _cell[d-1-dispH].step != ICV_DP_STEP_UP && (_edges[1-d] & 2) )
    [all...]
cvsegment.cpp 84 icvSegmFloodFill_Stage1( uchar* pImage, int step,
91 uchar* img = pImage + step * seed.y;
103 img = pImage + seed.y*step;
144 /*curstep = flag * step;*/
145 img = pImage + (YC + flag) * step;
170 img = pImage + YC * step;
206 icvSegmFloodFill_Stage2( uchar* pImage, int step,
211 uchar* img = pImage + step * rect.y + rect.x * 3;
216 for( y = 0; y < rect.height; y++, img += step, mask += maskStep )
335 icvGetComponent( uchar* img, int step, CvRect rect
    [all...]
  /external/aac/libSBRdec/src/
sbrdec_freq_sca.cpp 432 /* Scaled bandfactor and step 1 bit right to avoid overflow
435 FIXP_DBL step = FL2FXCONST_DBL(0.125f); /* Initial increment for factor */ local
448 while ( step > FL2FXCONST_DBL(0.0f)) {
459 /* Halfen step. Right shift is not done as fract because otherwise the
461 step = (FIXP_DBL)((LONG)step >> 1);
463 bandfactor = bandfactor + step;
467 step = (FIXP_DBL)((LONG)step >> 1);
469 bandfactor = bandfactor - step;
654 int step; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
s10_8pf.cpp 134 step = step size (Word16)
181 Word16 step, // i : stepsize
236 for (i3 = ipos[3]; i3 < L_CODE; i3 += step)
238 s = L_mult (rr[i3][i3], _1_8); // index incr= step+L_CODE
239 s = L_mac (s, rr[i0][i3], _1_4); // index increment = step
240 s = L_mac (s, rr[i1][i3], _1_4); // index increment = step
251 for (i2 = ipos[2]; i2 < L_CODE; i2 += step)
253 // index increment = step
256 // index incr= step+L_COD
    [all...]
  /external/opencv3/modules/cudaobjdetect/src/cuda/
lbp.cu 251 int step = (scale <= 2.f);
253 int windowsForLine = (__float2int_rn( __fdividef(frameW, scale)) - windowW) >> step;
254 int stotal = windowsForLine * ( (__float2int_rn( __fdividef(frameH, scale)) - windowH) >> step);
264 step = (scale <= 2.f);
265 windowsForLine = ( ((__float2int_rn(__fdividef(frameW, scale)) - windowW) >> step));
266 stotal = windowsForLine * ( (__float2int_rn(__fdividef(frameH, scale)) - windowH) >> step);
272 x <<= step;
273 y <<= step;
298 lbp_cascade<<<grid, block>>>(cascade, frameW, frameH, windowW, windowH, initialScale, factor, workAmount, integral.ptr(), (int)integral.step / sizeof(int), objects, classified);
  /external/libvpx/libvpx/vp9/encoder/
vp9_subexp.c 125 const int step = *bestp > oldp ? -1 : 1; local
127 for (newp = *bestp; newp != oldp; newp += step) {
145 int i, old_b, new_b, update_b, savings, bestsavings, step; local
158 step = -stepsize;
159 for (newp = *bestp; newp > oldp[PIVOT_NODE]; newp += step) {
176 step = stepsize;
177 for (newp = *bestp; newp < oldp[PIVOT_NODE]; newp += step) {
  /external/opencv/ml/src/
mlestimate.cpp 97 // Result is 0 if function can't make next step (error input or folds are finished),
164 int step;
207 step = trainClasses->rows == 1 ? 1 : trainClasses->step / sizeof(float);
211 te1 = responses_fl[*data * step];
226 step = trainClasses->rows == 1 ? 1 : trainClasses->step / sizeof(int);
230 te1 = responses_i[*data * step];
255 step = trainClasses->rows == 1 ? 1 : trainClasses->step / sizeof(float)
    [all...]
  /external/opencv3/modules/imgproc/test/
test_distancetransform.cpp 193 tstep = temp->step / sizeof(float);
218 float* t0 = (float*)(temp->data.ptr + i*temp->step);
219 float* t1 = (float*)(temp->data.ptr + (temp->rows - i - 1)*temp->step);
227 uchar* s = _src->data.ptr + i*_src->step;
228 float* tmp = (float*)(temp->data.ptr + temp->step*(i + (mask_size/2))) + (mask_size/2);
253 float* d = (float*)(_dst->data.ptr + i*_dst->step);
254 float* tmp = (float*)(temp->data.ptr + temp->step*(i + (mask_size/2))) + (mask_size/2);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Vehicle/
btRaycastVehicle.h 85 virtual void updateAction( btCollisionWorld* collisionWorld, btScalar step)
88 updateVehicle(step);
99 virtual void updateVehicle(btScalar step);
  /external/opencv3/modules/cudaarithm/src/cuda/
absdiff_mat.cu 108 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols);
109 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols);
110 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols);
127 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols);
128 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols);
129 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols);
add_mat.cu 88 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols);
89 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols);
90 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols);
107 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols);
108 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols);
109 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols);
sub_mat.cu 88 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols);
89 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols);
90 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols);
107 GlobPtrSz<uint> src1_ = globPtr((uint*) src1.data, src1.step, src1.rows, vcols);
108 GlobPtrSz<uint> src2_ = globPtr((uint*) src2.data, src2.step, src1.rows, vcols);
109 GlobPtrSz<uint> dst_ = globPtr((uint*) dst.data, dst.step, src1.rows, vcols);
  /external/opencv3/modules/cudaimgproc/src/cuda/
hist.cu 55 __global__ void histogram256Kernel(const uchar* src, int cols, int rows, size_t step, int* hist)
67 const unsigned int* rowPtr = (const unsigned int*) (src + y * step);
102 histogram256Kernel<<<grid, block, 0, stream>>>(src.data, src.cols, src.rows, src.step, hist);
123 __global__ void histEven8u(const uchar* src, const size_t step, const int rows, const int cols,
138 const uchar* rowPtr = src + y * step;
182 histEven8u<<<grid, block, smem_size, stream>>>(src.data, src.step, src.rows, src.cols, hist, binCount, binSize, lowerLevel, upperLevel);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
omxVCM4P2_DecodeBlockCoef_Intra.c 44 * zigzag positioning, and IDCT, with appropriate clipping on each step, are
58 * step - width of the destination plane
101 * - step is not the multiple of 8
111 OMX_INT step,
141 armRetArgErrIf((step % 8) != 0, OMX_Sts_BadArgErr);
232 pDst += step;

Completed in 353 milliseconds

1 2 3 4 5 6 7 8 91011>>