Home
last modified time | relevance | path

Searched refs:smpl (Results 1 – 3 of 3) sorted by relevance

/external/aac/libSBRdec/src/
Dsbr_dec.cpp376 int smpl, delay = 96 >> (!(flags & SBRDEC_DOWNSAMPLE) ? 1 : 0); in sbr_dec() local
380 for (smpl = 0; smpl < delay; smpl += 1) { in sbr_dec()
381 pcmTemp[smpl] = timeIn[(codecFrameSize-delay+smpl)*strideIn]; in sbr_dec()
384 for (smpl = (codecFrameSize-delay-1)*strideIn; smpl >= 0; smpl -= strideIn) { in sbr_dec()
385 timeIn[smpl+delay] = timeIn[smpl]; in sbr_dec()
388 for (smpl = 0; smpl < delay; smpl += 1) { in sbr_dec()
389 timeIn[smpl*strideIn] = pDlyBuf[smpl]; in sbr_dec()
/external/opencv3/modules/calib3d/src/
Drho.cpp275 unsigned* smpl; /* Sample of match indexes */ member
791 size_t ctrl_smpl_sz = SMPL_SIZE*sizeof(*ctrl.smpl); in allocatePerObj()
822 ctrl.smpl = (unsigned*) (ptr + ctrl_smpl_of); in allocatePerObj()
888 ctrl.smpl = NULL; in deallocatePerObj()
1174 rndSmpl(4, ctrl.smpl, ctrl.phNum);/* Used to be phMax */ in getPROSACSample()
1176 rndSmpl(3, ctrl.smpl, ctrl.phNum-1); in getPROSACSample()
1177 ctrl.smpl[3] = ctrl.phNum-1; in getPROSACSample()
1261 unsigned i0 = ctrl.smpl[0], i1 = ctrl.smpl[1], i2 = ctrl.smpl[2], i3 = ctrl.smpl[3]; in isSampleDegenerate()
/external/skia/src/images/
DSkImageDecoder_libjpeg.cpp423 SkScaledBitmapSampler smpl(cinfo.output_width, cinfo.output_height, in onDecode() local
429 bool success = bm->setInfo(SkImageInfo::Make(smpl.scaledWidth(), smpl.scaledHeight(), in onDecode()