Home | History | Annotate | Download | only in EKA2

Lines Matching defs:asz

928 void SaveBmp(const TDesC& aName, const TAny* aData, TInt aLength, const TSize& aSz, TDisplayMode aMode)
931 s->Create(aSz, aMode);
941 void SaveBmp(const TDesC& aName, const TUint32* aData, const TSize& aSz)
944 s->Create(aSz, EColor64K);
947 for(TInt j = 0; j < aSz.iHeight; j++)
950 for(TInt i = 0; i < aSz.iWidth; i++)
1149 const TSize asz = iScreenRect.Size();
1152 pos.iX = asz.iWidth - pos.iX;
1153 pos.iY = asz.iHeight - pos.iY;
1162 pos.iX /= asz.iWidth;
1163 pos.iY /= asz.iHeight;
1176 const TSize asz = iScreenRect.Size();
1183 if((asz.iWidth * dh ) >> 16 <= asz.iHeight)
1185 rect.SetRect(TPoint(0, 0), TSize(asz.iWidth, (asz.iWidth * dh) >> 16));
1190 rect.SetRect(TPoint(0, 0), TSize((asz.iHeight * dw) >> 16, asz.iHeight));
1192 rect.Move((asz.iWidth - rect.Size().iWidth) >> 1, (asz.iHeight - rect.Size().iHeight) >> 1);