/external/neven/Embedded/common/src/b_BasicEm/ |
D | Memory.c | 60 const uint16* srcL = ( uint16* )srcA; in bbs_memcpy16() local 64 *dstL++ = *srcL++; in bbs_memcpy16() 79 const uint16* srcL = ( uint16* )srcA; 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() 88 srcL += 4; in bbs_memcpy16() 93 *dstL++ = *srcL++; in bbs_memcpy16() 110 const uint32* srcL = ( uint32* )srcA; in bbs_memcpy32() local [all …]
|
D | String.c | 42 const char* srcL = srcA; in bbs_strcpy() local 44 while( ( *dstL++ = *srcL++ ) != 0 ); in bbs_strcpy() 65 const char* srcL = srcA; in bbs_strcat() local 68 while( ( *dstL++ = *srcL++ ) != 0 ); in bbs_strcat()
|
D | Functions.c | 135 const uint32* srcL = ( uint32* )ptrA; in bbs_memWrite32Arr() local 141 memPtrA += bbs_memWrite32( srcL++, memPtrA ); in bbs_memWrite32Arr() 175 const uint16* srcL = ( uint16* )ptrA; in bbs_memWrite16Arr() local 181 memPtrA += bbs_memWrite16( srcL++, memPtrA ); in bbs_memWrite16Arr()
|
/external/neven/Embedded/common/src/b_ImageEm/ |
D | Functions.c | 50 const uint8* srcL = srcPtrA; in bim_downscaleBy2() local 58 *dstL = ( ( uint32 )srcL[ 0 ] + srcL[ 1 ] + srcL[ wsL ] + srcL[ wsL + 1 ] + 2 ) >> 2; in bim_downscaleBy2() 60 srcL += 2; in bim_downscaleBy2() 62 srcL += ( wsL - w1L ) * 2; in bim_downscaleBy2() 85 const uint8* srcL = srcImagePtrA; in bim_filterWarpInterpolation() local 233 bim_downscaleBy2( bufPtrA->arrPtrE, srcL + yMinL * w0L + xMinL, w0L, wEffL, hEffL ); in bim_filterWarpInterpolation() 250 srcL = bufPtrA->arrPtrE; in bim_filterWarpInterpolation() 265 srcL = bufPtrA->arrPtrE; in bim_filterWarpInterpolation() 315 …uint32 v1L = ( ( uint32 )srcL[ idxL ] * xf1L + ( uint32 )srcL[ idxL + 1 ] * xf2L + 0x0… in bim_filterWarpInterpolation() 316 …uint32 v2L = ( ( uint32 )srcL[ idxL + w1L ] * xf1L + ( uint32 )srcL[ idxL + w1L + 1 ] * xf2L + 0x0… in bim_filterWarpInterpolation() [all …]
|
D | Flt16Image.c | 476 const struct bbs_Complex* srcL; in bim_Flt16Image_importReal() local 480 srcL = srcPtrA->arrE.arrPtrE; in bim_Flt16Image_importReal() 483 *dstL++ = ( *srcL++ ).realE; in bim_Flt16Image_importReal() 495 const struct bbs_Complex* srcL; in bim_Flt16Image_importImag() local 499 srcL = srcPtrA->arrE.arrPtrE; in bim_Flt16Image_importImag() 502 *dstL++ = ( *srcL++ ).imagE; in bim_Flt16Image_importImag() 514 const struct bbs_Complex* srcL; in bim_Flt16Image_importAbs() local 518 srcL = srcPtrA->arrE.arrPtrE; in bim_Flt16Image_importAbs() 521 *dstL++ = bbs_sqrt32( ( int32 )srcL->realE * srcL->realE + ( int32 )srcL->imagE * srcL->imagE ); in bim_Flt16Image_importAbs() 522 srcL++; in bim_Flt16Image_importAbs() [all …]
|
D | UInt16BytePyrImage.c | 358 uint16* srcL = dstPtrA->arrE.arrPtrE; in bim_UInt16BytePyrImage_recompute() local 359 uint16* dstL = srcL + ( heightL * halfWidthL ); in bim_UInt16BytePyrImage_recompute() 367 tmpL = ( ( *srcL & 0x0FF ) + ( *srcL >> 8 ) + ( *( srcL + halfWidthL ) & 0x0FF ) + in bim_UInt16BytePyrImage_recompute() 368 ( *( srcL + halfWidthL ) >> 8 ) + 2 ) >> 2; in bim_UInt16BytePyrImage_recompute() 374 srcL++; in bim_UInt16BytePyrImage_recompute() 376 tmpL = ( ( *srcL & 0x0FF ) + ( *srcL >> 8 ) + ( *( srcL + halfWidthL ) & 0x0FF ) + in bim_UInt16BytePyrImage_recompute() 377 ( *( srcL + halfWidthL ) >> 8 ) + 2 ) >> 2; in bim_UInt16BytePyrImage_recompute() 383 srcL++; in bim_UInt16BytePyrImage_recompute() 386 srcL += halfWidthL; in bim_UInt16BytePyrImage_recompute()
|
D | UInt8PyramidalImage.c | 352 uint8 *srcL, *dstL; in bim_UInt8PyramidalImage_recompute() local 357 srcL = dstPtrA->arrE.arrPtrE; in bim_UInt8PyramidalImage_recompute() 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() 367 srcL += 2; in bim_UInt8PyramidalImage_recompute() 369 srcL += widthL; in bim_UInt8PyramidalImage_recompute()
|
D | UInt16ByteImage.c | 509 uint16 srcL = *( ulPtrL + khL ); in bim_UInt16ByteImage_warp() local 510 valL = f1xL * ( srcL & 0x00FF ) + f2xL * ( srcL >> 8 ); in bim_UInt16ByteImage_warp() 537 uint16 srcL = *( llPtrL + khL ); in bim_UInt16ByteImage_warp() local 538 valL = f1xL * ( srcL & 0x00FF ) + f2xL * ( srcL >> 8 ); in bim_UInt16ByteImage_warp()
|
D | APhImage.c | 442 const struct bbs_Complex* srcL; in bim_APhImage_importComplex() local 445 srcL = srcPtrA->arrE.arrPtrE; in bim_APhImage_importComplex() 448 bbs_APh_importComplex( dstL++, srcL++ ); in bim_APhImage_importComplex()
|
D | ComplexImage.c | 466 const struct bbs_APh* srcL; in bim_ComplexImage_importAPh() local 469 srcL = srcPtrA->arrE.arrPtrE; in bim_ComplexImage_importAPh() 472 bbs_Complex_importAPh( dstL++, srcL++ ); in bim_ComplexImage_importAPh()
|
/external/valgrind/VEX/priv/ |
D | host_ppc_defs.h | 554 HReg srcL; member 565 HReg srcL; member 573 HReg srcL; member 582 HReg srcL; member 596 HReg srcL; member 605 HReg srcL; member 698 HReg srcL; member 750 HReg srcL; member 775 HReg srcL; member 781 HReg srcL; member [all …]
|
D | host_ppc_defs.c | 714 HReg srcL, PPCRH* srcR ) { in PPCInstr_Alu() argument 719 i->Pin.Alu.srcL = srcL; in PPCInstr_Alu() 724 HReg dst, HReg srcL, PPCRH* srcR ) { in PPCInstr_Shft() argument 730 i->Pin.Shft.srcL = srcL; in PPCInstr_Shft() 735 HReg dst, HReg srcL, HReg srcR ) { in PPCInstr_AddSubC() argument 741 i->Pin.AddSubC.srcL = srcL; in PPCInstr_AddSubC() 746 UInt crfD, HReg srcL, PPCRH* srcR ) { in PPCInstr_Cmp() argument 752 i->Pin.Cmp.srcL = srcL; in PPCInstr_Cmp() 765 HReg dst, HReg srcL, HReg srcR ) { in PPCInstr_MulL() argument 772 i->Pin.MulL.srcL = srcL; in PPCInstr_MulL() [all …]
|
D | host_tilegx_defs.c | 194 HReg r_srcL = instr->GXin.Alu.srcL; in ppTILEGXInstr() 207 HReg r_srcL = instr->GXin.Shft.srcL; in ppTILEGXInstr() 229 ppHRegTILEGX(instr->GXin.Cmp.srcL); in ppTILEGXInstr() 239 ppHRegTILEGX(instr->GXin.CmpI.srcL); in ppTILEGXInstr() 251 ppHRegTILEGX(instr->GXin.Mul.srcL); in ppTILEGXInstr() 259 ppHRegTILEGX(instr->GXin.Mul.srcL); in ppTILEGXInstr() 364 ppHRegTILEGX(instr->GXin.MovCond.srcL); in ppTILEGXInstr() 691 TILEGXInstr *TILEGXInstr_Alu ( TILEGXAluOp op, HReg dst, HReg srcL, in TILEGXInstr_Alu() argument 698 i->GXin.Alu.srcL = srcL; in TILEGXInstr_Alu() 703 TILEGXInstr *TILEGXInstr_Shft ( TILEGXShftOp op, Bool sz32, HReg dst, HReg srcL, in TILEGXInstr_Shft() argument [all …]
|
D | host_mips_defs.c | 768 MIPSInstr *MIPSInstr_Alu(MIPSAluOp op, HReg dst, HReg srcL, MIPSRH * srcR) in MIPSInstr_Alu() argument 774 i->Min.Alu.srcL = srcL; in MIPSInstr_Alu() 779 MIPSInstr *MIPSInstr_Shft(MIPSShftOp op, Bool sz32, HReg dst, HReg srcL, in MIPSInstr_Shft() argument 787 i->Min.Shft.srcL = srcL; in MIPSInstr_Shft() 802 MIPSInstr *MIPSInstr_Cmp(Bool syned, Bool sz32, HReg dst, HReg srcL, HReg srcR, in MIPSInstr_Cmp() argument 810 i->Min.Cmp.srcL = srcL; in MIPSInstr_Cmp() 817 MIPSInstr *MIPSInstr_Mul(Bool syned, Bool wid, Bool sz32, HReg dst, HReg srcL, in MIPSInstr_Mul() argument 826 i->Min.Mul.srcL = srcL; in MIPSInstr_Mul() 832 MIPSInstr *MIPSInstr_Msub(Bool syned, HReg srcL, HReg srcR) in MIPSInstr_Msub() argument 839 i->Min.Macc.srcL = srcL; in MIPSInstr_Msub() [all …]
|
D | host_mips_defs.h | 395 HReg srcL; member 406 HReg srcL; member 420 HReg srcL; member 430 HReg srcL; member 436 HReg srcL; member 528 HReg srcL; member 541 HReg srcL; member 573 HReg srcL; member 646 extern MIPSInstr *MIPSInstr_FpBinary(MIPSFpOp op, HReg dst, HReg srcL, 651 extern MIPSInstr *MIPSInstr_FpCompare(MIPSFpOp op, HReg dst, HReg srcL, [all …]
|
D | host_tilegx_defs.h | 332 HReg srcL; member 361 HReg srcL; member 375 HReg srcL; member 383 HReg srcL; member 392 HReg srcL; member 467 HReg srcL; member 517 extern TILEGXInstr *TILEGXInstr_MovCond ( HReg dst, HReg srcL, TILEGXRH * src,
|
D | host_x86_defs.h | 544 HReg srcL; member 589 HReg srcL; member 689 extern X86Instr* X86Instr_FpBinary ( X86FpOp op, HReg srcL, HReg srcR, HReg dst ); 696 extern X86Instr* X86Instr_FpCmp ( HReg srcL, HReg srcR, HReg dst );
|
D | host_x86_defs.c | 759 X86Instr* X86Instr_FpBinary ( X86FpOp op, HReg srcL, HReg srcR, HReg dst ) { in X86Instr_FpBinary() argument 763 i->Xin.FpBinary.srcL = srcL; in X86Instr_FpBinary() 816 X86Instr* X86Instr_FpCmp ( HReg srcL, HReg srcR, HReg dst ) { in X86Instr_FpCmp() argument 819 i->Xin.FpCmp.srcL = srcL; in X86Instr_FpCmp() 1077 ppHRegX86(i->Xin.FpBinary.srcL); in ppX86Instr() 1134 ppHRegX86(i->Xin.FpCmp.srcL); in ppX86Instr() 1374 addHRegUse(u, HRmRead, i->Xin.FpBinary.srcL); in getRegUsage_X86Instr() 1403 addHRegUse(u, HRmRead, i->Xin.FpCmp.srcL); in getRegUsage_X86Instr() 1581 mapReg(m, &i->Xin.FpBinary.srcL); in mapRegs_X86Instr() 1607 mapReg(m, &i->Xin.FpCmp.srcL); in mapRegs_X86Instr() [all …]
|
D | host_amd64_defs.h | 614 HReg srcL; /* xmm */ member 749 extern AMD64Instr* AMD64Instr_SseUComIS ( Int sz, HReg srcL, HReg srcR, HReg dst );
|
D | host_amd64_defs.c | 861 AMD64Instr* AMD64Instr_SseUComIS ( Int sz, HReg srcL, HReg srcR, HReg dst ) { in AMD64Instr_SseUComIS() argument 865 i->Ain.SseUComIS.srcL = srcL; in AMD64Instr_SseUComIS() 1228 ppHRegAMD64(i->Ain.SseUComIS.srcL); in ppAMD64Instr() 1548 addHRegUse(u, HRmRead, i->Ain.SseUComIS.srcL); in getRegUsage_AMD64Instr() 1782 mapReg(m, &i->Ain.SseUComIS.srcL); in mapRegs_AMD64Instr() 3352 rexAMode_R_enc_enc( vregEnc3210(i->Ain.SseUComIS.srcL), in emit_AMD64Instr() 3356 p = doAMode_R_enc_enc(p, vregEnc3210(i->Ain.SseUComIS.srcL), in emit_AMD64Instr()
|
D | host_x86_isel.c | 899 HReg srcL = iselDblExpr(env, triop->arg2); in iselIntExpr_R_wrk() local 906 srcL,srcR,junk in iselIntExpr_R_wrk() 3083 HReg srcL = iselDblExpr(env, triop->arg2); in iselDblExpr_wrk() local 3087 addInstr(env, X86Instr_FpBinary(fpop,srcL,srcR,res)); in iselDblExpr_wrk()
|
D | host_ppc_isel.c | 1610 HReg srcL = iselWordExpr_R(env, e->Iex.Binop.arg1, IEndianess); in iselWordExpr_R_wrk() local 1614 7/*cr*/, srcL, srcR)); in iselWordExpr_R_wrk() 1625 HReg srcL = iselWordExpr_R(env, e->Iex.Binop.arg1, IEndianess); in iselWordExpr_R_wrk() local 1630 7/*cr*/, srcL, srcR)); in iselWordExpr_R_wrk()
|
/external/neven/Embedded/common/src/b_BitFeatureEm/ |
D | Scanner.c | 154 const uint8* srcL = ( uint8* )imagePtrA; in bbf_Scanner_copyImage() local 162 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8; in bbf_Scanner_copyImage() 163 srcL += 2; in bbf_Scanner_copyImage() 167 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++; in bbf_Scanner_copyImage() 173 const uint8* srcL = ( uint8* )imagePtrA + roiPtrA->y1E * imageWidthA + roiPtrA->x1E; in bbf_Scanner_copyImage() local 193 *dstL++ = ( uint16 )srcL[ 0 ] | ( uint16 )srcL[ 1 ] << 8; in bbf_Scanner_copyImage() 194 srcL += 2; in bbf_Scanner_copyImage() 198 if( ptrA->workWidthE & 1 ) *dstL++ = *srcL++; in bbf_Scanner_copyImage() 200 srcL += imageWidthA - ptrA->workWidthE; in bbf_Scanner_copyImage() 865 uint32* srcL = ( uint32* )ptrA->bitImageE.arrE.arrPtrE + rowL * sizeL; in bbf_Scanner_next() local [all …]
|
D | LocalScanner.c | 299 const uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + ybL * ptrA->bitImageE.widthE + xbL; in bbf_LocalScanner_initPatchBuffer() local 301 for( iL = 0; iL < wsrWidthL; iL++ ) dstL[ iL ] = srcL[ iL ] >> yoL; in bbf_LocalScanner_initPatchBuffer() 700 uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + rowL * widthL + 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() 765 uint32* srcL = ptrA->bitImageE.arrE.arrPtrE + ( rowL - 1 ) * imgWidthL + imgOffsL; in bbf_LocalScanner_goToXY() local 766 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = srcL[ iL ] >> offL; in bbf_LocalScanner_goToXY()
|
/external/neven/Embedded/common/src/b_TensorEm/ |
D | Flt16Vec.c | 102 const int16* srcL = ptrA->arrE.arrPtrE; in bts_Flt16Vec_avg() local 105 sumL += srcL[ iL ]; in bts_Flt16Vec_avg() 124 const int16* srcL = ptrA->arrE.arrPtrE; in bts_Flt16Vec_maxAbs() local 127 uint16 vL = srcL[ iL ] > 0 ? srcL[ iL ] : -srcL[ iL ]; in bts_Flt16Vec_maxAbs()
|