Searched refs:vlen (Results 1 – 5 of 5) sorted by relevance
/PHP-7.4/ext/bcmath/libbcmath/src/ |
H A D | recmul.c | 173 _bc_rec_mul (bc_num u, int ulen, bc_num v, int vlen, bc_num *prod, in _bc_rec_mul() argument 182 if ((ulen+vlen) < mul_base_digits in _bc_rec_mul() 184 || vlen < MUL_SMALL_DIGITS ) { in _bc_rec_mul() 185 _bc_simp_mul (u, ulen, v, vlen, prod, full_scale); in _bc_rec_mul() 190 n = (MAX(ulen, vlen)+1) / 2; in _bc_rec_mul() 200 if (vlen < n) { in _bc_rec_mul() 202 v0 = new_sub_num (vlen,0, v->n_value); in _bc_rec_mul() 204 v1 = new_sub_num (vlen-n, 0, v->n_value); in _bc_rec_mul() 205 v0 = new_sub_num (n, 0, v->n_value+vlen-n); in _bc_rec_mul() 241 prodlen = ulen+vlen+1; in _bc_rec_mul()
|
/PHP-7.4/ext/pdo/ |
H A D | pdo.c | 238 int vlen = semi - valstart; in php_pdo_parse_data_source() local 240 char *new_val = (char *) emalloc(vlen - n_semicolumns + 1); in php_pdo_parse_data_source() 244 while (vlen && *orig_val) { in php_pdo_parse_data_source() 250 vlen-=2; in php_pdo_parse_data_source() 253 vlen--; in php_pdo_parse_data_source()
|
/PHP-7.4/sapi/fpm/tests/ |
H A D | fcgi.inc | 326 $vlen = strlen($value); 335 if ($vlen < 128) { 337 $nvpair .= chr($vlen); 340 $nvpair .= chr(($vlen >> 24) | 0x80) . chr(($vlen >> 16) & 0xFF) 341 . chr(($vlen >> 8) & 0xFF) . chr($vlen & 0xFF); 372 $vlen = ord($data[$p++]); 373 if ($vlen >= 128) { 374 $vlen = ($nlen & 0x7F << 24); 376 $vlen |= (ord($data[$p++]) << 8); 377 $vlen |= (ord($data[$p++])); [all …]
|
/PHP-7.4/main/streams/ |
H A D | memory.c | 640 size_t mlen, dlen, plen, vlen, ilen; in php_stream_url_wrap_rfc2397() local 710 vlen = (semi ? (size_t)(semi - sep) : (mlen - plen)) - 1 /* '=' */; in php_stream_url_wrap_rfc2397() 712 add_assoc_stringl_ex(&meta, path, plen, sep + 1, vlen); in php_stream_url_wrap_rfc2397() 714 plen += vlen + 1; in php_stream_url_wrap_rfc2397() 752 vlen = strlen(mode); in php_stream_url_wrap_rfc2397() 753 if (vlen >= sizeof(stream->mode)) { in php_stream_url_wrap_rfc2397() 754 vlen = sizeof(stream->mode) - 1; in php_stream_url_wrap_rfc2397() 756 memcpy(stream->mode, mode, vlen); in php_stream_url_wrap_rfc2397() 757 stream->mode[vlen] = '\0'; in php_stream_url_wrap_rfc2397()
|
/PHP-7.4/main/ |
H A D | php_variables.c | 301 size_t klen, vlen; in add_post_var() local 324 vlen = vsep - ++ksep; in add_post_var() 329 vlen = 0; in add_post_var() 334 val = estrndup(ksep, vlen); in add_post_var() 335 if (vlen) { in add_post_var() 336 vlen = php_url_decode(val, vlen); in add_post_var() 339 if (sapi_module.input_filter(PARSE_POST, var->ptr, &val, vlen, &new_vlen)) { in add_post_var()
|
Completed in 20 milliseconds