Lines Matching refs:enc
139 static unsigned php_unicode_toupper_raw(unsigned code, enum mbfl_no_encoding enc) in php_unicode_toupper_raw() argument
144 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x69)) { in php_unicode_toupper_raw()
159 static unsigned php_unicode_tolower_raw(unsigned code, enum mbfl_no_encoding enc) in php_unicode_tolower_raw() argument
164 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x0049L)) { in php_unicode_tolower_raw()
173 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x130)) { in php_unicode_tolower_raw()
182 static unsigned php_unicode_totitle_raw(unsigned code, enum mbfl_no_encoding enc) in php_unicode_totitle_raw() argument
190 return php_unicode_toupper_raw(code, enc); in php_unicode_totitle_raw()
193 unsigned php_unicode_tofold_raw(unsigned code, enum mbfl_no_encoding enc) in php_unicode_tofold_raw() argument
198 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x49)) { in php_unicode_tofold_raw()
207 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x130)) { in php_unicode_tofold_raw()
216 static inline unsigned php_unicode_tolower_simple(unsigned code, enum mbfl_no_encoding enc) { in php_unicode_tolower_simple() argument
217 code = php_unicode_tolower_raw(code, enc); in php_unicode_tolower_simple()
223 static inline unsigned php_unicode_toupper_simple(unsigned code, enum mbfl_no_encoding enc) { in php_unicode_toupper_simple() argument
224 code = php_unicode_toupper_raw(code, enc); in php_unicode_toupper_simple()
230 static inline unsigned php_unicode_totitle_simple(unsigned code, enum mbfl_no_encoding enc) { in php_unicode_totitle_simple() argument
231 code = php_unicode_totitle_raw(code, enc); in php_unicode_totitle_simple()
237 static inline unsigned php_unicode_tofold_simple(unsigned code, enum mbfl_no_encoding enc) { in php_unicode_tofold_simple() argument
238 code = php_unicode_tofold_raw(code, enc); in php_unicode_tofold_simple()
245 static inline void php_unicode_tolower_full(unsigned code, enum mbfl_no_encoding enc, in php_unicode_tolower_full() argument
247 code = php_unicode_tolower_raw(code, enc); in php_unicode_tolower_full()
259 static inline void php_unicode_toupper_full(unsigned code, enum mbfl_no_encoding enc, in php_unicode_toupper_full() argument
261 code = php_unicode_toupper_raw(code, enc); in php_unicode_toupper_full()
273 static inline void php_unicode_totitle_full(unsigned code, enum mbfl_no_encoding enc, in php_unicode_totitle_full() argument
275 code = php_unicode_totitle_raw(code, enc); in php_unicode_totitle_full()
287 static inline void php_unicode_tofold_full(unsigned code, enum mbfl_no_encoding enc, in php_unicode_tofold_full() argument
289 code = php_unicode_tofold_raw(code, enc); in php_unicode_tofold_full()