Home
last modified time | relevance | path

Searched refs:yL (Results 1 – 25 of 179) sorted by relevance

12345678

/external/neven/Embedded/common/src/b_ImageEm/
DFunctions.c176 int32 xL, yL; in bim_filterWarpInterpolation() local
178 yL = tyL; in bim_filterWarpInterpolation()
180 yMinL = yL < yMinL ? yL : yMinL; in bim_filterWarpInterpolation()
182 yMaxL = yL > yMaxL ? yL : yMaxL; in bim_filterWarpInterpolation()
184 yL = tyL + myxL * ( int32 )dstWidthA + myyL * ( int32 )dstHeightA; in bim_filterWarpInterpolation()
186 yMinL = yL < yMinL ? yL : yMinL; in bim_filterWarpInterpolation()
188 yMaxL = yL > yMaxL ? yL : yMaxL; in bim_filterWarpInterpolation()
190 yL = tyL + myyL * ( int32 )dstHeightA; in bim_filterWarpInterpolation()
192 yMinL = yL < yMinL ? yL : yMinL; in bim_filterWarpInterpolation()
194 yMaxL = yL > yMaxL ? yL : yMaxL; in bim_filterWarpInterpolation()
[all …]
DHistoEq16.c70 uint32 xL, yL; in bim_createHistoOfSection16() local
104 for( yL = 0; yL < sectHeightL; yL++ ) in bim_createHistoOfSection16()
DHistoEq.c69 uint32 xL, yL; in bim_createHistoOfSection() local
101 for( yL = 0; yL < sectHeightL; yL++ ) in bim_createHistoOfSection()
DUInt16ByteImage.c367 int32 yL; in bim_UInt16ByteImage_warp() local
450 yL = tyL + myyL * jL; in bim_UInt16ByteImage_warp()
475 lL = yL >> bbpL; in bim_UInt16ByteImage_warp()
482 f2yL = ( yL & fractionOnlyL ) >> bbpLby2L; in bim_UInt16ByteImage_warp()
489 yL += myxL; in bim_UInt16ByteImage_warp()
667 int32 yL; in bim_UInt16ByteImage_warp8() local
749 yL = tyL + myyL * jL; in bim_UInt16ByteImage_warp8()
771 lL = yL >> bbpL; in bim_UInt16ByteImage_warp8()
775 f2yL = ( yL & fractionOnlyL ) >> bbpLby2L; in bim_UInt16ByteImage_warp8()
782 yL += myxL; in bim_UInt16ByteImage_warp8()
DUInt8Image.c553 int32 yL; in bim_UInt8Image_warpOffs() local
642 yL = tyL + myyL * jL; in bim_UInt8Image_warpOffs()
664 lL = yL >> bbpL; in bim_UInt8Image_warpOffs()
668 f2yL = ( yL & fractionOnlyL ) >> bbpLby2L; in bim_UInt8Image_warpOffs()
675 yL += myxL; in bim_UInt8Image_warpOffs()
/external/neven/Embedded/common/src/b_TensorEm/
DFlt16Vec2D.c90 int32 yL = ( int32 ) srcPtrA->yE << bbpDiffL; in bts_Flt16Vec2D_equal() local
92 if( ptrA->yE != yL ) return FALSE; in bts_Flt16Vec2D_equal()
95 if( srcPtrA->yE != ( yL >> bbpDiffL ) ) return FALSE; in bts_Flt16Vec2D_equal()
102 int32 yL = ( int32 ) ptrA->yE << -bbpDiffL; in bts_Flt16Vec2D_equal() local
104 if( yL != srcPtrA->yE ) return FALSE; in bts_Flt16Vec2D_equal()
107 if( ptrA->yE != ( yL >> -bbpDiffL ) ) return FALSE; in bts_Flt16Vec2D_equal()
227 int32 yL = ( ( int32 ) ptrA->yE << 16 ) / normL; in bts_Flt16Vec2D_normalize() local
228 *ptrA = bts_Flt16Vec2D_create32( xL, yL, 16 ); in bts_Flt16Vec2D_normalize()
253 int32 yL = ( int32 ) vec1PtrA->yE * vec2PtrA->xE - ( int32 ) vec1PtrA->xE * vec2PtrA->yE; in bts_Flt16Vec2D_enclosedAngle() local
254 return bbs_phase16( xL, yL ); in bts_Flt16Vec2D_enclosedAngle()
[all …]
DFlt16Vec3D.c84 int32 yL = ( int32 ) srcPtrA->yE << bbpDiffL; in bts_Flt16Vec3D_equal() local
87 if( ptrA->yE != yL ) return FALSE; in bts_Flt16Vec3D_equal()
95 int32 yL = ( int32 ) ptrA->yE << -bbpDiffL; in bts_Flt16Vec3D_equal() local
98 if( yL != srcPtrA->yE ) return FALSE; in bts_Flt16Vec3D_equal()
240 int32 yL = ( ( int32 ) ptrA->yE << 16 ) / normL; in bts_Flt16Vec3D_normalize() local
242 *ptrA = bts_Flt16Vec3D_create32( xL, yL, zL, 16 ); in bts_Flt16Vec3D_normalize()
258 int32 xL, yL, zL, bbpL; in bts_Flt16Vec3D_add() local
264 yL = vec1A.yE + ( ( int32 ) vec2A.yE << shiftL ); in bts_Flt16Vec3D_add()
271 yL = ( ( int32 ) vec1A.yE << -shiftL ) + vec2A.yE; in bts_Flt16Vec3D_add()
276 return bts_Flt16Vec3D_create32( xL, yL, zL, bbpL ); in bts_Flt16Vec3D_add()
[all …]
DCluster3D.c134 int32 yL = 0; in bts_Cluster3D_center() local
142 yL += vecPtrL->yE; in bts_Cluster3D_center()
148 yL = ( ( ( yL << 1 ) / ( int32 )ptrA->sizeE ) + 1 ) >> 1; in bts_Cluster3D_center()
151 return bts_Flt16Vec3D_create16( ( int16 )xL, ( int16 )yL, ( int16 )zL, ( int16 )ptrA->bbpE ); in bts_Cluster3D_center()
357 int32 yL = vecPtrL->yE; in bts_Cluster3D_transform() local
359 …vecPtrL->xE = ( x0L + xL * altA.matE.xxE + yL * altA.matE.xyE + zL * altA.matE.xzE ) >> altA.matE.… in bts_Cluster3D_transform()
360 …vecPtrL->yE = ( y0L + xL * altA.matE.yxE + yL * altA.matE.yyE + zL * altA.matE.yzE ) >> altA.matE.… in bts_Cluster3D_transform()
361 …vecPtrL->zE = ( z0L + xL * altA.matE.zxE + yL * altA.matE.zyE + zL * altA.matE.zzE ) >> altA.matE.… in bts_Cluster3D_transform()
DInt16Vec2D.c155 int32 yL = ( ( int32 ) ptrA->yE << 16 ) / normL; in bts_Int16Vec2D_normalize() local
157 ptrA->yE = yL >> ( 16 - bbpA ); in bts_Int16Vec2D_normalize()
182 int32 yL = ( int32 ) vec1PtrA->yE * vec2PtrA->xE - ( int32 ) vec1PtrA->xE * vec2PtrA->yE; in bts_Int16Vec2D_enclosedAngle() local
183 return bbs_phase16( xL, yL ); in bts_Int16Vec2D_enclosedAngle()
DCluster2D.c176 int32 yL = 0; in bts_Cluster2D_center() local
183 yL += vecPtrL->yE; in bts_Cluster2D_center()
188 yL = ( ( ( yL << 1 ) / ( int32 )ptrA->sizeE ) + 1 ) >> 1; in bts_Cluster2D_center()
190 return bts_Flt16Vec2D_create16( ( int16 )xL, ( int16 )yL, ( int16 )ptrA->bbpE ); in bts_Cluster2D_center()
291 int32 yL = ptrA->vecArrE[ indexA ].yE; in bts_Cluster2D_int32Y() local
294 yL <<= shiftL; in bts_Cluster2D_int32Y()
298 yL = ( ( yL >> ( -shiftL - 1 ) ) + 1 ) >> 1; in bts_Cluster2D_int32Y()
301 return yL; in bts_Cluster2D_int32Y()
DFlt16Mat2D.c302 int32 yL = ( int32 ) matPtrA->yxE * vecPtrA->xE + ( int32 ) matPtrA->yyE * vecPtrA->yE; in bts_Flt16Mat2D_map() local
308 vecL.yE = ( ( yL >> sh1L ) + 1 ) >> 1; in bts_Flt16Mat2D_map()
314 vecL.yE = yL << -matPtrA->bbpE; in bts_Flt16Mat2D_map()
326 int32 yL = ( int32 ) matPtrA->yxE * vecPtrA->xE + ( int32 ) matPtrA->yyE * vecPtrA->yE; in bts_Flt16Mat2D_mapFlt() local
328 return bts_Flt16Vec2D_create32( xL, yL, bbpL ); in bts_Flt16Mat2D_mapFlt()
DFlt16Mat3D.c266 …int32 yL = ( int32 ) matPtrA->yxE * vecPtrA->xE + ( int32 ) matPtrA->yyE * vecPtrA->yE + ( int32 )… in bts_Flt16Mat3D_map() local
273 vecL.yE = ( ( yL >> sh1L ) + 1 ) >> 1; in bts_Flt16Mat3D_map()
280 vecL.yE = yL << -matPtrA->bbpE; in bts_Flt16Mat3D_map()
297 int32 yL = ( ( ( ( int32 ) matPtrA->yxE * vecPtrA->xE + 1 ) >> 1 ) + in bts_Flt16Mat3D_mapFlt() local
306 return bts_Flt16Vec3D_create32( xL, yL, zL, vecPtrA->bbpE + matPtrA->bbpE - 1 ); in bts_Flt16Mat3D_mapFlt()
DInt16Vec3D.c140 int32 yL = ( ( int32 )ptrA->yE << 16 ) / normL; in bts_Int16Vec3D_normalize() local
143 ptrA->yE = yL >> ( 16 - bbpA ); in bts_Int16Vec3D_normalize()
DRBFMap2D.c483 int32 yL = vecA.yE; in bts_RBFMap2D_mapVector() local
488 yL <<= shiftL; in bts_RBFMap2D_mapVector()
493 yL = ( ( yL >> ( -shiftL - 1 ) ) + 1 ) >> 1; in bts_RBFMap2D_mapVector()
503 vecL.yE -= yL; in bts_RBFMap2D_mapVector()
/external/neven/Embedded/common/src/b_BasicEm/
DPhase.c274 uint32 yL = ( yA > 0 ) ? yA : -yA; in bbs_phase16() local
277 if( xL == 0 && yL == 0 ) return 0; in bbs_phase16()
279 if( xL == yL ) in bbs_phase16()
283 else if( xL > yL ) in bbs_phase16()
285 if( yL >= 65536 ) /* avoid overflow (1 << 16) */ in bbs_phase16()
287 uint32 shiftL = bbs_intLog2( yL ) - 15; in bbs_phase16()
289 yL >>= shiftL; in bbs_phase16()
291 phaseL = bbs_atan16( ( yL << 16 ) / xL ); in bbs_phase16()
299 yL >>= shiftL; in bbs_phase16()
301 phaseL = bbs_M_PI_2_16 - bbs_atan16( ( xL << 16 ) / yL ); in bbs_phase16()
/external/neven/Embedded/common/src/b_APIEm/
DBFFaceFinder.c243 int32 yL = 0; /* 16.16 */ in bpi_BFFaceFinder_process() local
261 yL = outArrL[ 1 ]; /* 16.16 */ in bpi_BFFaceFinder_process()
268 offsPtrA->yE = yL >> 16; in bpi_BFFaceFinder_process()
270 yL -= ( ( int32 )offsPtrA->yE << 16 ); in bpi_BFFaceFinder_process()
274 altL.vecE = bts_Flt16Vec2D_create32( xL, yL, 16 ); in bpi_BFFaceFinder_process()
316 int32 yL = 0; /* 16.16 */ in bpi_BFFaceFinder_getFace() local
337 yL = ptrA->faceDataBufferE[ indexA * 4 + 1 ]; /* 16.16 */ in bpi_BFFaceFinder_getFace()
342 offsPtrA->yE = yL >> 16; in bpi_BFFaceFinder_getFace()
345 yL -= ( ( int32 )offsPtrA->yE << 16 ); in bpi_BFFaceFinder_getFace()
349 altL.vecE = bts_Flt16Vec2D_create32( xL, yL, 16 ); in bpi_BFFaceFinder_getFace()
/external/adhd/cras/src/dsp/
Dcrossover2.c249 float xL, yL, zL, xR, yR, zR; in lr42_split() local
252 yL = lb0*xL + lb1*lx1L + lb2*lx2L - la1*ly1L - la2*ly2L; in lr42_split()
254 zL = lb0*yL + lb1*ly1L + lb2*ly2L - la1*lz1L - la2*lz2L; in lr42_split()
262 ly1L = yL; in lr42_split()
271 yL = hb0*xL + hb1*hx1L + hb2*hx2L - ha1*hy1L - ha2*hy2L; in lr42_split()
273 zL = hb0*yL + hb1*hy1L + hb2*hy2L - ha1*hz1L - ha2*hz2L; in lr42_split()
281 hy1L = yL; in lr42_split()
519 float xL, yL, zL, xR, yR, zR; in lr42_merge() local
522 yL = lb0*xL + lb1*lx1L + lb2*lx2L - la1*ly1L - la2*ly2L; in lr42_merge()
524 zL = lb0*yL + lb1*ly1L + lb2*ly2L - la1*lz1L - la2*lz2L; in lr42_merge()
[all …]
Deq2.c83 float yL = b0L*xL in eq2_process_one() local
89 y1L = yL; in eq2_process_one()
99 data0[j] = yL; in eq2_process_one()
/external/neven/Embedded/common/src/b_BitFeatureEm/
DScanDetector.c406 int32 xL, yL; in bbf_ScanDetector_process() local
415 bbf_Scanner_idxPos( scannerPtrL, bestIdxL, &xL, &yL, &scaleL ); in bbf_ScanDetector_process()
421 bestGlobalYL = yL; in bbf_ScanDetector_process()
432 int32 xL, yL; in bbf_ScanDetector_process() local
438 bbf_Scanner_idxPos( scannerPtrL, idxArrL[ iL ], &xL, &yL, &scaleL ); in bbf_ScanDetector_process()
441 bbf_Scanner_addOutPos( cpA, scannerPtrL, xL, yL, scaleL, actL ); in bbf_ScanDetector_process()
DScanner.c607 int32 yL = scanIndexA / ptrA->currentWidthE; in bbf_Scanner_idxPos() local
608 int32 xL = scanIndexA - ( yL * ptrA->currentWidthE ); in bbf_Scanner_idxPos()
614 *yPtrA = ( int32 )( yL - ptrA->borderHeightE ) * ( int32 )( ptrA->scaleE >> 4 ); in bbf_Scanner_idxPos()
979 int32 yL = scanIndexA / ptrA->currentWidthE; in bbf_Scanner_goToIndex() local
980 int32 xL = scanIndexA - yL * ptrA->currentWidthE; in bbf_Scanner_goToIndex()
981 bbf_Scanner_goToXY( cpA, ptrA, xL, yL ); in bbf_Scanner_goToIndex()
990 int32 yL = ( yA / ( int32 )( ptrA->scaleE >> 4 ) ) + ptrA->borderHeightE; in bbf_Scanner_goToUls() local
998 bbf_Scanner_goToXY( cpA, ptrA, xL, yL ); in bbf_Scanner_goToUls()
DLocalScanDetector.c619 int32 xL, yL; /* 16.16 */ in bbf_LocalScanDetector_process() local
620 bbf_LocalScanner_idxPos( scnPtrL, bestIdxL, &xL, &yL ); in bbf_LocalScanDetector_process()
622 yL += ph1L << 15; in bbf_LocalScanDetector_process()
626 dstVecArrL[ iL ].yE = ( ( yL >> ( 15 - vecBbpL ) ) + 1 ) >> 1; in bbf_LocalScanDetector_process()
/external/v8/tools/perf/
Dstatistics-for-json.R36 p.value = numeric(), yL = character(),
99 scale_x_discrete(limits=df2$yL,
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D076fa6a6d1e2e3327ce95c544e2186cd.00001963.honggfuzz.cov6 ="��$�?zO�����0rz�8�XL��yL���0�N� d��B��پy>�p-�X!R$De��� }k;!
D63bfc65213d44431bca299395a13f9f0.00000ede.honggfuzz.cov20 …!ɝ��߱W�8����C��f�����9�ՃAccept-Encoding:��:6<U��v�g.�E���B��p���D�x��R�9�"G��9�yL�Kj��9�i
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D63bfc65213d44431bca299395a13f9f0.00000ede.honggfuzz.cov20 …!ɝ��߱W�8����C��f�����9�ՃAccept-Encoding:��:6<U��v�g.�E���B��p���D�x��R�9�"G��9�yL�Kj��9�i

12345678