HomeSort by relevance Sort by last modified time
    Searched refs:dstL (Results 1 - 16 of 16) sorted by null

  /external/neven/Embedded/common/src/b_BasicEm/
Memory.c 59 uint16* dstL = ( uint16* )dstA;
64 *dstL++ = *srcL++;
78 uint16* dstL = ( uint16* )dstA;
83 dstL[ 0 ] = srcL[ 0 ];
84 dstL[ 1 ] = srcL[ 1 ];
85 dstL[ 2 ] = srcL[ 2 ];
86 dstL[ 3 ] = srcL[ 3 ];
87 dstL += 4;
93 *dstL++ = *srcL++;
109 uint32* dstL = ( uint32* )dstA
    [all...]
String.c 43 char* dstL = dstA;
44 while( ( *dstL++ = *srcL++ ) != 0 );
66 char* dstL = dstA;
67 while( *dstL != 0 ) dstL++;
68 while( ( *dstL++ = *srcL++ ) != 0 );
Functions.c 155 uint32* dstL = ( uint32* )ptrA;
161 memPtrA += bbs_memRead32( dstL++, memPtrA );
195 uint16* dstL = ( uint16* )ptrA;
201 memPtrA += bbs_memRead16( dstL++, memPtrA );
  /external/neven/Embedded/common/src/b_TensorEm/
Flt16Vec.c 240 int16* dstL = ptrA->arrE.arrPtrE;
241 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] <<= shlL;
259 int16* dstL = ptrA->arrE.arrPtrE;
260 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( int32 )dstL[ iL ] * fL + 32768 ) >> 16;
272 int16* dstL = ptrA->arrE.arrPtrE;
274 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] -= avgL;
290 int16* dstL = ptrA->arrE.arrPtrE;
312 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( ( ( int32 )dstL[ iL ] * fL ) >> 15 ) + 1 ) >> 1
    [all...]
  /external/neven/Embedded/common/src/b_ImageEm/
Flt16Image.c 475 int16* dstL;
479 dstL = dstPtrA->arrE.arrPtrE;
483 *dstL++ = ( *srcL++ ).realE;
494 int16* dstL;
498 dstL = dstPtrA->arrE.arrPtrE;
502 *dstL++ = ( *srcL++ ).imagE;
513 int16* dstL;
517 dstL = dstPtrA->arrE.arrPtrE;
521 *dstL++ = bbs_sqrt32( ( int32 )srcL->realE * srcL->realE + ( int32 )srcL->imagE * srcL->imagE );
533 int16* dstL;
    [all...]
Functions.c 51 uint8* dstL = dstPtrA;
58 *dstL = ( ( uint32 )srcL[ 0 ] + srcL[ 1 ] + srcL[ wsL ] + srcL[ wsL + 1 ] + 2 ) >> 2;
59 dstL++;
86 uint8* dstL = dstImagePtrA;
317 *dstL++ = ( v1L * yf1L + v2L * yf2L + 0x080000 ) >> 20;
346 *dstL++ = srcL[ 0 ];
350 *dstL++ = srcL[ w1L - 1 ];
354 *dstL++ = ( ( uint32 )srcL[ x0L ] * xf1L + ( uint32 )srcL[ x0L + 1 ] * xf2L + 0x08000 ) >> 16;
361 *dstL++ = srcL[ ( h1L - 1 ) * w1L ];
365 *dstL++ = srcL[ ( h1L * w1L ) - 1 ]
    [all...]
