/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 | 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()
|
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()
|
/external/valgrind/main/VEX/priv/ |
D | host_ppc_defs.h | 516 HReg srcL; member 527 HReg srcL; member 535 HReg srcL; member 544 HReg srcL; member 558 HReg srcL; member 567 HReg srcL; member 642 HReg srcL; member 693 HReg srcL; member 718 HReg srcL; member 724 HReg srcL; member [all …]
|
D | host_ppc_defs.c | 743 HReg srcL, PPCRH* srcR ) { in PPCInstr_Alu() argument 748 i->Pin.Alu.srcL = srcL; in PPCInstr_Alu() 753 HReg dst, HReg srcL, PPCRH* srcR ) { in PPCInstr_Shft() argument 759 i->Pin.Shft.srcL = srcL; in PPCInstr_Shft() 764 HReg dst, HReg srcL, HReg srcR ) { in PPCInstr_AddSubC() argument 770 i->Pin.AddSubC.srcL = srcL; in PPCInstr_AddSubC() 775 UInt crfD, HReg srcL, PPCRH* srcR ) { in PPCInstr_Cmp() argument 781 i->Pin.Cmp.srcL = srcL; in PPCInstr_Cmp() 794 HReg dst, HReg srcL, HReg srcR ) { in PPCInstr_MulL() argument 801 i->Pin.MulL.srcL = srcL; in PPCInstr_MulL() [all …]
|
D | host_x86_defs.h | 516 HReg srcL; member 561 HReg srcL; member 647 extern X86Instr* X86Instr_FpBinary ( X86FpOp op, HReg srcL, HReg srcR, HReg dst ); 654 extern X86Instr* X86Instr_FpCmp ( HReg srcL, HReg srcR, HReg dst );
|
D | host_x86_defs.c | 735 X86Instr* X86Instr_FpBinary ( X86FpOp op, HReg srcL, HReg srcR, HReg dst ) { in X86Instr_FpBinary() argument 739 i->Xin.FpBinary.srcL = srcL; in X86Instr_FpBinary() 792 X86Instr* X86Instr_FpCmp ( HReg srcL, HReg srcR, HReg dst ) { in X86Instr_FpCmp() argument 795 i->Xin.FpCmp.srcL = srcL; in X86Instr_FpCmp() 1028 ppHRegX86(i->Xin.FpBinary.srcL); in ppX86Instr() 1085 ppHRegX86(i->Xin.FpCmp.srcL); in ppX86Instr() 1310 addHRegUse(u, HRmRead, i->Xin.FpBinary.srcL); in getRegUsage_X86Instr() 1339 addHRegUse(u, HRmRead, i->Xin.FpCmp.srcL); in getRegUsage_X86Instr() 1500 mapReg(m, &i->Xin.FpBinary.srcL); in mapRegs_X86Instr() 1526 mapReg(m, &i->Xin.FpCmp.srcL); in mapRegs_X86Instr() [all …]
|
D | host_amd64_defs.h | 599 HReg srcL; /* xmm */ member 721 extern AMD64Instr* AMD64Instr_SseUComIS ( Int sz, HReg srcL, HReg srcR, HReg dst );
|
D | host_amd64_defs.c | 932 AMD64Instr* AMD64Instr_SseUComIS ( Int sz, HReg srcL, HReg srcR, HReg dst ) { in AMD64Instr_SseUComIS() argument 936 i->Ain.SseUComIS.srcL = srcL; in AMD64Instr_SseUComIS() 1311 ppHRegAMD64(i->Ain.SseUComIS.srcL); in ppAMD64Instr() 1631 addHRegUse(u, HRmRead, i->Ain.SseUComIS.srcL); in getRegUsage_AMD64Instr() 1856 mapReg(m, &i->Ain.SseUComIS.srcL); in mapRegs_AMD64Instr() 3352 rexAMode_R( vreg2ireg(i->Ain.SseUComIS.srcL), in emit_AMD64Instr() 3356 p = doAMode_R(p, vreg2ireg(i->Ain.SseUComIS.srcL), in emit_AMD64Instr()
|
D | host_ppc_isel.c | 1367 HReg srcL = iselWordExpr_R(env, e->Iex.Binop.arg1); in iselWordExpr_R_wrk() local 1370 7/*cr*/, srcL, srcR)); in iselWordExpr_R_wrk() 1381 HReg srcL = iselWordExpr_R(env, e->Iex.Binop.arg1); in iselWordExpr_R_wrk() local 1385 7/*cr*/, srcL, srcR)); in iselWordExpr_R_wrk()
|
D | host_x86_isel.c | 781 HReg srcL = iselDblExpr(env, e->Iex.Triop.arg2); in iselIntExpr_R_wrk() local 788 srcL,srcR,junk in iselIntExpr_R_wrk() 2959 HReg srcL = iselDblExpr(env, e->Iex.Triop.arg2); in iselDblExpr_wrk() local 2963 addInstr(env, X86Instr_FpBinary(fpop,srcL,srcR,res)); in iselDblExpr_wrk()
|
D | guest_arm_toIR.c | 13919 IRTemp srcL = newTemp(Ity_I32); in disInstr_ARM_WRK() local 13923 assign(srcL, getIRegA(rN)); in disInstr_ARM_WRK() 13925 mkexpr(srcL), in disInstr_ARM_WRK() 13949 IRTemp srcL = newTemp(Ity_I32); in disInstr_ARM_WRK() local 13953 assign(srcL, getIRegA(rN)); in disInstr_ARM_WRK() 13955 mkexpr(srcL), in disInstr_ARM_WRK() 17759 IRTemp srcL = newTemp(Ity_I32); in disInstr_THUMB_WRK() local 17763 assign(srcL, getIRegT(rN)); in disInstr_THUMB_WRK() 17765 mkexpr(srcL), in disInstr_THUMB_WRK() 17788 IRTemp srcL = newTemp(Ity_I32); in disInstr_THUMB_WRK() local [all …]
|
/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()
|