Update contrib.
1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // implementation for d32comp.h
21 const TInt KCompareBufSize=0x200; // 0.5K
25 TInt Comp::Compare(TReal32 aLeft,TReal32 aRight) __SOFTFP
27 return aLeft<aRight ? -1 : aLeft!=aRight;
30 TInt Comp::Compare(TReal64 aLeft,TReal64 aRight) __SOFTFP
32 return aLeft<aRight ? -1 : aLeft!=aRight;
35 TInt Comp::Compare(const TInt64& aLeft,const TInt64& aRight)
37 return aLeft<aRight ? -1 : aLeft!=aRight;
40 TInt Comp::Compare8L(MStreamBuf& aBufL,MStreamBuf& aBufR,TInt aSize,const TTextOps& aTextOp)
42 const TInt KCompareBufLength=KCompareBufSize/sizeof(TText8);
43 RReadStream left(&aBufL);
44 RReadStream right(&aBufR);
45 TText8 bufL[KCompareBufLength];
46 TText8 bufR[KCompareBufLength];
47 TInt read=KCompareBufLength;
52 left.ReadL(bufL,read);
53 right.ReadL(bufR,read);
54 TInt r=aTextOp.Compare(bufL,read,bufR,read);
57 aSize-=KCompareBufLength;
62 TInt Comp::Compare8L(MStreamBuf& aBuf,const TText8* aPtr,TInt aSize,const TTextOps& aTextOp)
64 const TInt KCompareBufLength=KCompareBufSize/sizeof(TText8);
65 RReadStream strm(&aBuf);
66 TText8 buf[KCompareBufLength];
67 TInt read=KCompareBufLength;
73 TInt r=aTextOp.Compare(buf,read,aPtr,read);
76 aPtr+=KCompareBufLength;
77 aSize-=KCompareBufLength;
82 TInt Comp::Compare8L(MStreamBuf& aBuf,TInt aSize,const TDesC8& aDes,const TTextOps& aTextOp)
84 const TText8* ptr=aDes.Ptr();
85 TInt size=aDes.Length();
86 TInt r=Compare8L(aBuf,ptr,Min(size,aSize),aTextOp);
87 return r ? r : aSize-size;
90 TInt Comp::Compare16L(MStreamBuf& aBufL,MStreamBuf& aBufR,TInt aSize,const TTextOps& aTextOp)
93 const TInt KCompareBufLength=KCompareBufSize/sizeof(TText16);
94 RReadStream left(&aBufL);
95 RReadStream right(&aBufR);
96 TText16 bufL[KCompareBufLength];
97 TText16 bufR[KCompareBufLength];
98 TInt read=KCompareBufLength;
103 left.ReadL(bufL,read);
104 right.ReadL(bufR,read);
105 TInt r=aTextOp.Order(bufL,read,bufR,read);
108 aSize-=KCompareBufLength;
113 TInt Comp::Compare16L(MStreamBuf& aBuf,const TText16* aPtr,TInt aSize,const TTextOps& aTextOp)
116 const TInt KCompareBufLength=KCompareBufSize/sizeof(TText16);
117 RReadStream strm(&aBuf);
118 TText16 buf[KCompareBufLength];
119 TInt read=KCompareBufLength;
124 strm.ReadL(buf,read);
125 TInt r=aTextOp.Order(buf,read,aPtr,read);
128 aPtr+=KCompareBufLength;
129 aSize-=KCompareBufLength;
134 static TInt DoCompare16L(MStreamBuf& aBuf,const TText16* aPtr,TInt aLen,const TTextOps& aTextOp)
136 const TInt KCompareBufLength=KCompareBufSize/sizeof(TText16);
137 RReadStream strm(&aBuf);
138 TText16 buf[KCompareBufLength];
139 TInt read=KCompareBufLength;
144 strm.ReadL(buf,read);
145 TInt r=aTextOp.Compare(buf,read,aPtr,read);
148 aPtr+=KCompareBufLength;
149 aLen-=KCompareBufLength;
154 TInt Comp::Compare16L(MStreamBuf& aBuf,TInt aSize,const TDesC16& aDes,const TTextOps& aTextOp)
156 const TText16* ptr=aDes.Ptr();
157 TInt size=aDes.Length()<<1;
158 TInt r=::DoCompare16L(aBuf,ptr,Min(size,aSize)>>1,aTextOp);
159 return r ? r : aSize-size;