UInt16BytePyrImage.c 359 uint16* dstL = srcL + ( heightL * halfWidthL );
370 *dstL = tmpL << 8;
372 *dstL = tmpL;
379 *dstL |= tmpL;
381 *dstL |= tmpL << 8;
384 dstL++;
APhImage.c 441 struct bbs_APh* dstL;
444 dstL = dstPtrA->arrE.arrPtrE;
448 bbs_APh_importComplex( dstL++, srcL++ );
ComplexImage.c 465 struct bbs_Complex* dstL;
468 dstL = dstPtrA->arrE.arrPtrE;
472 bbs_Complex_importAPh( dstL++, srcL++ );
UInt8PyramidalImage.c 352 uint8 *srcL, *dstL;
358 dstL = srcL + widthL * heightL;
366 *dstL++ = ( ( *srcL + *( srcL + 1 ) + *( srcL + widthL ) + *( srcL + widthL + 1 ) ) + 2 ) >> 2;
  /external/neven/Embedded/common/src/b_BitFeatureEm/
Scanner.c 155 uint16* dstL = ptrA->workImageE.arrPtrE;
162 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8;
167 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++;
174 uint16* dstL = ptrA->workImageE.arrPtrE;
193 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8;
198 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++;
860 uint32* dstL = ptrA->patchBufferE.arrPtrE;
869 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( dstL[ iL ] >> 1 ) | ( srcL[ iL ] << shlL );
873 bbs_memcpy32( dstL, srcL, sizeL )
    [all...]
LocalScanner.c 298 uint32* dstL = ptrA->patchBufferE.arrPtrE + xbL;
301 for( iL = 0; iL < wsrWidthL; iL++ ) dstL[ iL ] = srcL[ iL ] >> yoL;
305 uint32* dstL = ptrA->patchBufferE.arrPtrE + xbL;
310 for( iL = 0; iL < wsrWidthL; iL++ ) dstL[ iL ] = ( src0L[ iL ] >> yoL ) | ( src1L[ iL ] << slL );
695 uint32* dstL = ( uint32* )ptrA->patchBufferE.arrPtrE + ptrA->xE;
704 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( dstL[ iL ] >> 1 ) | ( srcL[ iL ] << shlL );
708 bbs_memcpy32( dstL, srcL, sizeL );
713 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] >>= 1;
746 uint32* dstL = ptrA->patchBufferE.arrPtrE + imgOffsL
    [all...]
  /external/v8/src/arm/
assembler-arm.cc 1025 void Assembler::smlal(Register dstL,
1031 ASSERT(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc));
1032 ASSERT(!dstL.is(dstH));
1033 emit(cond | B23 | B22 | A | s | dstH.code()*B16 | dstL.code()*B12 |
1038 void Assembler::smull(Register dstL,
1044 ASSERT(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc));
1045 ASSERT(!dstL.is(dstH));
1046 emit(cond | B23 | B22 | s | dstH.code()*B16 | dstL.code()*B12 |
1051 void Assembler::umlal(Register dstL,
1057 ASSERT(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc))
    [all...]
assembler-thumb2.cc 1005 void Assembler::smlal(Register dstL,
1011 ASSERT(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc));
1012 ASSERT(!dstL.is(dstH));
1013 emit(cond | B23 | B22 | A | s | dstH.code()*B16 | dstL.code()*B12 |
1018 void Assembler::smull(Register dstL,
1024 ASSERT(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc));
1025 ASSERT(!dstL.is(dstH));
1026 emit(cond | B23 | B22 | s | dstH.code()*B16 | dstL.code()*B12 |
1031 void Assembler::umlal(Register dstL,
1037 ASSERT(!dstL.is(pc) && !dstH.is(pc) && !src1.is(pc) && !src2.is(pc))
    [all...]
assembler-arm.h 703 void smlal(Register dstL, Register dstH, Register src1, Register src2,
706 void smull(Register dstL, Register dstH, Register src1, Register src2,
709 void umlal(Register dstL, Register dstH, Register src1, Register src2,
712 void umull(Register dstL, Register dstH, Register src1, Register src2,
    [all...]
assembler-thumb2.h 703 void smlal(Register dstL, Register dstH, Register src1, Register src2,
706 void smull(Register dstL, Register dstH, Register src1, Register src2,
709 void umlal(Register dstL, Register dstH, Register src1, Register src2,
712 void umull(Register dstL, Register dstH, Register src1, Register src2,
    [all...]

Completed in 3043 milliseconds