Lines Matching refs:l

64 	long l, r, m;  in prop_lookup()  local
71 if ((l = _ucprop_offsets[n]) == 0xffff) in prop_lookup()
83 while (l <= r) { in prop_lookup()
88 m = (l + r) >> 1; in prop_lookup()
91 l = 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()
137 l = 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
176 l = _uccase_len[0]; in php_unicode_toupper()
177 r = (l + _uccase_len[1]) - 3; in php_unicode_toupper()
180 return php_turkish_toupper(code, l, r, field); in php_unicode_toupper()
188 l = _uccase_len[0] + _uccase_len[1]; 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
207 l = 0; in php_unicode_tolower()
211 return php_turkish_tolower(code, l, r, field); in php_unicode_tolower()
219 l = _uccase_len[0] + _uccase_len[1]; 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
242 l = 0; in php_unicode_totitle()
248 l = _uccase_len[0]; 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()