Home
last modified time | relevance | path

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

/PHP-5.5/ext/bcmath/libbcmath/src/
H A Drecmul.c182 _bc_rec_mul (bc_num u, int ulen, bc_num v, int vlen, bc_num *prod, in _bc_rec_mul() argument
191 if ((ulen+vlen) < mul_base_digits in _bc_rec_mul()
193 || vlen < MUL_SMALL_DIGITS ) { in _bc_rec_mul()
194 _bc_simp_mul (u, ulen, v, vlen, prod, full_scale); in _bc_rec_mul()
199 n = (MAX(ulen, vlen)+1) / 2; in _bc_rec_mul()
209 if (vlen < n) { in _bc_rec_mul()
211 v0 = new_sub_num (vlen,0, v->n_value); in _bc_rec_mul()
213 v1 = new_sub_num (vlen-n, 0, v->n_value); in _bc_rec_mul()
214 v0 = new_sub_num (n, 0, v->n_value+vlen-n); in _bc_rec_mul()
250 prodlen = ulen+vlen+1; in _bc_rec_mul()
/PHP-5.5/ext/pdo/
H A Dpdo.c279 int vlen = semi - valstart; in php_pdo_parse_data_source() local
281 char *new_val = (char *) emalloc(vlen - n_semicolumns + 1); in php_pdo_parse_data_source()
285 while (vlen && *orig_val) { in php_pdo_parse_data_source()
291 vlen-=2; in php_pdo_parse_data_source()
294 vlen--; in php_pdo_parse_data_source()
/PHP-5.5/main/streams/
H A Dmemory.c614 size_t mlen, dlen, plen, vlen; in php_stream_url_wrap_rfc2397() local
683 vlen = (semi ? semi - sep : mlen - plen) - 1 /* '=' */; in php_stream_url_wrap_rfc2397()
686 add_assoc_stringl_ex(meta, key, plen + 1, sep + 1, vlen, 1); in php_stream_url_wrap_rfc2397()
689 plen += vlen + 1; in php_stream_url_wrap_rfc2397()
725 vlen = strlen(mode); in php_stream_url_wrap_rfc2397()
726 if (vlen >= sizeof(stream->mode)) { in php_stream_url_wrap_rfc2397()
727 vlen = sizeof(stream->mode) - 1; in php_stream_url_wrap_rfc2397()
729 memcpy(stream->mode, mode, vlen); in php_stream_url_wrap_rfc2397()
730 stream->mode[vlen] = '\0'; in php_stream_url_wrap_rfc2397()

Completed in 12 milliseconds