Lines Matching refs:r

64 	long l, r, m;  in prop_lookup()  local
81 r = _ucprop_offsets[n + m] - 1; in prop_lookup()
83 while (l <= r) { in prop_lookup()
88 m = (l + r) >> 1; in prop_lookup()
93 r = m - 2; in prop_lookup()
122 static unsigned long case_lookup(unsigned long code, long l, long r, int field) in case_lookup() argument
129 while (l <= r) { in case_lookup()
134 m = (l + r) >> 1; in case_lookup()
139 r = m - 3; in case_lookup()
147 MBSTRING_API unsigned long php_turkish_toupper(unsigned long code, long l, long r, int field) in php_turkish_toupper() argument
152 return case_lookup(code, l, r, field); in php_turkish_toupper()
155 MBSTRING_API unsigned long php_turkish_tolower(unsigned long code, long l, long r, int field) in php_turkish_tolower() argument
160 return case_lookup(code, l, r, field); in php_turkish_tolower()
166 long l, r; in php_unicode_toupper() local
177 r = (l + _uccase_len[1]) - 3; in php_unicode_toupper()
180 return php_turkish_toupper(code, l, r, field); in php_unicode_toupper()
189 r = _uccase_size - 3; in php_unicode_toupper()
191 return case_lookup(code, l, r, field); in php_unicode_toupper()
197 long l, r; in php_unicode_tolower() local
208 r = _uccase_len[0] - 3; in php_unicode_tolower()
211 return php_turkish_tolower(code, l, r, field); in php_unicode_tolower()
220 r = _uccase_size - 3; in php_unicode_tolower()
222 return case_lookup(code, l, r, field); in php_unicode_tolower()
228 long l, r; in php_unicode_totitle() local
243 r = _uccase_len[0] - 3; in php_unicode_totitle()
249 r = (l + _uccase_len[1]) - 3; in php_unicode_totitle()
251 return case_lookup(code, l, r, field); in php_unicode_totitle()