Searched refs:elistsz (Results 1 – 3 of 3) sorted by relevance
/PHP-7.2/ext/mbstring/libmbfl/mbfl/ |
H A D | mbfilter.h | 162 …oding_detector * mbfl_encoding_detector_new(enum mbfl_no_encoding *elist, int elistsz, int strict); 163 …oding_detector * mbfl_encoding_detector_new2(const mbfl_encoding **elist, int elistsz, int strict); 181 mbfl_identify_encoding(mbfl_string *string, enum mbfl_no_encoding *elist, int elistsz, int strict); 184 mbfl_identify_encoding2(mbfl_string *string, const mbfl_encoding **elist, int elistsz, int strict);
|
H A D | mbfilter.c | 382 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.2/ext/mbstring/ |
H A D | mbstring.c | 3853 size_t elistsz; in PHP_FUNCTION() local 3879 elistsz = 0; in PHP_FUNCTION() 3882 php_mb_parse_encoding_array(zfrom_enc, &elist, &elistsz, 0); in PHP_FUNCTION() 3886 php_mb_parse_encoding_list(Z_STRVAL_P(zfrom_enc), Z_STRLEN_P(zfrom_enc), &elist, &elistsz, 0); in PHP_FUNCTION() 3890 if (elistsz <= 0) { in PHP_FUNCTION() 3892 } else if (elistsz == 1) { in PHP_FUNCTION() 3900 identd = mbfl_encoding_detector_new2(elist, elistsz, MBSTRG(strict_detection)); in PHP_FUNCTION()
|
Completed in 41 milliseconds