/external/neven/Embedded/common/src/b_BasicEm/ |
Phase.c | 273 uint32 xL = ( xA > 0 ) ? xA : -xA; 277 if( xL == 0 && yL == 0 ) return 0; 279 if( xL == yL ) 283 else if( xL > yL ) 288 xL >>= shiftL; 291 phaseL = bbs_atan16( ( yL << 16 ) / xL ); 295 if( xL >= 65536 ) /* avoid overflow (1 << 16) */ 297 uint32 shiftL = bbs_intLog2( xL ) - 15; 298 xL >>= shiftL; 301 phaseL = bbs_M_PI_2_16 - bbs_atan16( ( xL << 16 ) / yL ) [all...] |
/external/neven/Embedded/common/src/b_ImageEm/ |
Functions.c | 176 int32 xL, yL; 177 xL = txL; 179 xMinL = xL < xMinL ? xL : xMinL; 181 xMaxL = xL > xMaxL ? xL : xMaxL; 183 xL = txL + mxxL * ( int32 )dstWidthA + mxyL * ( int32 )dstHeightA; 185 xMinL = xL < xMinL ? xL : xMinL; 187 xMaxL = xL > xMaxL ? xL : xMaxL [all...] |
HistoEq.c | 69 uint32 xL, yL; 93 for( xL = 256; xL > 0; xL-- ) 103 for( xL = 0; xL < sectWidthL; xL++ )
|
HistoEq16.c | 70 uint32 xL, yL; 96 for( xL = 256; xL > 0; xL-- ) 106 for( xL = 0; xL < sectWidthL; xL++ )
|
UInt16ByteImage.c | 366 int32 xL; 449 xL = txL + mxyL * jL; 474 kL = xL >> bbpL; 481 f2xL = ( xL & fractionOnlyL ) >> bbpLby2L; 488 xL += mxxL; 666 int32 xL; 748 xL = txL + mxyL * jL; 770 kL = xL >> bbpL; 774 f2xL = ( xL & fractionOnlyL ) >> bbpLby2L; 781 xL += mxxL [all...] |
UInt8Image.c | 552 int32 xL; 641 xL = txL + mxyL * jL; 663 kL = xL >> bbpL; 667 f2xL = ( xL & fractionOnlyL ) >> bbpLby2L; 674 xL += mxxL;
|
/external/neven/Embedded/common/src/b_TensorEm/ |
Flt16Vec3D.c | 83 int32 xL = ( int32 ) srcPtrA->xE << bbpDiffL; 86 if( ptrA->xE != xL ) return FALSE; 94 int32 xL = ( int32 ) ptrA->xE << -bbpDiffL; 97 if( xL != srcPtrA->xE ) return FALSE; 239 int32 xL = ( ( int32 ) ptrA->xE << 16 ) / normL; 242 *ptrA = bts_Flt16Vec3D_create32( xL, yL, zL, 16 ); 258 int32 xL, yL, zL, bbpL; 263 xL = vec1A.xE + ( ( int32 ) vec2A.xE << shiftL ); 270 xL = ( ( int32 ) vec1A.xE << -shiftL ) + vec2A.xE; 276 return bts_Flt16Vec3D_create32( xL, yL, zL, bbpL ) [all...] |
Flt16Vec2D.c | 89 int32 xL = ( int32 ) srcPtrA->xE << bbpDiffL; 91 if( ptrA->xE != xL ) return FALSE; 94 if( srcPtrA->xE != ( xL >> bbpDiffL ) ) return FALSE; 101 int32 xL = ( int32 ) ptrA->xE << -bbpDiffL; 103 if( xL != srcPtrA->xE ) return FALSE; 106 if( ptrA->xE != ( xL >> -bbpDiffL ) ) return FALSE; 226 int32 xL = ( ( int32 ) ptrA->xE << 16 ) / normL; 228 *ptrA = bts_Flt16Vec2D_create32( xL, yL, 16 ); 252 int32 xL = ( int32 ) vec1PtrA->xE * vec2PtrA->xE + ( int32 ) vec1PtrA->yE * vec2PtrA->yE; 254 return bbs_phase16( xL, yL ) [all...] |
Int32Mat.c | 45 int32 xL = *ptrL++; 46 if( xL < 0 ) xL = -xL; 47 if( xL > maxL ) maxL = xL; 462 int32 xL = vecL[ iL ]; 463 if( xL < 0 ) xL = -xL; [all...] |
Int16Vec2D.c | 154 int32 xL = ( ( int32 ) ptrA->xE << 16 ) / normL; 156 ptrA->xE = xL >> ( 16 - bbpA ); 181 int32 xL = ( int32 ) vec1PtrA->xE * vec2PtrA->xE + ( int32 ) vec1PtrA->yE * vec2PtrA->yE; 183 return bbs_phase16( xL, yL );
|
Int16Vec3D.c | 139 int32 xL = ( ( int32 )ptrA->xE << 16 ) / normL; 142 ptrA->xE = xL >> ( 16 - bbpA );
|
Cluster3D.c | 133 int32 xL = 0; 141 xL += vecPtrL->xE; 147 xL = ( ( ( xL << 1 ) / ( int32 )ptrA->sizeE ) + 1 ) >> 1; 151 return bts_Flt16Vec3D_create16( ( int16 )xL, ( int16 )yL, ( int16 )zL, ( int16 )ptrA->bbpE ); 356 int32 xL = vecPtrL->xE; 359 vecPtrL->xE = ( x0L + xL * altA.matE.xxE + yL * altA.matE.xyE + zL * altA.matE.xzE ) >> altA.matE.bbpE; 360 vecPtrL->yE = ( y0L + xL * altA.matE.yxE + yL * altA.matE.yyE + zL * altA.matE.yzE ) >> altA.matE.bbpE; 361 vecPtrL->zE = ( z0L + xL * altA.matE.zxE + yL * altA.matE.zyE + zL * altA.matE.zzE ) >> altA.matE.bbpE;
|
Flt16Mat2D.c | 301 int32 xL = ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE; 307 vecL.xE = ( ( xL >> sh1L ) + 1 ) >> 1; 313 vecL.xE = xL << -matPtrA->bbpE; 325 int32 xL = ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE; 328 return bts_Flt16Vec2D_create32( xL, yL, bbpL );
|
Flt16Mat3D.c | 265 int32 xL = ( int32 ) matPtrA->xxE * vecPtrA->xE + ( int32 ) matPtrA->xyE * vecPtrA->yE + ( int32 ) matPtrA->xzE * vecPtrA->zE; 272 vecL.xE = ( ( xL >> sh1L ) + 1 ) >> 1; 279 vecL.xE = xL << -matPtrA->bbpE; 293 int32 xL = ( ( ( ( int32 ) matPtrA->xxE * vecPtrA->xE + 1 ) >> 1 ) + 306 return bts_Flt16Vec3D_create32( xL, yL, zL, vecPtrA->bbpE + matPtrA->bbpE - 1 );
|
Cluster2D.c | 175 int32 xL = 0; 182 xL += vecPtrL->xE; 187 xL = ( ( ( xL << 1 ) / ( int32 )ptrA->sizeE ) + 1 ) >> 1; 190 return bts_Flt16Vec2D_create16( ( int16 )xL, ( int16 )yL, ( int16 )ptrA->bbpE ); 258 int32 xL = ptrA->vecArrE[ indexA ].xE; 261 xL <<= shiftL; 265 xL = ( ( xL >> ( -shiftL - 1 ) ) + 1 ) >> 1; 268 return xL; [all...] |
RBFMap2D.c | 482 int32 xL = vecA.xE; 487 xL <<= shiftL; 492 xL = ( ( xL >> ( -shiftL - 1 ) ) + 1 ) >> 1; 502 vecL.xE -= xL;
|
/external/neven/Embedded/common/src/b_APIEm/ |
BFFaceFinder.c | 242 int32 xL = 0; /* 16.16 */ 260 xL = outArrL[ 0 ]; /* 16.16 */ 267 offsPtrA->xE = xL >> 16; 269 xL -= ( ( int32 )offsPtrA->xE << 16 ); 274 altL.vecE = bts_Flt16Vec2D_create32( xL, yL, 16 ); 315 int32 xL = 0; /* 16.16 */ 336 xL = ptrA->faceDataBufferE[ indexA * 4 + 0 ]; /* 16.16 */ 341 offsPtrA->xE = xL >> 16; 344 xL -= ( ( int32 )offsPtrA->xE << 16 ); 349 altL.vecE = bts_Flt16Vec2D_create32( xL, yL, 16 ) [all...] |
/external/neven/Embedded/common/src/b_BitFeatureEm/ |
ScanDetector.c | 406 int32 xL, yL; 415 bbf_Scanner_idxPos( scannerPtrL, bestIdxL, &xL, &yL, &scaleL ); 420 bestGlobalXL = xL; 432 int32 xL, yL; 438 bbf_Scanner_idxPos( scannerPtrL, idxArrL[ iL ], &xL, &yL, &scaleL ); 441 bbf_Scanner_addOutPos( cpA, scannerPtrL, xL, yL, scaleL, actL );
|
Scanner.c | 608 int32 xL = scanIndexA - ( yL * ptrA->currentWidthE ); 611 *xPtrA = ( int32 )( xL - ptrA->borderWidthE ) * ( int32 )( ptrA->scaleE >> 4 ); 980 int32 xL = scanIndexA - yL * ptrA->currentWidthE; 981 bbf_Scanner_goToXY( cpA, ptrA, xL, yL ); 989 int32 xL = ( xA / ( int32 )( ptrA->scaleE >> 4 ) ) + ptrA->borderWidthE; 998 bbf_Scanner_goToXY( cpA, ptrA, xL, yL ); [all...] |
LocalScanDetector.c | 619 int32 xL, yL; /* 16.16 */ 620 bbf_LocalScanner_idxPos( scnPtrL, bestIdxL, &xL, &yL ); 621 xL += pw1L << 15; 625 dstVecArrL[ iL ].xE = ( ( xL >> ( 15 - vecBbpL ) ) + 1 ) >> 1;
|
LocalScanner.c | 470 int32 xL = ( scanIndexA % wL ) + ptrA->workScanRegionE.x1E; 472 *xPtrA = ( ( xL << ptrA->scaleExpE ) + ptrA->xOffE ) << 16;
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
dc.sed | 49 /|?;/ s/|?;\([^{}]\)/|?~[s}s{L{s}q]S}[S}l\1L}1-d0>}s\1L\1l{xS\1]dS{xL}/
|