Searched defs:srcL (Results 1 - 24 of 24) sorted by relevance

/external/neven/Embedded/common/src/b_BasicEm/
H A DMemory.c60 const uint16* srcL = ( uint16* )srcA; local
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 local
[all...]
H A DFunctions.c135 const uint32* srcL = ( uint32* )ptrA; local
141 memPtrA += bbs_memWrite32( srcL++, memPtrA );
175 const uint16* srcL = ( uint16* )ptrA; local
181 memPtrA += bbs_memWrite16( srcL++, memPtrA );
H A DString.c42 const char* srcL = srcA; local
44 while( ( *dstL++ = *srcL++ ) != 0 );
65 const char* srcL = srcA; local
68 while( ( *dstL++ = *srcL++ ) != 0 );
/external/neven/Embedded/common/src/b_ImageEm/
H A DAPhImage.c442 const struct bbs_Complex* srcL; local
445 srcL = srcPtrA->arrE.arrPtrE;
448 bbs_APh_importComplex( dstL++, srcL++ );
H A DComplexImage.c466 const struct bbs_APh* srcL; local
469 srcL = srcPtrA->arrE.arrPtrE;
472 bbs_Complex_importAPh( dstL++, srcL++ );
H A DFlt16Image.c476 const struct bbs_Complex* srcL; local
480 srcL = srcPtrA->arrE.arrPtrE;
483 *dstL++ = ( *srcL++ ).realE;
495 const struct bbs_Complex* srcL; local
499 srcL = srcPtrA->arrE.arrPtrE;
502 *dstL++ = ( *srcL++ ).imagE;
514 const struct bbs_Complex* srcL; local
518 srcL = srcPtrA->arrE.arrPtrE;
521 *dstL++ = bbs_sqrt32( ( int32 )srcL->realE * srcL
534 const struct bbs_Complex* srcL; local
[all...]
H A DUInt16BytePyrImage.c358 uint16* srcL = dstPtrA->arrE.arrPtrE; local
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
[all...]
H A DUInt8PyramidalImage.c352 uint8 *srcL, *dstL; local
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;
H A DFunctions.c50 const uint8* srcL = srcPtrA; local
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; local
233 bim_downscaleBy2( bufPtrA->arrPtrE, srcL + yMinL * w0L + xMinL, w0L, wEffL, hEffL );
250 srcL
417 const uint8* srcL = srcImagePtrA; local
[all...]
H A DUInt16ByteImage.c509 uint16 srcL = *( ulPtrL + khL ); local
510 valL = f1xL * ( srcL & 0x00FF ) + f2xL * ( srcL >> 8 );
537 uint16 srcL = *( llPtrL + khL ); local
538 valL = f1xL * ( srcL & 0x00FF ) + f2xL * ( srcL >> 8 );
/external/neven/Embedded/common/src/b_TensorEm/
H A DFlt16Vec.c102 const int16* srcL = ptrA->arrE.arrPtrE; local
105 sumL += srcL[ iL ];
124 const int16* srcL = ptrA->arrE.arrPtrE; local
127 uint16 vL = srcL[ iL ] > 0 ? srcL[ iL ] : -srcL[ iL ];
/external/neven/Embedded/common/src/b_BitFeatureEm/
H A DLocalScanner.c299 const uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + ybL * ptrA->bitImageE.widthE + xbL; local
301 for( iL = 0; iL < wsrWidthL; iL++ ) dstL[ iL ] = srcL[ iL ] >> yoL;
700 uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + rowL * widthL + ptrA->xE; local
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; local
766 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = srcL[ iL ] >> offL;
H A DScanner.c154 const uint8* srcL = ( uint8* )imagePtrA; local
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; local
193 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8;
194 srcL += 2;
198 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL
865 uint32* srcL = ( uint32* )ptrA->bitImageE.arrE.arrPtrE + rowL * sizeL; local
923 uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + rowL * sizeL; local
969 uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + ( rowL - 1 ) * sizeL; local
[all...]
/external/valgrind/main/VEX/priv/
H A Dhost_amd64_defs.c855 AMD64Instr* AMD64Instr_SseUComIS ( Int sz, HReg srcL, HReg srcR, HReg dst ) { argument
859 i->Ain.SseUComIS.srcL = srcL;
1200 ppHRegAMD64(i->Ain.SseUComIS.srcL);
1512 addHRegUse(u, HRmRead, i->Ain.SseUComIS.srcL);
1738 mapReg(m, &i->Ain.SseUComIS.srcL);
3118 /* ucomi[sd] %srcL, %srcR ; pushfq ; popq %dst */
3119 /* ucomi[sd] %srcL, %srcR */
3127 rexAMode_R( vreg2ireg(i->Ain.SseUComIS.srcL),
3131 p = doAMode_R(p, vreg2ireg(i->Ain.SseUComIS.srcL),
[all...]
H A Dhost_mips_defs.h435 HReg srcL; member in struct:__anon26714::__anon26715::__anon26717
446 HReg srcL; member in struct:__anon26714::__anon26715::__anon26718
460 HReg srcL; member in struct:__anon26714::__anon26715::__anon26720
470 HReg srcL; member in struct:__anon26714::__anon26715::__anon26721
476 HReg srcL; member in struct:__anon26714::__anon26715::__anon26722
560 HReg srcL; member in struct:__anon26714::__anon26715::__anon26734
573 HReg srcL; member in struct:__anon26714::__anon26715::__anon26736
598 HReg srcL; member in struct:__anon26714::__anon26715::__anon26740
605 HReg srcL; member in struct:__anon26714::__anon26715::__anon26741
664 extern MIPSInstr *MIPSInstr_FpBinary(MIPSFpOp op, HReg dst, HReg srcL,
[all...]
H A Dhost_x86_defs.c756 X86Instr* X86Instr_FpBinary ( X86FpOp op, HReg srcL, HReg srcR, HReg dst ) { argument
760 i->Xin.FpBinary.srcL = srcL;
813 X86Instr* X86Instr_FpCmp ( HReg srcL, HReg srcR, HReg dst ) { argument
816 i->Xin.FpCmp.srcL = srcL;
1073 ppHRegX86(i->Xin.FpBinary.srcL);
1130 ppHRegX86(i->Xin.FpCmp.srcL);
1370 addHRegUse(u, HRmRead, i->Xin.FpBinary.srcL);
1399 addHRegUse(u, HRmRead, i->Xin.FpCmp.srcL);
[all...]
H A Dhost_x86_isel.c799 HReg srcL = iselDblExpr(env, triop->arg2); local
806 srcL,srcR,junk
2978 HReg srcL = iselDblExpr(env, triop->arg2); local
2982 addInstr(env, X86Instr_FpBinary(fpop,srcL,srcR,res));
H A Dhost_amd64_defs.h594 HReg srcL; /* xmm */ member in struct:__anon26535::__anon26536::__anon26567
725 extern AMD64Instr* AMD64Instr_SseUComIS ( Int sz, HReg srcL, HReg srcR, HReg dst );
H A Dhost_mips_defs.c1118 MIPSInstr *MIPSInstr_Alu(MIPSAluOp op, HReg dst, HReg srcL, MIPSRH * srcR) argument
1124 i->Min.Alu.srcL = srcL;
1129 MIPSInstr *MIPSInstr_Shft(MIPSShftOp op, Bool sz32, HReg dst, HReg srcL, argument
1137 i->Min.Shft.srcL = srcL;
1152 MIPSInstr *MIPSInstr_Cmp(Bool syned, Bool sz32, HReg dst, HReg srcL, HReg srcR, argument
1160 i->Min.Cmp.srcL = srcL;
1167 MIPSInstr *MIPSInstr_Mul(Bool syned, Bool wid, Bool sz32, HReg dst, HReg srcL, argument
1182 MIPSInstr_Msub(Bool syned, HReg srcL, HReg srcR) argument
1195 MIPSInstr_Madd(Bool syned, HReg srcL, HReg srcR) argument
1208 MIPSInstr_Div(Bool syned, Bool sz32, HReg srcL, HReg srcR) argument
1401 MIPSInstr_FpBinary(MIPSFpOp op, HReg dst, HReg srcL, HReg srcR) argument
1423 MIPSInstr_FpCompare(MIPSFpOp op, HReg dst, HReg srcL, HReg srcR, UChar cond1) argument
2713 UInt srcL = iregNo(i->Min.MovCond.srcL, mode64); local
[all...]
H A Dhost_ppc_isel.c1447 HReg srcL = iselWordExpr_R(env, e->Iex.Binop.arg1); local
1450 7/*cr*/, srcL, srcR));
1461 HReg srcL = iselWordExpr_R(env, e->Iex.Binop.arg1); local
1465 7/*cr*/, srcL, srcR));
H A Dhost_x86_defs.h537 HReg srcL; member in struct:__anon26918::__anon26919::__anon26943
582 HReg srcL; member in struct:__anon26918::__anon26919::__anon26950
682 extern X86Instr* X86Instr_FpBinary ( X86FpOp op, HReg srcL, HReg srcR, HReg dst );
689 extern X86Instr* X86Instr_FpCmp ( HReg srcL, HReg srcR, HReg dst );
H A Dhost_ppc_defs.c764 HReg srcL, PPCRH* srcR ) {
769 i->Pin.Alu.srcL = srcL;
774 HReg dst, HReg srcL, PPCRH* srcR ) {
780 i->Pin.Shft.srcL = srcL;
785 HReg dst, HReg srcL, HReg srcR ) {
791 i->Pin.AddSubC.srcL = srcL;
796 UInt crfD, HReg srcL, PPCR
763 PPCInstr_Alu( PPCAluOp op, HReg dst, HReg srcL, PPCRH* srcR ) argument
773 PPCInstr_Shft( PPCShftOp op, Bool sz32, HReg dst, HReg srcL, PPCRH* srcR ) argument
784 PPCInstr_AddSubC( Bool isAdd, Bool setC, HReg dst, HReg srcL, HReg srcR ) argument
795 PPCInstr_Cmp( Bool syned, Bool sz32, UInt crfD, HReg srcL, PPCRH* srcR ) argument
814 PPCInstr_MulL( Bool syned, Bool hi, Bool sz32, HReg dst, HReg srcL, HReg srcR ) argument
829 PPCInstr_Div( Bool extended, Bool syned, Bool sz32, HReg dst, HReg srcL, HReg srcR ) argument
966 PPCInstr_FpBinary( PPCFpOp op, HReg dst, HReg srcL, HReg srcR ) argument
1022 PPCInstr_Dfp64Binary(PPCFpOp op, HReg dst, HReg srcL, HReg srcR) argument
1095 PPCInstr_DfpQuantize( PPCFpOp op, HReg dst, HReg srcL, HReg srcR, PPCRI* rmc ) argument
1150 PPCInstr_InsertExpD128( PPCFpOp op, HReg dst_hi, HReg dst_lo, HReg srcL, HReg srcR_hi, HReg srcR_lo ) argument
1163 PPCInstr_Dfp64Cmp( HReg dst, HReg srcL, HReg srcR ) argument
1272 PPCInstr_FpCmp( HReg dst, HReg srcL, HReg srcR ) argument
1309 PPCInstr_AvBinary( PPCAvOp op, HReg dst, HReg srcL, HReg srcR ) argument
1319 PPCInstr_AvBin8x16( PPCAvOp op, HReg dst, HReg srcL, HReg srcR ) argument
1329 PPCInstr_AvBin16x8( PPCAvOp op, HReg dst, HReg srcL, HReg srcR ) argument
1339 PPCInstr_AvBin32x4( PPCAvOp op, HReg dst, HReg srcL, HReg srcR ) argument
1349 PPCInstr_AvBin32Fx4( PPCAvFpOp op, HReg dst, HReg srcL, HReg srcR ) argument
1367 PPCInstr_AvPerm( HReg dst, HReg srcL, HReg srcR, HReg ctl ) argument
1376 PPCInstr_AvSel( HReg ctl, HReg dst, HReg srcL, HReg srcR ) argument
1385 PPCInstr_AvShlDbl( UChar shift, HReg dst, HReg srcL, HReg srcR ) argument
[all...]
H A Dhost_ppc_defs.h552 HReg srcL; member in struct:__anon26773::__anon26774::__anon26776
563 HReg srcL; member in struct:__anon26773::__anon26774::__anon26777
571 HReg srcL; member in struct:__anon26773::__anon26774::__anon26778
580 HReg srcL; member in struct:__anon26773::__anon26774::__anon26779
594 HReg srcL; member in struct:__anon26773::__anon26774::__anon26781
603 HReg srcL; member in struct:__anon26773::__anon26774::__anon26782
695 HReg srcL; member in struct:__anon26773::__anon26774::__anon26796
747 HReg srcL; member in struct:__anon26773::__anon26774::__anon26804
772 HReg srcL; member in struct:__anon26773::__anon26774::__anon26808
778 HReg srcL; member in struct:__anon26773::__anon26774::__anon26809
784 HReg srcL; member in struct:__anon26773::__anon26774::__anon26810
790 HReg srcL; member in struct:__anon26773::__anon26774::__anon26811
796 HReg srcL; member in struct:__anon26773::__anon26774::__anon26812
807 HReg srcL; member in struct:__anon26773::__anon26774::__anon26814
813 HReg srcL; member in struct:__anon26773::__anon26774::__anon26815
820 HReg srcL; member in struct:__anon26773::__anon26774::__anon26816
847 HReg srcL; member in struct:__anon26773::__anon26774::__anon26821
896 HReg srcL; member in struct:__anon26773::__anon26774::__anon26828
918 HReg srcL; member in struct:__anon26773::__anon26774::__anon26831
937 HReg srcL; member in struct:__anon26773::__anon26774::__anon26834
[all...]
H A Dguest_arm_toIR.c14504 IRTemp srcL = newTemp(Ity_I32); local
14508 assign(srcL, getIRegA(rN));
14510 mkexpr(srcL),
14534 IRTemp srcL = newTemp(Ity_I32); local
14538 assign(srcL, getIRegA(rN));
14540 mkexpr(srcL),
18412 IRTemp srcL = newTemp(Ity_I32); local
18416 assign(srcL, getIRegT(rN));
18418 mkexpr(srcL),
18441 IRTemp srcL local
[all...]

Completed in 284 milliseconds