Lines Matching refs:c2

280     sal_Int32   c2;  in rtl_ustr_ascii_compareIgnoreAsciiCase()  local
285 c2 = (sal_Int32)((unsigned char)*pStr2); in rtl_ustr_ascii_compareIgnoreAsciiCase()
288 if ( (c2 >= 65) && (c2 <= 90) ) in rtl_ustr_ascii_compareIgnoreAsciiCase()
289 c2 += 32; in rtl_ustr_ascii_compareIgnoreAsciiCase()
290 nRet = c1-c2; in rtl_ustr_ascii_compareIgnoreAsciiCase()
297 while ( c2 ); in rtl_ustr_ascii_compareIgnoreAsciiCase()
310 sal_Int32 c2; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength() local
318 c2 = (sal_Int32)((unsigned char)*pStr2); in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
321 if ( (c2 >= 65) && (c2 <= 90) ) in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
322 c2 += 32; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
323 nRet = c1-c2; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
331 while( c2 ); in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
344 sal_Int32 c2 = (unsigned char) *second++; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths() local
349 if (c2 >= 65 && c2 <= 90) { in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
350 c2 += 32; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
352 d = c1 - c2; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
370 sal_Int32 c2; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength() local
379 c2 = (sal_Int32)((unsigned char)*pStr2); in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
382 if ( (c2 >= 65) && (c2 <= 90) ) in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
383 c2 += 32; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
384 nRet = c1-c2; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()