Lines Matching refs:pStr1

72 sal_Int32 SAL_CALL IMPL_RTL_STRNAME( compare )( const IMPL_RTL_STRCODE* pStr1,  in IMPL_RTL_STRNAME()
76 while ( ((nRet = ((sal_Int32)(IMPL_RTL_USTRCODE(*pStr1)))- in IMPL_RTL_STRNAME()
80 pStr1++; in IMPL_RTL_STRNAME()
89 sal_Int32 SAL_CALL IMPL_RTL_STRNAME( compare_WithLength )( const IMPL_RTL_STRCODE* pStr1, in IMPL_RTL_STRNAME()
97 --pStr1; in IMPL_RTL_STRNAME()
99 while( (--nCount >= 0) && (*++pStr1 == *++pStr2) ); in IMPL_RTL_STRNAME()
102 nRet = ((sal_Int32)(IMPL_RTL_USTRCODE( *pStr1 ))) in IMPL_RTL_STRNAME()
110 sal_Int32 SAL_CALL IMPL_RTL_STRNAME( shortenedCompare_WithLength )( const IMPL_RTL_STRCODE* pStr1, in IMPL_RTL_STRNAME()
116 const IMPL_RTL_STRCODE* pStr1End = pStr1 + nStr1Len; in IMPL_RTL_STRNAME()
120 (pStr1 < pStr1End) && (pStr2 < pStr2End) ) in IMPL_RTL_STRNAME()
122 nRet = ((sal_Int32)(IMPL_RTL_USTRCODE( *pStr1 )))- in IMPL_RTL_STRNAME()
128 pStr1++; in IMPL_RTL_STRNAME()
139 sal_Int32 SAL_CALL IMPL_RTL_STRNAME( reverseCompare_WithLength )( const IMPL_RTL_STRCODE* pStr1, in IMPL_RTL_STRNAME()
144 const IMPL_RTL_STRCODE* pStr1Run = pStr1+nStr1Len; in IMPL_RTL_STRNAME()
147 while ( (pStr1 < pStr1Run) && (pStr2 < pStr2Run) ) in IMPL_RTL_STRNAME()
162 sal_Int32 SAL_CALL IMPL_RTL_STRNAME( compareIgnoreAsciiCase )( const IMPL_RTL_STRCODE* pStr1, in IMPL_RTL_STRNAME()
171 c1 = (sal_Int32)IMPL_RTL_USTRCODE( *pStr1 ); in IMPL_RTL_STRNAME()
181 pStr1++; in IMPL_RTL_STRNAME()
191 …nt32 SAL_CALL IMPL_RTL_STRNAME( compareIgnoreAsciiCase_WithLength )( const IMPL_RTL_STRCODE* pStr1, in IMPL_RTL_STRNAME()
196 const IMPL_RTL_STRCODE* pStr1End = pStr1 + nStr1Len; in IMPL_RTL_STRNAME()
201 while ( (pStr1 < pStr1End) && (pStr2 < pStr2End) ) in IMPL_RTL_STRNAME()
204 c1 = (sal_Int32)IMPL_RTL_USTRCODE( *pStr1 ); in IMPL_RTL_STRNAME()
214 pStr1++; in IMPL_RTL_STRNAME()
223 …CALL IMPL_RTL_STRNAME( shortenedCompareIgnoreAsciiCase_WithLength )( const IMPL_RTL_STRCODE* pStr1, in IMPL_RTL_STRNAME()
229 const IMPL_RTL_STRCODE* pStr1End = pStr1 + nStr1Len; in IMPL_RTL_STRNAME()
235 (pStr1 < pStr1End) && (pStr2 < pStr2End) ) in IMPL_RTL_STRNAME()
238 c1 = (sal_Int32)IMPL_RTL_USTRCODE( *pStr1 ); in IMPL_RTL_STRNAME()
249 pStr1++; in IMPL_RTL_STRNAME()