Lines Matching refs:enc
122 static unsigned php_unicode_toupper_raw(unsigned code, enum mbfl_no_encoding enc) in php_unicode_toupper_raw() argument
127 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x69)) { in php_unicode_toupper_raw()
142 static unsigned php_unicode_tolower_raw(unsigned code, enum mbfl_no_encoding enc) in php_unicode_tolower_raw() argument
147 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x0049L)) { in php_unicode_tolower_raw()
156 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x130)) { in php_unicode_tolower_raw()
165 static unsigned php_unicode_totitle_raw(unsigned code, enum mbfl_no_encoding enc) in php_unicode_totitle_raw() argument
173 return php_unicode_toupper_raw(code, enc); in php_unicode_totitle_raw()
176 unsigned php_unicode_tofold_raw(unsigned code, enum mbfl_no_encoding enc) in php_unicode_tofold_raw() argument
181 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x49)) { in php_unicode_tofold_raw()
190 if (UNEXPECTED(enc == mbfl_no_encoding_8859_9 && code == 0x130)) { in php_unicode_tofold_raw()
199 static inline unsigned php_unicode_tolower_simple(unsigned code, enum mbfl_no_encoding enc) { in php_unicode_tolower_simple() argument
200 code = php_unicode_tolower_raw(code, enc); in php_unicode_tolower_simple()
206 static inline unsigned php_unicode_toupper_simple(unsigned code, enum mbfl_no_encoding enc) { in php_unicode_toupper_simple() argument
207 code = php_unicode_toupper_raw(code, enc); in php_unicode_toupper_simple()
213 static inline unsigned php_unicode_totitle_simple(unsigned code, enum mbfl_no_encoding enc) { in php_unicode_totitle_simple() argument
214 code = php_unicode_totitle_raw(code, enc); in php_unicode_totitle_simple()
220 static inline unsigned php_unicode_tofold_simple(unsigned code, enum mbfl_no_encoding enc) { in php_unicode_tofold_simple() argument
221 code = php_unicode_tofold_raw(code, enc); in php_unicode_tofold_simple()
228 static inline void php_unicode_tolower_full(unsigned code, enum mbfl_no_encoding enc, in php_unicode_tolower_full() argument
230 code = php_unicode_tolower_raw(code, enc); in php_unicode_tolower_full()
242 static inline void php_unicode_toupper_full(unsigned code, enum mbfl_no_encoding enc, in php_unicode_toupper_full() argument
244 code = php_unicode_toupper_raw(code, enc); in php_unicode_toupper_full()
256 static inline void php_unicode_totitle_full(unsigned code, enum mbfl_no_encoding enc, in php_unicode_totitle_full() argument
258 code = php_unicode_totitle_raw(code, enc); in php_unicode_totitle_full()
270 static inline void php_unicode_tofold_full(unsigned code, enum mbfl_no_encoding enc, in php_unicode_tofold_full() argument
272 code = php_unicode_tofold_raw(code, enc); in php_unicode_tofold_full()