/external/neven/Embedded/common/src/b_BasicEm/ |
D | Memory.c | 59 uint16* dstL = ( uint16* )dstA; in bbs_memcpy16() local 64 *dstL++ = *srcL++; in bbs_memcpy16() 78 uint16* dstL = ( uint16* )dstA; in bbs_memcpy16() 83 dstL[ 0 ] = srcL[ 0 ]; in bbs_memcpy16() 84 dstL[ 1 ] = srcL[ 1 ]; in bbs_memcpy16() 85 dstL[ 2 ] = srcL[ 2 ]; in bbs_memcpy16() 86 dstL[ 3 ] = srcL[ 3 ]; in bbs_memcpy16() 87 dstL += 4; in bbs_memcpy16() 93 *dstL++ = *srcL++; in bbs_memcpy16() 109 uint32* dstL = ( uint32* )dstA; in bbs_memcpy32() local [all …]
|
D | String.c | 43 char* dstL = dstA; in bbs_strcpy() local 44 while( ( *dstL++ = *srcL++ ) != 0 ); in bbs_strcpy() 66 char* dstL = dstA; in bbs_strcat() local 67 while( *dstL != 0 ) dstL++; in bbs_strcat() 68 while( ( *dstL++ = *srcL++ ) != 0 ); in bbs_strcat()
|
D | Functions.c | 155 uint32* dstL = ( uint32* )ptrA; in bbs_memRead32Arr() local 161 memPtrA += bbs_memRead32( dstL++, memPtrA ); in bbs_memRead32Arr() 195 uint16* dstL = ( uint16* )ptrA; in bbs_memRead16Arr() local 201 memPtrA += bbs_memRead16( dstL++, memPtrA ); in bbs_memRead16Arr()
|
/external/neven/Embedded/common/src/b_TensorEm/ |
D | Flt16Vec.c | 240 int16* dstL = ptrA->arrE.arrPtrE; in bts_Flt16Vec_maximizeMantisse() local 241 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] <<= shlL; in bts_Flt16Vec_maximizeMantisse() 259 int16* dstL = ptrA->arrE.arrPtrE; in bts_Flt16Vec_maximizeAbsValue() local 260 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( int32 )dstL[ iL ] * fL + 32768 ) >> 16; in bts_Flt16Vec_maximizeAbsValue() 272 int16* dstL = ptrA->arrE.arrPtrE; in bts_Flt16Vec_zeroAverage() local 274 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] -= avgL; in bts_Flt16Vec_zeroAverage() 290 int16* dstL = ptrA->arrE.arrPtrE; in bts_Flt16Vec_normalize() local 312 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( ( ( int32 )dstL[ iL ] * fL ) >> 15 ) + 1 ) >> 1; in bts_Flt16Vec_normalize() 349 int16* dstL = ptrA->arrE.arrPtrE; in bts_Flt16Vec_mul() local 384 dstL[ iL ] = ( ( ( ( int32 )dstL[ iL ] * valL ) >> 15 ) + 1 ) >> 1; in bts_Flt16Vec_mul() [all …]
|
/external/neven/Embedded/common/src/b_ImageEm/ |
D | Functions.c | 51 uint8* dstL = dstPtrA; in bim_downscaleBy2() local 58 *dstL = ( ( uint32 )srcL[ 0 ] + srcL[ 1 ] + srcL[ wsL ] + srcL[ wsL + 1 ] + 2 ) >> 2; in bim_downscaleBy2() 59 dstL++; in bim_downscaleBy2() 86 uint8* dstL = dstImagePtrA; in bim_filterWarpInterpolation() local 317 *dstL++ = ( v1L * yf1L + v2L * yf2L + 0x080000 ) >> 20; in bim_filterWarpInterpolation() 346 *dstL++ = srcL[ 0 ]; in bim_filterWarpInterpolation() 350 *dstL++ = srcL[ w1L - 1 ]; in bim_filterWarpInterpolation() 354 *dstL++ = ( ( uint32 )srcL[ x0L ] * xf1L + ( uint32 )srcL[ x0L + 1 ] * xf2L + 0x08000 ) >> 16; in bim_filterWarpInterpolation() 361 *dstL++ = srcL[ ( h1L - 1 ) * w1L ]; in bim_filterWarpInterpolation() 365 *dstL++ = srcL[ ( h1L * w1L ) - 1 ]; in bim_filterWarpInterpolation() [all …]
|
D | Flt16Image.c | 475 int16* dstL; in bim_Flt16Image_importReal() local 479 dstL = dstPtrA->arrE.arrPtrE; in bim_Flt16Image_importReal() 483 *dstL++ = ( *srcL++ ).realE; in bim_Flt16Image_importReal() 494 int16* dstL; in bim_Flt16Image_importImag() local 498 dstL = dstPtrA->arrE.arrPtrE; in bim_Flt16Image_importImag() 502 *dstL++ = ( *srcL++ ).imagE; in bim_Flt16Image_importImag() 513 int16* dstL; in bim_Flt16Image_importAbs() local 517 dstL = dstPtrA->arrE.arrPtrE; in bim_Flt16Image_importAbs() 521 *dstL++ = bbs_sqrt32( ( int32 )srcL->realE * srcL->realE + ( int32 )srcL->imagE * srcL->imagE ); in bim_Flt16Image_importAbs() 533 int16* dstL; in bim_Flt16Image_importPhase() local [all …]
|
D | UInt16BytePyrImage.c | 359 uint16* dstL = srcL + ( heightL * halfWidthL ); in bim_UInt16BytePyrImage_recompute() local 370 *dstL = tmpL << 8; in bim_UInt16BytePyrImage_recompute() 372 *dstL = tmpL; in bim_UInt16BytePyrImage_recompute() 379 *dstL |= tmpL; in bim_UInt16BytePyrImage_recompute() 381 *dstL |= tmpL << 8; in bim_UInt16BytePyrImage_recompute() 384 dstL++; in bim_UInt16BytePyrImage_recompute()
|
D | UInt8PyramidalImage.c | 352 uint8 *srcL, *dstL; in bim_UInt8PyramidalImage_recompute() local 358 dstL = srcL + widthL * heightL; in bim_UInt8PyramidalImage_recompute() 366 *dstL++ = ( ( *srcL + *( srcL + 1 ) + *( srcL + widthL ) + *( srcL + widthL + 1 ) ) + 2 ) >> 2; in bim_UInt8PyramidalImage_recompute()
|
D | ComplexImage.c | 465 struct bbs_Complex* dstL; in bim_ComplexImage_importAPh() local 468 dstL = dstPtrA->arrE.arrPtrE; in bim_ComplexImage_importAPh() 472 bbs_Complex_importAPh( dstL++, srcL++ ); in bim_ComplexImage_importAPh()
|
D | APhImage.c | 441 struct bbs_APh* dstL; in bim_APhImage_importComplex() local 444 dstL = dstPtrA->arrE.arrPtrE; in bim_APhImage_importComplex() 448 bbs_APh_importComplex( dstL++, srcL++ ); in bim_APhImage_importComplex()
|
/external/neven/Embedded/common/src/b_BitFeatureEm/ |
D | Scanner.c | 155 uint16* dstL = ptrA->workImageE.arrPtrE; in bbf_Scanner_copyImage() local 162 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8; in bbf_Scanner_copyImage() 167 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++; in bbf_Scanner_copyImage() 174 uint16* dstL = ptrA->workImageE.arrPtrE; in bbf_Scanner_copyImage() local 193 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8; in bbf_Scanner_copyImage() 198 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++; in bbf_Scanner_copyImage() 860 uint32* dstL = ptrA->patchBufferE.arrPtrE; in bbf_Scanner_next() local 869 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( dstL[ iL ] >> 1 ) | ( srcL[ iL ] << shlL ); in bbf_Scanner_next() 873 bbs_memcpy32( dstL, srcL, sizeL ); in bbf_Scanner_next() 878 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] >>= 1; in bbf_Scanner_next() [all …]
|
D | LocalScanner.c | 298 uint32* dstL = ptrA->patchBufferE.arrPtrE + xbL; in bbf_LocalScanner_initPatchBuffer() local 301 for( iL = 0; iL < wsrWidthL; iL++ ) dstL[ iL ] = srcL[ iL ] >> yoL; in bbf_LocalScanner_initPatchBuffer() 305 uint32* dstL = ptrA->patchBufferE.arrPtrE + xbL; in bbf_LocalScanner_initPatchBuffer() local 310 for( iL = 0; iL < wsrWidthL; iL++ ) dstL[ iL ] = ( src0L[ iL ] >> yoL ) | ( src1L[ iL ] << slL ); in bbf_LocalScanner_initPatchBuffer() 695 uint32* dstL = ( uint32* )ptrA->patchBufferE.arrPtrE + ptrA->xE; in bbf_LocalScanner_next() local 704 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( dstL[ iL ] >> 1 ) | ( srcL[ iL ] << shlL ); in bbf_LocalScanner_next() 708 bbs_memcpy32( dstL, srcL, sizeL ); in bbf_LocalScanner_next() 713 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] >>= 1; in bbf_LocalScanner_next() 746 uint32* dstL = ptrA->patchBufferE.arrPtrE + imgOffsL; in bbf_LocalScanner_goToXY() local 756 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( src0L[ iL ] >> offL ) | ( src1L[ iL ] << shlL ); in bbf_LocalScanner_goToXY() [all …]
|
/external/v8/src/arm/ |
D | assembler-arm.cc | 1740 void Assembler::smlal(Register dstL, in smlal() argument 1746 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc)); in smlal() 1747 DCHECK(!dstL.is(dstH)); in smlal() 1748 emit(cond | B23 | B22 | A | s | dstH.code()*B16 | dstL.code()*B12 | in smlal() 1753 void Assembler::smull(Register dstL, in smull() argument 1759 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc)); in smull() 1760 DCHECK(!dstL.is(dstH)); in smull() 1761 emit(cond | B23 | B22 | s | dstH.code()*B16 | dstL.code()*B12 | in smull() 1766 void Assembler::umlal(Register dstL, in umlal() argument 1772 DCHECK(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc)); in umlal() [all …]
|
D | assembler-arm.h | 909 void smlal(Register dstL, Register dstH, Register src1, Register src2, 912 void smull(Register dstL, Register dstH, Register src1, Register src2, 915 void umlal(Register dstL, Register dstH, Register src1, Register src2, 918 void umull(Register dstL, Register dstH, Register src1, Register src2,
|