Lines Matching refs:sal_Int32

30 static sal_Bool ImplDbgCheckAsciiStr( const sal_Char* pAsciiStr, sal_Int32 nLen )  in ImplDbgCheckAsciiStr()
48 sal_Int32 nLen ) in ImplCopyAsciiStr()
64 static sal_Int32 ImplStringCompareAscii( const sal_Unicode* pStr1, const sal_Char* pStr2 ) in ImplStringCompareAscii()
66 sal_Int32 nRet; in ImplStringCompareAscii()
67 while ( ((nRet = ((sal_Int32)*pStr1)-((sal_Int32)((unsigned char)*pStr2))) == 0) && in ImplStringCompareAscii()
79 static sal_Int32 ImplStringCompareAscii( const sal_Unicode* pStr1, const sal_Char* pStr2, in ImplStringCompareAscii()
82 sal_Int32 nRet = 0; in ImplStringCompareAscii()
84 ((nRet = ((sal_Int32)*pStr1)-((sal_Int32)((unsigned char)*pStr2))) == 0) && in ImplStringCompareAscii()
97 static sal_Int32 ImplStringCompareWithoutZeroAscii( const sal_Unicode* pStr1, const sal_Char* pStr2, in ImplStringCompareWithoutZeroAscii()
100 sal_Int32 nRet = 0; in ImplStringCompareWithoutZeroAscii()
102 ((nRet = ((sal_Int32)*pStr1)-((sal_Int32)((unsigned char)*pStr2))) == 0) ) in ImplStringCompareWithoutZeroAscii()
114 static sal_Int32 ImplStringICompareAscii( const sal_Unicode* pStr1, const sal_Char* pStr2 ) in ImplStringICompareAscii()
116 sal_Int32 nRet; in ImplStringICompareAscii()
128 nRet = ((sal_Int32)c1)-((sal_Int32)((unsigned char)c2)); in ImplStringICompareAscii()
142 static sal_Int32 ImplStringICompareAscii( const sal_Unicode* pStr1, const sal_Char* pStr2, in ImplStringICompareAscii()
145 sal_Int32 nRet = 0; in ImplStringICompareAscii()
160 nRet = ((sal_Int32)c1)-((sal_Int32)((unsigned char)c2)); in ImplStringICompareAscii()
296 sal_Int32 nCopyLen = ImplStringLen( pAsciiStr ); in AppendAscii()
343 sal_Int32 nCopyLen = ImplGetCopyLen( mpData->mnLen, nLen ); in AppendAscii()
371 sal_Int32 nCopyLen = ImplStringLen( pAsciiStr ); in InsertAscii()
441 sal_Int32 n = ImplGetCopyLen( mpData->mnLen-nCount, nStrLen ); in ReplaceAscii()
469 sal_Int32 nCompare = ImplStringCompareAscii( mpData->maStr, pAsciiStr, nLen ); in CompareToAscii()
490 sal_Int32 nCompare = ImplStringICompareAscii( mpData->maStr, pAsciiStr, nLen ); in CompareIgnoreCaseToAscii()
563 sal_Int32 nLen = mpData->mnLen; in SearchAscii()