Home
last modified time | relevance | path

Searched refs:tbl_min (Results 1 – 1 of 1) sorted by relevance

/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_singlebyte.c27 if (c >= 0 && c < tbl_min) { in mbfl_conv_singlebyte_table()
39 if (c >= 0 && c < tbl_min) { in mbfl_conv_reverselookup_table()
44 for (int i = 0; i < 256 - tbl_min; i++) { in mbfl_conv_reverselookup_table()
46 CK((*filter->output_function)(i + tbl_min, filter->data)); in mbfl_conv_reverselookup_table()
95 #define DEF_SB_TBL(id, name, mime_name, aliases, tbl_min, tbl) \ argument
97 return mbfl_conv_singlebyte_table(c, filter, tbl_min, tbl); \
100 return mbfl_conv_reverselookup_table(c, filter, tbl_min, tbl); \
108 *out++ = (c < tbl_min) ? c : coalesce(tbl[c - tbl_min], MBFL_BAD_INPUT); \
121 if (w < tbl_min) { \
124 for (int i = 0; i < 256 - tbl_min; i++) { \
[all …]

Completed in 7 milliseconds