Searched refs:dst_len (Results 1 – 3 of 3) sorted by relevance
/PHP-7.3/ext/intl/ |
H A D | intl_convert.c | 56 int32_t dst_len = 0; in intl_convert_utf8_to_utf16() local 75 (*target)[dst_len] = 0; in intl_convert_utf8_to_utf16() 76 *target_len = dst_len; in intl_convert_utf8_to_utf16() 88 dst_buf = eumalloc( dst_len + 1 ); in intl_convert_utf8_to_utf16() 92 u_strFromUTF8( dst_buf, dst_len+1, NULL, src, src_len, status ); in intl_convert_utf8_to_utf16() 99 dst_buf[dst_len] = 0; in intl_convert_utf8_to_utf16() 105 *target_len = dst_len; in intl_convert_utf8_to_utf16() 123 int32_t dst_len; in intl_convert_utf16_to_utf8() local 127 u_strToUTF8( NULL, 0, &dst_len, src, src_len, status ); in intl_convert_utf16_to_utf8() 137 dst = zend_string_alloc(dst_len, 0); in intl_convert_utf16_to_utf8() [all …]
|
/PHP-7.3/ext/intl/normalizer/ |
H A D | normalizer_normalize.c | 62 …ze(zend_long form, const UChar *src, int32_t src_len, UChar *dst, int32_t dst_len, UErrorCode *err) in intl_normalize() argument 71 if (dst_len >= src_len) { in intl_normalize() 87 return unorm2_normalize(norm, src, src_len, dst, dst_len, err); in intl_normalize()
|
/PHP-7.3/ext/mysqlnd/ |
H A D | mysqlnd_auth.c | 659 mysqlnd_xor_string(char * dst, const size_t dst_len, const char * xor_str, const size_t xor_str_len) in mysqlnd_xor_string() argument 662 for (i = 0; i <= dst_len; ++i) { in mysqlnd_xor_string()
|
Completed in 14 milliseconds