Home | History | Annotate | Download | only in EKA2

Lines Matching defs:asz

474 void SaveBmp(const TDesC& aName, const TAny* aData, TInt aLength, const TSize& aSz, TDisplayMode aMode)
477 s->Create(aSz, aMode);
487 void SaveBmp(const TDesC& aName, const TUint32* aData, const TSize& aSz)
490 s->Create(aSz, EColor64K);
493 for(TInt j = 0; j < aSz.iHeight; j++)
496 for(TInt i = 0; i < aSz.iWidth; i++)
685 const TSize asz = iScreenRect.Size();
688 pos.iX = asz.iWidth - pos.iX;
689 pos.iY = asz.iHeight - pos.iY;
698 pos.iX /= asz.iWidth;
699 pos.iY /= asz.iHeight;
712 const TSize asz = iScreenRect.Size();
719 if((asz.iWidth * dh ) >> 16 <= asz.iHeight)
721 rect.SetRect(TPoint(0, 0), TSize(asz.iWidth, (asz.iWidth * dh) >> 16));
726 rect.SetRect(TPoint(0, 0), TSize((asz.iHeight * dw) >> 16, asz.iHeight));
728 rect.Move((asz.iWidth - rect.Size().iWidth) >> 1, (asz.iHeight - rect.Size().iHeight) >> 1);