Home | History | Annotate | Download | only in EKA2

Lines Matching defs:asz

687 void SaveBmp(const TDesC& aName, const TAny* aData, TInt aLength, const TSize& aSz, TDisplayMode aMode)
690 s->Create(aSz, aMode);
700 void SaveBmp(const TDesC& aName, const TUint32* aData, const TSize& aSz)
703 s->Create(aSz, EColor64K);
706 for(TInt j = 0; j < aSz.iHeight; j++)
709 for(TInt i = 0; i < aSz.iWidth; i++)
1080 const TSize asz = iScreenRect.Size();
1083 pos.iX = asz.iWidth - pos.iX;
1084 pos.iY = asz.iHeight - pos.iY;
1093 pos.iX /= asz.iWidth;
1094 pos.iY /= asz.iHeight;
1107 const TSize asz = iScreenRect.Size();
1114 if((asz.iWidth * dh ) >> 16 <= asz.iHeight)
1116 rect.SetRect(TPoint(0, 0), TSize(asz.iWidth, (asz.iWidth * dh) >> 16));
1121 rect.SetRect(TPoint(0, 0), TSize((asz.iHeight * dw) >> 16, asz.iHeight));
1123 rect.Move((asz.iWidth - rect.Size().iWidth) >> 1, (asz.iHeight - rect.Size().iHeight) >> 1);