Lines Matching refs:c1
279 sal_Int32 c1; in rtl_ustr_ascii_compareIgnoreAsciiCase() local
284 c1 = (sal_Int32)*pStr1; in rtl_ustr_ascii_compareIgnoreAsciiCase()
286 if ( (c1 >= 65) && (c1 <= 90) ) in rtl_ustr_ascii_compareIgnoreAsciiCase()
287 c1 += 32; in rtl_ustr_ascii_compareIgnoreAsciiCase()
290 nRet = c1-c2; in rtl_ustr_ascii_compareIgnoreAsciiCase()
309 sal_Int32 c1; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength() local
317 c1 = (sal_Int32)*pStr1; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
319 if ( (c1 >= 65) && (c1 <= 90) ) in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
320 c1 += 32; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
323 nRet = c1-c2; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLength()
343 sal_Int32 c1 = *first++; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths() local
346 if (c1 >= 65 && c1 <= 90) { in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
347 c1 += 32; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
352 d = c1 - c2; in rtl_ustr_ascii_compareIgnoreAsciiCase_WithLengths()
369 sal_Int32 c1; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength() local
378 c1 = (sal_Int32)*pStr1; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
380 if ( (c1 >= 65) && (c1 <= 90) ) in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
381 c1 += 32; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()
384 nRet = c1-c2; in rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLength()