HomeSort by relevance Sort by last modified time
    Searched refs:dstL (Results 1 - 21 of 21) 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...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_fbupdate.cpp 336 hwc_rect_t dstL = displayFrame;
338 qhwc::calculate_crop_rects(cropL, dstL, scissorL, 0);
341 dstL, NULL, destL)< 0) {
hwc_utils.cpp 738 hwc_rect_t cropL, dstL, cropR, dstR;
745 dstL = displayFrame;
748 qhwc::calculate_crop_rects(cropL, dstL, scissorL, 0);
760 dst_width_l = dstL.right - dstL.left;
761 dst_height_l = dstL.bottom - dstL.top;
    [all...]
hwc_mdpcomp.cpp     [all...]
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_fbupdate.cpp 333 hwc_rect_t dstL = displayFrame;
335 qhwc::calculate_crop_rects(cropL, dstL, scissorL, 0);
338 dstL, NULL, destL)< 0) {
hwc_utils.cpp 691 hwc_rect_t cropL, dstL, cropR, dstR;
698 dstL = displayFrame;
701 qhwc::calculate_crop_rects(cropL, dstL, scissorL, 0);
713 dst_width_l = dstL.right - dstL.left;
714 dst_height_l = dstL.bottom - dstL.top;
    [all...]
hwc_mdpcomp.cpp     [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm.cc     [all...]
assembler-arm.h 947 void smlal(Register dstL, Register dstH, Register src1, Register src2,
950 void smull(Register dstL, Register dstH, Register src1, Register src2,
953 void umlal(Register dstL, Register dstH, Register src1, Register src2,
956 void umull(Register dstL, Register dstH, Register src1, Register src2,
    [all...]
  /frameworks/base/libs/hwui/
FontRenderer.cpp 346 uint8_t* dstL = dst - borderSize;
349 memset(dstL, 0, rowSize + 2 * borderSize);
352 memset(dstL += dstStride, 0, borderSize); // leading border column
357 memset(dstL += dstStride, 0, rowSize + 2 * borderSize);

Completed in 270 milliseconds