to_len            347 ext/gd/libgd/gdkanji.c   size_t from_len, to_len;
to_len            362 ext/gd/libgd/gdkanji.c   to_len = BUFSIZ;
to_len            364 ext/gd/libgd/gdkanji.c   if ((int) iconv(cd, (char **) &from, &from_len, (char **) &to, &to_len) == -1)
to_len           4187 ext/mbstring/mbstring.c 	size_t to_len;
to_len           4234 ext/mbstring/mbstring.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sss|sS", &to, &to_len, &subject, &subject_len, &message, &message_len, &headers, &headers_len, &extra_cmd) == FAILURE) {
to_len           4239 ext/mbstring/mbstring.c 	MAIL_ASCIIZ_CHECK_MBSTRING(to, to_len);
to_len           4313 ext/mbstring/mbstring.c 		if (to_len > 0) {
to_len           4314 ext/mbstring/mbstring.c 			to_r = estrndup(to, to_len);
to_len           4315 ext/mbstring/mbstring.c 			for (; to_len; to_len--) {
to_len           4316 ext/mbstring/mbstring.c 				if (!isspace((unsigned char) to_r[to_len - 1])) {
to_len           4319 ext/mbstring/mbstring.c 				to_r[to_len - 1] = '\0';
to_len            148 ext/mbstring/oniguruma/oniguruma.h typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);
to_len           4958 ext/mbstring/oniguruma/regparse.c 		  int to_len, void* arg)
to_len           4970 ext/mbstring/oniguruma/regparse.c   if (to_len == 1) {
to_len           5008 ext/mbstring/oniguruma/regparse.c       for (i = 0; i < to_len; i++) {
to_len           4372 ext/pgsql/pgsql.c 	size_t to_len;
to_len           4400 ext/pgsql/pgsql.c 		to = (char *)PQescapeByteaConn(pgsql, (unsigned char *)from, (size_t)from_len, &to_len);
to_len           4403 ext/pgsql/pgsql.c 		to = (char *)PQescapeBytea((unsigned char*)from, from_len, &to_len);
to_len           4405 ext/pgsql/pgsql.c 	RETVAL_STRINGL(to, to_len-1); /* to_len includes additional '\0' */
to_len           4521 ext/pgsql/pgsql.c 	size_t to_len;
to_len           4529 ext/pgsql/pgsql.c 	tmp = (char *)PQunescapeBytea((unsigned char*)from, &to_len);
to_len           4530 ext/pgsql/pgsql.c 	to = estrndup(tmp, to_len);
to_len           4533 ext/pgsql/pgsql.c 	to = (char *)php_pgsql_unescape_bytea((unsigned char*)from, &to_len);
to_len           4539 ext/pgsql/pgsql.c 	RETVAL_STRINGL(to, to_len);
to_len           6336 ext/pgsql/pgsql.c 							size_t to_len;
to_len           6339 ext/pgsql/pgsql.c 							tmp = PQescapeByteaConn(pg_link, (unsigned char *)Z_STRVAL_P(val), Z_STRLEN_P(val), &to_len);
to_len           6341 ext/pgsql/pgsql.c 							tmp = PQescapeBytea(Z_STRVAL_P(val), (unsigned char *)Z_STRLEN_P(val), &to_len);
to_len           6343 ext/pgsql/pgsql.c 							ZVAL_STRINGL(&new_val, (char *)tmp, to_len - 1); /* PQescapeBytea's to_len includes additional '\0' */
to_len            903 ext/phar/stream.c 		uint to_len = strlen(resource_to->path+1);
to_len            913 ext/phar/stream.c 				new_str_key = zend_string_alloc(ZSTR_LEN(str_key) + to_len - from_len, 0);
to_len            914 ext/phar/stream.c 				memcpy(ZSTR_VAL(new_str_key), resource_to->path + 1, to_len);
to_len            915 ext/phar/stream.c 				memcpy(ZSTR_VAL(new_str_key) + to_len, ZSTR_VAL(str_key) + from_len, ZSTR_LEN(str_key) - from_len);
to_len            938 ext/phar/stream.c 				new_str_key = zend_string_alloc(ZSTR_LEN(str_key) + to_len - from_len, 0);
to_len            939 ext/phar/stream.c 				memcpy(ZSTR_VAL(new_str_key), resource_to->path + 1, to_len);
to_len            940 ext/phar/stream.c 				memcpy(ZSTR_VAL(new_str_key) + to_len, ZSTR_VAL(str_key) + from_len, ZSTR_LEN(str_key) - from_len);
to_len            956 ext/phar/stream.c 				new_str_key = zend_string_alloc(ZSTR_LEN(str_key) + to_len - from_len, 0);
to_len            957 ext/phar/stream.c 				memcpy(ZSTR_VAL(new_str_key), resource_to->path + 1, to_len);
to_len            958 ext/phar/stream.c 				memcpy(ZSTR_VAL(new_str_key) + to_len, ZSTR_VAL(str_key) + from_len, ZSTR_LEN(str_key) - from_len);
to_len            106 ext/standard/mail.c 	size_t to_len, message_len;
to_len            112 ext/standard/mail.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "sss|SS",	&to, &to_len, &subject, &subject_len, &message, &message_len, &headers, &extra_cmd) == FAILURE) {
to_len            117 ext/standard/mail.c 	MAIL_ASCIIZ_CHECK(to, to_len);
to_len            128 ext/standard/mail.c 	if (to_len > 0) {
to_len            129 ext/standard/mail.c 		to_r = estrndup(to, to_len);
to_len            130 ext/standard/mail.c 		for (; to_len; to_len--) {
to_len            131 ext/standard/mail.c 			if (!isspace((unsigned char) to_r[to_len - 1])) {
to_len            134 ext/standard/mail.c 			to_r[to_len - 1] = '\0';
to_len           3130 ext/standard/string.c static zend_string* php_char_to_str_ex(zend_string *str, char from, char *to, size_t to_len, int case_sensitivity, zend_long *replace_count)
to_len           3156 ext/standard/string.c 	if (to_len > 0) {
to_len           3157 ext/standard/string.c 		result = zend_string_safe_alloc(char_count, to_len - 1, ZSTR_LEN(str), 0);
to_len           3168 ext/standard/string.c 			memcpy(target, to, to_len);
to_len           3169 ext/standard/string.c 			target += to_len;
to_len           3186 ext/standard/string.c 				memcpy(target, to, to_len);
to_len           3187 ext/standard/string.c 				target += to_len;
to_len           3446 ext/standard/string.c 	size_t to_len = 0;
to_len           3450 ext/standard/string.c 	if (zend_parse_parameters(ZEND_NUM_ARGS(), "Sz|s", &str, &from, &to, &to_len) == FAILURE) {
to_len           3458 ext/standard/string.c 		Z_PARAM_STRING(to, to_len)
to_len           3518 ext/standard/string.c 				  MIN(Z_STRLEN_P(from), to_len)));