Lines Matching refs:sal_Int32

53     (sal_Int32) (SAL_STRING_INTERN_FLAG|SAL_STRING_STATIC_FLAG|1), /*sal_Int32    refCount; */
76 sal_Int32 rtl_ustr_indexOfAscii_WithLength( in rtl_ustr_indexOfAscii_WithLength()
77 sal_Unicode const * str, sal_Int32 len, in rtl_ustr_indexOfAscii_WithLength()
78 char const * subStr, sal_Int32 subLen) in rtl_ustr_indexOfAscii_WithLength()
81 sal_Int32 i; in rtl_ustr_indexOfAscii_WithLength()
93 sal_Int32 rtl_ustr_lastIndexOfAscii_WithLength( in rtl_ustr_lastIndexOfAscii_WithLength()
94 sal_Unicode const * str, sal_Int32 len, in rtl_ustr_lastIndexOfAscii_WithLength()
95 char const * subStr, sal_Int32 subLen) in rtl_ustr_lastIndexOfAscii_WithLength()
98 sal_Int32 i; in rtl_ustr_lastIndexOfAscii_WithLength()
110 sal_Int32 SAL_CALL rtl_ustr_valueOfFloat(sal_Unicode * pStr, float f) in rtl_ustr_valueOfFloat()
113 sal_Int32 nLen; in rtl_ustr_valueOfFloat()
125 sal_Int32 SAL_CALL rtl_ustr_valueOfDouble(sal_Unicode * pStr, double d) in rtl_ustr_valueOfDouble()
128 sal_Int32 nLen; in rtl_ustr_valueOfDouble()
155 sal_Int32 SAL_CALL rtl_ustr_ascii_compare( const sal_Unicode* pStr1, in rtl_ustr_ascii_compare()
158 sal_Int32 nRet; in rtl_ustr_ascii_compare()
159 while ( ((nRet = ((sal_Int32)(*pStr1))- in rtl_ustr_ascii_compare()
160 ((sal_Int32)((unsigned char)(*pStr2)))) == 0) && in rtl_ustr_ascii_compare()
172 sal_Int32 SAL_CALL rtl_ustr_ascii_compare_WithLength( const sal_Unicode* pStr1, in rtl_ustr_ascii_compare_WithLength()
173 sal_Int32 nStr1Len, in rtl_ustr_ascii_compare_WithLength()
176 sal_Int32 nRet = 0; in rtl_ustr_ascii_compare_WithLength()
177 while( ((nRet = (nStr1Len ? (sal_Int32)(*pStr1) : 0)- in rtl_ustr_ascii_compare_WithLength()
178 ((sal_Int32)((unsigned char)(*pStr2)))) == 0) && in rtl_ustr_ascii_compare_WithLength()
191 sal_Int32 SAL_CALL rtl_ustr_ascii_shortenedCompare_WithLength( const sal_Unicode* pStr1, in rtl_ustr_ascii_shortenedCompare_WithLength()
192 sal_Int32 nStr1Len, in rtl_ustr_ascii_shortenedCompare_WithLength()
194 sal_Int32 nShortenedLength ) in rtl_ustr_ascii_shortenedCompare_WithLength()
197 sal_Int32 nRet; in rtl_ustr_ascii_shortenedCompare_WithLength()
204 nRet = ((sal_Int32)*pStr1)- in rtl_ustr_ascii_shortenedCompare_WithLength()
205 ((sal_Int32)(unsigned char)*pStr2); in rtl_ustr_ascii_shortenedCompare_WithLength()
234 sal_Int32 SAL_CALL rtl_ustr_asciil_reverseCompare_WithLength( const sal_Unicode* pStr1, in rtl_ustr_asciil_reverseCompare_WithLength()
235 sal_Int32 nStr1Len, in rtl_ustr_asciil_reverseCompare_WithLength()
237 sal_Int32 nStr2Len ) in rtl_ustr_asciil_reverseCompare_WithLength()
241 sal_Int32 nRet; in rtl_ustr_asciil_reverseCompare_WithLength()
246 nRet = ((sal_Int32)*pStr1Run)-((sal_Int32)*pStr2Run); in rtl_ustr_asciil_reverseCompare_WithLength()
258 sal_Int32 nStrLen ) in rtl_ustr_asciil_reverseEquals_WithLength()
275 sal_Int32 SAL_CALL rtl_ustr_ascii_compareIgnoreAsciiCase( const sal_Unicode* pStr1, in rtl_ustr_ascii_compareIgnoreAsciiCase()
278 sal_Int32 nRet; in rtl_ustr_ascii_compareIgnoreAsciiCase()
279 sal_Int32 c1; in rtl_ustr_ascii_compareIgnoreAsciiCase()
280 sal_Int32 c2; in rtl_ustr_ascii_compareIgnoreAsciiCase()
284 c1 = (sal_Int32)*pStr1; in rtl_ustr_ascii_compareIgnoreAsciiCase()
285 c2 = (sal_Int32)((unsigned char)*pStr2); in rtl_ustr_ascii_compareIgnoreAsciiCase()
304 sal_Int32 SAL_CALL rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength( const sal_Unicode* pStr1, in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
305 sal_Int32 nStr1Len, in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
308 sal_Int32 nRet; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
309 sal_Int32 c1; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
310 sal_Int32 c2; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
317 c1 = (sal_Int32)*pStr1; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
318 c2 = (sal_Int32)((unsigned char)*pStr2); in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
336 sal_Int32 rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths( in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
337 sal_Unicode const * first, sal_Int32 firstLen, in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
338 char const * second, sal_Int32 secondLen) in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
340 sal_Int32 i; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
341 sal_Int32 len = firstLen < secondLen ? firstLen : secondLen; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
343 sal_Int32 c1 = *first++; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
344 sal_Int32 c2 = (unsigned char) *second++; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
345 sal_Int32 d; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
362 sal_Int32 SAL_CALL rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength( const sal_Unicode* pS… in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
363 sal_Int32 nStr1Len, in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
365sal_Int32 nShortenedLength ) in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
368 sal_Int32 nRet; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
369 sal_Int32 c1; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
370 sal_Int32 c2; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
378 c1 = (sal_Int32)*pStr1; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
379 c2 = (sal_Int32)((unsigned char)*pStr2); in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
416 sal_Int32 nLen; in rtl_uString_newFromAscii()
458 sal_Int32 codePointCount) in rtl_uString_newFromCodePoints()
460 sal_Int32 n; in rtl_uString_newFromCodePoints()
461 sal_Int32 i; in rtl_uString_newFromCodePoints()
508 static int rtl_ImplGetFastUTF8UnicodeLen( const sal_Char* pStr, sal_Int32 nLen ) in rtl_ImplGetFastUTF8UnicodeLen()
545 sal_Int32 nLen, in rtl_string2UString_status()
720 sal_Int32 nLen, in rtl_string2UString()
801 sal_Int32 len, in rtl_uString_internConvert()
880 rtl_uString const * string, sal_Int32 * indexUtf16, in rtl_uString_iterateCodePoints()
881 sal_Int32 incrementCodePoints) in rtl_uString_iterateCodePoints()
883 sal_Int32 n; in rtl_uString_iterateCodePoints()
924 rtl_uString ** target, char const * source, sal_Int32 length, in rtl_convertStringToUString()