/external/neven/Embedded/common/src/b_BasicEm/ |
Memory.c | 60 const uint16* srcL = ( uint16* )srcA; 64 *dstL++ = *srcL++; 79 const uint16* srcL = ( uint16* )srcA; 83 dstL[ 0 ] = srcL[ 0 ]; 84 dstL[ 1 ] = srcL[ 1 ]; 85 dstL[ 2 ] = srcL[ 2 ]; 86 dstL[ 3 ] = srcL[ 3 ]; 88 srcL += 4; 93 *dstL++ = *srcL++; 110 const uint32* srcL = ( uint32* )srcA [all...] |
Functions.c | 135 const uint32* srcL = ( uint32* )ptrA; 141 memPtrA += bbs_memWrite32( srcL++, memPtrA ); 175 const uint16* srcL = ( uint16* )ptrA; 181 memPtrA += bbs_memWrite16( srcL++, memPtrA );
|
String.c | 42 const char* srcL = srcA; 44 while( ( *dstL++ = *srcL++ ) != 0 ); 65 const char* srcL = srcA; 68 while( ( *dstL++ = *srcL++ ) != 0 );
|
/external/neven/Embedded/common/src/b_ImageEm/ |
APhImage.c | 442 const struct bbs_Complex* srcL; 445 srcL = srcPtrA->arrE.arrPtrE; 448 bbs_APh_importComplex( dstL++, srcL++ );
|
Flt16Image.c | 476 const struct bbs_Complex* srcL; 480 srcL = srcPtrA->arrE.arrPtrE; 483 *dstL++ = ( *srcL++ ).realE; 495 const struct bbs_Complex* srcL; 499 srcL = srcPtrA->arrE.arrPtrE; 502 *dstL++ = ( *srcL++ ).imagE; 514 const struct bbs_Complex* srcL; 518 srcL = srcPtrA->arrE.arrPtrE; 521 *dstL++ = bbs_sqrt32( ( int32 )srcL->realE * srcL->realE + ( int32 )srcL->imagE * srcL->imagE ) [all...] |
UInt8PyramidalImage.c | 352 uint8 *srcL, *dstL; 357 srcL = dstPtrA->arrE.arrPtrE; 358 dstL = srcL + widthL * heightL; 366 *dstL++ = ( ( *srcL + *( srcL + 1 ) + *( srcL + widthL ) + *( srcL + widthL + 1 ) ) + 2 ) >> 2; 367 srcL += 2; 369 srcL += widthL;
|
ComplexImage.c | 466 const struct bbs_APh* srcL; 469 srcL = srcPtrA->arrE.arrPtrE; 472 bbs_Complex_importAPh( dstL++, srcL++ );
|
UInt16BytePyrImage.c | 358 uint16* srcL = dstPtrA->arrE.arrPtrE; 359 uint16* dstL = srcL + ( heightL * halfWidthL ); 367 tmpL = ( ( *srcL & 0x0FF ) + ( *srcL >> 8 ) + ( *( srcL + halfWidthL ) & 0x0FF ) + 368 ( *( srcL + halfWidthL ) >> 8 ) + 2 ) >> 2; 374 srcL++; 376 tmpL = ( ( *srcL & 0x0FF ) + ( *srcL >> 8 ) + ( *( srcL + halfWidthL ) & 0x0FF ) [all...] |
Functions.c | 50 const uint8* srcL = srcPtrA; 58 *dstL = ( ( uint32 )srcL[ 0 ] + srcL[ 1 ] + srcL[ wsL ] + srcL[ wsL + 1 ] + 2 ) >> 2; 60 srcL += 2; 62 srcL += ( wsL - w1L ) * 2; 85 const uint8* srcL = srcImagePtrA; 233 bim_downscaleBy2( bufPtrA->arrPtrE, srcL + yMinL * w0L + xMinL, w0L, wEffL, hEffL ); 250 srcL = bufPtrA->arrPtrE [all...] |
UInt16ByteImage.c | 509 uint16 srcL = *( ulPtrL + khL ); 510 valL = f1xL * ( srcL & 0x00FF ) + f2xL * ( srcL >> 8 ); 537 uint16 srcL = *( llPtrL + khL ); 538 valL = f1xL * ( srcL & 0x00FF ) + f2xL * ( srcL >> 8 );
|
/external/neven/Embedded/common/src/b_TensorEm/ |
Flt16Vec.c | 102 const int16* srcL = ptrA->arrE.arrPtrE; 105 sumL += srcL[ iL ]; 124 const int16* srcL = ptrA->arrE.arrPtrE; 127 uint16 vL = srcL[ iL ] > 0 ? srcL[ iL ] : -srcL[ iL ];
|
/external/neven/Embedded/common/src/b_BitFeatureEm/ |
LocalScanner.c | 299 const uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + ybL * ptrA->bitImageE.widthE + xbL; 301 for( iL = 0; iL < wsrWidthL; iL++ ) dstL[ iL ] = srcL[ iL ] >> yoL; 700 uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + rowL * widthL + ptrA->xE; 704 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( dstL[ iL ] >> 1 ) | ( srcL[ iL ] << shlL ); 708 bbs_memcpy32( dstL, srcL, sizeL ); 765 uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + ( rowL - 1 ) * imgWidthL + imgOffsL; 766 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = srcL[ iL ] >> offL;
|
Scanner.c | 154 const uint8* srcL = ( uint8* )imagePtrA; 162 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8; 163 srcL += 2; 167 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++; 173 const uint8* srcL = ( uint8* )imagePtrA + roiPtrA->y1E * imageWidthA + roiPtrA->x1E; 193 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8; 194 srcL += 2; 198 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++ [all...] |
/external/valgrind/main/VEX/priv/ |
host_mips_defs.c | 1118 MIPSInstr *MIPSInstr_Alu(MIPSAluOp op, HReg dst, HReg srcL, MIPSRH * srcR) 1124 i->Min.Alu.srcL = srcL; 1129 MIPSInstr *MIPSInstr_Shft(MIPSShftOp op, Bool sz32, HReg dst, HReg srcL, 1137 i->Min.Shft.srcL = srcL; 1152 MIPSInstr *MIPSInstr_Cmp(Bool syned, Bool sz32, HReg dst, HReg srcL, HReg srcR, 1160 i->Min.Cmp.srcL = srcL; 1167 MIPSInstr *MIPSInstr_Mul(Bool syned, Bool wid, Bool sz32, HReg dst, HReg srcL, [all...] |
host_mips_defs.h | 435 HReg srcL; 446 HReg srcL; 460 HReg srcL; 470 HReg srcL; 476 HReg srcL; 560 HReg srcL; 573 HReg srcL; 598 HReg srcL; 605 HReg srcL; 664 extern MIPSInstr *MIPSInstr_FpBinary(MIPSFpOp op, HReg dst, HReg srcL, [all...] |
host_x86_isel.c | 799 HReg srcL = iselDblExpr(env, triop->arg2); 806 srcL,srcR,junk [all...] |
host_amd64_defs.h | 594 HReg srcL; /* xmm */ 725 extern AMD64Instr* AMD64Instr_SseUComIS ( Int sz, HReg srcL, HReg srcR, HReg dst );
|
host_ppc_isel.c | [all...] |
host_x86_defs.h | 537 HReg srcL; 582 HReg srcL; 682 extern X86Instr* X86Instr_FpBinary ( X86FpOp op, HReg srcL, HReg srcR, HReg dst ); 689 extern X86Instr* X86Instr_FpCmp ( HReg srcL, HReg srcR, HReg dst );
|
host_ppc_defs.h | 552 HReg srcL; 563 HReg srcL; 571 HReg srcL; 580 HReg srcL; 594 HReg srcL; 603 HReg srcL; 695 HReg srcL; 747 HReg srcL; 772 HReg srcL; 778 HReg srcL; [all...] |
guest_arm_toIR.c | [all...] |