Home
last modified time | relevance | path

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

/PHP-7.0/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.h155 …oding_detector * mbfl_encoding_detector_new(enum mbfl_no_encoding *elist, int elistsz, int strict);
156 …oding_detector * mbfl_encoding_detector_new2(const mbfl_encoding **elist, int elistsz, int strict);
174 mbfl_identify_encoding(mbfl_string *string, enum mbfl_no_encoding *elist, int elistsz, int strict);
177 mbfl_identify_encoding2(mbfl_string *string, const mbfl_encoding **elist, int elistsz, int strict);
H A Dmbfilter.c382 mbfl_encoding_detector_new(enum mbfl_no_encoding *elist, int elistsz, int strict) in mbfl_encoding_detector_new() argument
389 if (elist == NULL || elistsz <= 0) { in mbfl_encoding_detector_new()
407 while (i < elistsz) { in mbfl_encoding_detector_new()
424 mbfl_encoding_detector_new2(const mbfl_encoding **elist, int elistsz, int strict) in mbfl_encoding_detector_new2() argument
431 if (elist == NULL || elistsz <= 0) { in mbfl_encoding_detector_new2()
449 while (i < elistsz) { in mbfl_encoding_detector_new2()
635 mbfl_identify_encoding(mbfl_string *string, enum mbfl_no_encoding *elist, int elistsz, int strict) in mbfl_identify_encoding() argument
643 flist = (mbfl_identify_filter *)mbfl_calloc(elistsz, sizeof(mbfl_identify_filter)); in mbfl_identify_encoding()
650 for (i = 0; i < elistsz; i++) { in mbfl_identify_encoding()
726 flist = (mbfl_identify_filter *)mbfl_calloc(elistsz, sizeof(mbfl_identify_filter)); in mbfl_identify_encoding2()
[all …]
/PHP-7.0/ext/mbstring/
H A Dmbstring.c3701 size_t elistsz; in PHP_FUNCTION() local
3727 elistsz = 0; in PHP_FUNCTION()
3730 php_mb_parse_encoding_array(zfrom_enc, &elist, &elistsz, 0); in PHP_FUNCTION()
3734 php_mb_parse_encoding_list(Z_STRVAL_P(zfrom_enc), Z_STRLEN_P(zfrom_enc), &elist, &elistsz, 0); in PHP_FUNCTION()
3738 if (elistsz <= 0) { in PHP_FUNCTION()
3740 } else if (elistsz == 1) { in PHP_FUNCTION()
3748 identd = mbfl_encoding_detector_new2(elist, elistsz, MBSTRG(strict_detection)); in PHP_FUNCTION()

Completed in 31 milliseconds