Home
last modified time | relevance | path

Searched refs:xL (Results 1 – 25 of 42) sorted by relevance

12

/external/neven/Embedded/common/src/b_ImageEm/
DFunctions.c176 int32 xL, yL; in bim_filterWarpInterpolation() local
177 xL = txL; in bim_filterWarpInterpolation()
179 xMinL = xL < xMinL ? xL : xMinL; in bim_filterWarpInterpolation()
181 xMaxL = xL > xMaxL ? xL : xMaxL; in bim_filterWarpInterpolation()
183 xL = txL + mxxL * ( int32 )dstWidthA + mxyL * ( int32 )dstHeightA; in bim_filterWarpInterpolation()
185 xMinL = xL < xMinL ? xL : xMinL; in bim_filterWarpInterpolation()
187 xMaxL = xL > xMaxL ? xL : xMaxL; in bim_filterWarpInterpolation()
189 xL = txL + mxyL * ( int32 )dstHeightA; in bim_filterWarpInterpolation()
191 xMinL = xL < xMinL ? xL : xMinL; in bim_filterWarpInterpolation()
193 xMaxL = xL > xMaxL ? xL : xMaxL; in bim_filterWarpInterpolation()
[all …]
DHistoEq16.c70 uint32 xL, yL; in bim_createHistoOfSection16() local
96 for( xL = 256; xL > 0; xL-- ) in bim_createHistoOfSection16()
106 for( xL = 0; xL < sectWidthL; xL++ ) in bim_createHistoOfSection16()
DHistoEq.c69 uint32 xL, yL; in bim_createHistoOfSection() local
93 for( xL = 256; xL > 0; xL-- ) in bim_createHistoOfSection()
103 for( xL = 0; xL < sectWidthL; xL++ ) in bim_createHistoOfSection()
DUInt16ByteImage.c366 int32 xL; in bim_UInt16ByteImage_warp() local
449 xL = txL + mxyL * jL; in bim_UInt16ByteImage_warp()
474 kL = xL >> bbpL; in bim_UInt16ByteImage_warp()
481 f2xL = ( xL & fractionOnlyL ) >> bbpLby2L; in bim_UInt16ByteImage_warp()
488 xL += mxxL; in bim_UInt16ByteImage_warp()
666 int32 xL; in bim_UInt16ByteImage_warp8() local
748 xL = txL + mxyL * jL; in bim_UInt16ByteImage_warp8()
770 kL = xL >> bbpL; in bim_UInt16ByteImage_warp8()
774 f2xL = ( xL & fractionOnlyL ) >> bbpLby2L; in bim_UInt16ByteImage_warp8()
781 xL += mxxL; in bim_UInt16ByteImage_warp8()
DUInt8Image.c552 int32 xL; in bim_UInt8Image_warpOffs() local
641 xL = txL + mxyL * jL; in bim_UInt8Image_warpOffs()
663 kL = xL >> bbpL; in bim_UInt8Image_warpOffs()
667 f2xL = ( xL & fractionOnlyL ) >> bbpLby2L; in bim_UInt8Image_warpOffs()
674 xL += mxxL; in bim_UInt8Image_warpOffs()
/external/neven/Embedded/common/src/b_TensorEm/
DFlt16Vec2D.c89 int32 xL = ( int32 ) srcPtrA->xE << bbpDiffL; in bts_Flt16Vec2D_equal() local
91 if( ptrA->xE != xL ) return FALSE; in bts_Flt16Vec2D_equal()
94 if( srcPtrA->xE != ( xL >> bbpDiffL ) ) return FALSE; in bts_Flt16Vec2D_equal()
101 int32 xL = ( int32 ) ptrA->xE << -bbpDiffL; in bts_Flt16Vec2D_equal() local
103 if( xL != srcPtrA->xE ) return FALSE; in bts_Flt16Vec2D_equal()
106 if( ptrA->xE != ( xL >> -bbpDiffL ) ) return FALSE; in bts_Flt16Vec2D_equal()
226 int32 xL = ( ( int32 ) ptrA->xE << 16 ) / normL; in bts_Flt16Vec2D_normalize() local
228 *ptrA = bts_Flt16Vec2D_create32( xL, yL, 16 ); in bts_Flt16Vec2D_normalize()
252 int32 xL = ( int32 ) vec1PtrA->xE * vec2PtrA->xE + ( int32 ) vec1PtrA->yE * vec2PtrA->yE; in bts_Flt16Vec2D_enclosedAngle() local
254 return bbs_phase16( xL, yL ); in bts_Flt16Vec2D_enclosedAngle()
[all …]
DFlt16Vec3D.c83 int32 xL = ( int32 ) srcPtrA->xE << bbpDiffL; in bts_Flt16Vec3D_equal() local
86 if( ptrA->xE != xL ) return FALSE; in bts_Flt16Vec3D_equal()
94 int32 xL = ( int32 ) ptrA->xE << -bbpDiffL; in bts_Flt16Vec3D_equal() local
97 if( xL != srcPtrA->xE ) return FALSE; in bts_Flt16Vec3D_equal()
239 int32 xL = ( ( int32 ) ptrA->xE << 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
263 xL = vec1A.xE + ( ( int32 ) vec2A.xE << shiftL ); in bts_Flt16Vec3D_add()
270 xL = ( ( int32 ) vec1A.xE << -shiftL ) + vec2A.xE; in bts_Flt16Vec3D_add()
276 return bts_Flt16Vec3D_create32( xL, yL, zL, bbpL ); in bts_Flt16Vec3D_add()
[all …]
DInt32Mat.c45 int32 xL = *ptrL++; in bts_Int32Mat_reduceToNBits() local
46 if( xL < 0 ) xL = -xL; in bts_Int32Mat_reduceToNBits()
47 if( xL > maxL ) maxL = xL; in bts_Int32Mat_reduceToNBits()
462 int32 xL = vecL[ iL ]; in bts_Int32Mat_solve2() local
463 if( xL < 0 ) xL = -xL; in bts_Int32Mat_solve2()
464 if( xL > maxL ) maxL = xL; in bts_Int32Mat_solve2()
DCluster3D.c133 int32 xL = 0; in bts_Cluster3D_center() local
141 xL += vecPtrL->xE; in bts_Cluster3D_center()
147 xL = ( ( ( xL << 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()
356 int32 xL = vecPtrL->xE; 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.c154 int32 xL = ( ( int32 ) ptrA->xE << 16 ) / normL; in bts_Int16Vec2D_normalize() local
156 ptrA->xE = xL >> ( 16 - bbpA ); in bts_Int16Vec2D_normalize()
181 int32 xL = ( int32 ) vec1PtrA->xE * vec2PtrA->xE + ( int32 ) vec1PtrA->yE * vec2PtrA->yE; in bts_Int16Vec2D_enclosedAngle() local
183 return bbs_phase16( xL, yL ); in bts_Int16Vec2D_enclosedAngle()
DCluster2D.c175 int32 xL = 0; in bts_Cluster2D_center() local
182 xL += vecPtrL->xE; in bts_Cluster2D_center()
187 xL = ( ( ( xL << 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()
258 int32 xL = ptrA->vecArrE[ indexA ].xE; in bts_Cluster2D_int32X() local
261 xL <<= shiftL; in bts_Cluster2D_int32X()
265 xL = ( ( xL >> ( -shiftL - 1 ) ) + 1 ) >> 1; in bts_Cluster2D_int32X()
268 return xL; in bts_Cluster2D_int32X()
DFlt16Mat2D.c301 int32 xL = ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE; in bts_Flt16Mat2D_map() local
307 vecL.xE = ( ( xL >> sh1L ) + 1 ) >> 1; in bts_Flt16Mat2D_map()
313 vecL.xE = xL << -matPtrA->bbpE; in bts_Flt16Mat2D_map()
325 int32 xL = ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE; in bts_Flt16Mat2D_mapFlt() local
328 return bts_Flt16Vec2D_create32( xL, yL, bbpL ); in bts_Flt16Mat2D_mapFlt()
DFlt16Mat3D.c265 …int32 xL = ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE + ( int32 )… in bts_Flt16Mat3D_map() local
272 vecL.xE = ( ( xL >> sh1L ) + 1 ) >> 1; in bts_Flt16Mat3D_map()
279 vecL.xE = xL << -matPtrA->bbpE; in bts_Flt16Mat3D_map()
293 int32 xL = ( ( ( ( int32 ) matPtrA->xxE * 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.c139 int32 xL = ( ( int32 )ptrA->xE << 16 ) / normL; in bts_Int16Vec3D_normalize() local
142 ptrA->xE = xL >> ( 16 - bbpA ); in bts_Int16Vec3D_normalize()
DRBFMap2D.c482 int32 xL = vecA.xE; in bts_RBFMap2D_mapVector() local
487 xL <<= shiftL; in bts_RBFMap2D_mapVector()
492 xL = ( ( xL >> ( -shiftL - 1 ) ) + 1 ) >> 1; in bts_RBFMap2D_mapVector()
502 vecL.xE -= xL; in bts_RBFMap2D_mapVector()
/external/neven/Embedded/common/src/b_BasicEm/
DPhase.c273 uint32 xL = ( xA > 0 ) ? xA : -xA; 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()
288 xL >>= shiftL; in bbs_phase16()
291 phaseL = bbs_atan16( ( yL << 16 ) / xL ); in bbs_phase16()
295 if( xL >= 65536 ) /* avoid overflow (1 << 16) */ in bbs_phase16()
297 uint32 shiftL = bbs_intLog2( xL ) - 15; in bbs_phase16()
298 xL >>= 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.c242 int32 xL = 0; /* 16.16 */ in bpi_BFFaceFinder_process() local
260 xL = outArrL[ 0 ]; /* 16.16 */ in bpi_BFFaceFinder_process()
267 offsPtrA->xE = xL >> 16; in bpi_BFFaceFinder_process()
269 xL -= ( ( int32 )offsPtrA->xE << 16 ); in bpi_BFFaceFinder_process()
274 altL.vecE = bts_Flt16Vec2D_create32( xL, yL, 16 ); in bpi_BFFaceFinder_process()
315 int32 xL = 0; /* 16.16 */ in bpi_BFFaceFinder_getFace()
336 xL = ptrA->faceDataBufferE[ indexA * 4 + 0 ]; /* 16.16 */ in bpi_BFFaceFinder_getFace()
341 offsPtrA->xE = xL >> 16; in bpi_BFFaceFinder_getFace()
344 xL -= ( ( int32 )offsPtrA->xE << 16 ); in bpi_BFFaceFinder_getFace()
349 altL.vecE = bts_Flt16Vec2D_create32( xL, yL, 16 ); in bpi_BFFaceFinder_getFace()
/external/adhd/cras/src/dsp/
Dcrossover2.c275 float xL, yL, zL, xR, yR, zR; in lr42_split() local
276 xL = data0L[i]; in lr42_split()
278 yL = lb0 * xL + lb1 * lx1L + lb2 * lx2L - la1 * ly1L - in lr42_split()
288 lx1L = xL; in lr42_split()
301 yL = hb0 * xL + hb1 * hx1L + hb2 * hx2L - ha1 * hy1L - in lr42_split()
311 hx1L = xL; in lr42_split()
591 float xL, yL, zL, xR, yR, zR; in lr42_merge() local
592 xL = dataL[i]; in lr42_merge()
594 yL = lb0 * xL + lb1 * lx1L + lb2 * lx2L - la1 * ly1L - in lr42_merge()
604 lx1L = xL; in lr42_merge()
[all …]
Deq2.c80 float xL = data0[j]; in eq2_process_one() local
83 float yL = b0L * xL + b1L * x1L + b2L * x2L - a1L * y1L - in eq2_process_one()
86 x1L = xL; 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()
420 bestGlobalXL = xL; 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.c608 int32 xL = scanIndexA - ( yL * ptrA->currentWidthE ); in bbf_Scanner_idxPos() local
611 *xPtrA = ( int32 )( xL - ptrA->borderWidthE ) * ( int32 )( ptrA->scaleE >> 4 ); in bbf_Scanner_idxPos()
980 int32 xL = scanIndexA - yL * ptrA->currentWidthE; in bbf_Scanner_goToIndex() local
981 bbf_Scanner_goToXY( cpA, ptrA, xL, yL ); in bbf_Scanner_goToIndex()
989 int32 xL = ( xA / ( int32 )( ptrA->scaleE >> 4 ) ) + ptrA->borderWidthE; 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()
621 xL += pw1L << 15; in bbf_LocalScanDetector_process()
625 dstVecArrL[ iL ].xE = ( ( xL >> ( 15 - vecBbpL ) ) + 1 ) >> 1; in bbf_LocalScanDetector_process()
DLocalScanner.c470 int32 xL = ( scanIndexA % wL ) + ptrA->workScanRegionE.x1E; in bbf_LocalScanner_idxPos() local
472 *xPtrA = ( ( xL << ptrA->scaleExpE ) + ptrA->xOffE ) << 16; in bbf_LocalScanner_idxPos()
/external/ImageMagick/PerlMagick/t/reference/filter/
DNegate.miff32 ����#�� ���� ��2��E���lj�~����Ûb����Íi��^��`��b��^��Y��V�xL�vU��}��� ������� �Ÿ�ȣ�Ơ����_~�M��G�y…
/external/ImageMagick/PerlMagick/t/reference/write/filter/
DNegate.miff60 ����#�� ���� ��2��E���lj�~����Ûb����Íi��^��`��b��^��Y��V�xL�vU��}��� ������� �Ÿ�ȣ�Ơ����_~�M��G�y…

12