Home
last modified time | relevance | path

Searched refs:num (Results 151 – 175 of 178) sorted by relevance

12345678

/PHP-5.3/ext/intl/
H A Dphp_intl.c219 ZEND_ARG_INFO(0, num)
225 ZEND_ARG_INFO(0, num)
/PHP-5.3/ext/standard/
H A Darray.c1372 zval num; in PHP_FUNCTION() local
1374 ZVAL_LONG(&num, num_key); in PHP_FUNCTION()
1375 convert_to_string(&num); in PHP_FUNCTION()
1376 php_prefix_varname(&final_name, prefix, Z_STRVAL(num), Z_STRLEN(num), 1 TSRMLS_CC); in PHP_FUNCTION()
1377 zval_dtor(&num); in PHP_FUNCTION()
1543 long start_key, num; in PHP_FUNCTION() local
1549 if (num < 1) { in PHP_FUNCTION()
1557 num--; in PHP_FUNCTION()
1561 while (num--) { in PHP_FUNCTION()
2375 if (num > init_size) { in php_array_merge_or_replace_wrapper()
[all …]
H A Dbasic_functions.c345 ZEND_ARG_INFO(0, num)
4450 long num; local
4455 if (num < 0) {
4462 php_sleep(num);
4473 long num; local
4478 if (num < 0) {
4482 usleep(num);
6116 zval num; local
6119 convert_to_string(&num);
6120 php_prefix_varname(&new_key, prefix, Z_STRVAL(num), Z_STRLEN(num), 0 TSRMLS_CC);
[all …]
H A Dcrypt_sha256.c379 const char *num = salt + sizeof(sha256_rounds_prefix) - 1; in php_sha256_crypt_r() local
381 unsigned long int srounds = strtoul(num, &endp, 10); in php_sha256_crypt_r()
H A Dcrypt_sha512.c412 const char *num = salt + sizeof(sha512_rounds_prefix) - 1; in php_sha512_crypt_r() local
414 unsigned long int srounds = strtoul(num, &endp, 10); in php_sha512_crypt_r()
/PHP-5.3/ext/sockets/
H A Dsockets.c714 int num = 0; local
729 num++;
732 return num ? 1 : 0;
743 int num = 0; local
770 num++;
780 return num ? 1 : 0;
/PHP-5.3/ext/standard/tests/strings/
H A Dprintf.phpt117 foreach( $int_numbers as $num )
120 printf( "%e", $num );
H A Dprintf_64bit.phpt117 foreach( $int_numbers as $num )
120 printf( "%e", $num );
/PHP-5.3/Zend/
H A DZEND_CHANGES836 private $num;
842 $this->num = 0;
845 return $this->num < $this->obj->max;
848 return $this->num;
851 switch($this->num) {
855 default: return $this->num."th";
859 $this->num++;
H A Dzend_compile.c4687 int num = CG(active_op_array)->last; in zend_do_declare_stmt() local
4689 while (num > 0 && in zend_do_declare_stmt()
4691 CG(active_op_array)->opcodes[num-1].opcode == ZEND_TICKS)) { in zend_do_declare_stmt()
4692 --num; in zend_do_declare_stmt()
4695 if (num > 0) { in zend_do_declare_stmt()
5149 int num = CG(active_op_array)->last; in zend_do_begin_namespace() local
5150 while (num > 0 && in zend_do_begin_namespace()
5151 (CG(active_op_array)->opcodes[num-1].opcode == ZEND_EXT_STMT || in zend_do_begin_namespace()
5152 CG(active_op_array)->opcodes[num-1].opcode == ZEND_TICKS)) { in zend_do_begin_namespace()
5153 --num; in zend_do_begin_namespace()
[all …]
/PHP-5.3/ext/phar/
H A Dtar.c24 php_uint32 num = 0; in phar_tar_number() local
32 num = num * 8 + (buf[i] - '0'); in phar_tar_number()
36 return num; in phar_tar_number()
/PHP-5.3/ext/mbstring/oniguruma/
H A Dregparse.h200 int num; member
H A Dregcomp.c143 uslist->num = 0; in unset_addr_list_init()
162 if (uslist->num >= uslist->alloc) { in unset_addr_list_add()
171 uslist->us[uslist->num].target = node; in unset_addr_list_add()
172 uslist->num++; in unset_addr_list_add()
224 add_mem_num(regex_t* reg, int num) in add_mem_num() argument
226 MemNumType n = (MemNumType )num; in add_mem_num()
1920 for (i = 0; i < uslist->num; i++) { in unset_addr_list_fix()
3018 int n, num, *refs; in setup_subexp_call() local
3032 if (num <= 0 || p != cn->name_end) { in setup_subexp_call()
3044 if (num > env->num_mem) { in setup_subexp_call()
[all …]
/PHP-5.3/ext/mbstring/oniguruma/enc/
H A Dmktable.c56 int num; member
1073 enc = einfo->num; in exec()
/PHP-5.3/ext/standard/tests/array/
H A Darray_slice.phpt20 $num = 4;
37 array_slice($num, 2);
/PHP-5.3/ext/exif/
H A Dexif.c1348 int num; member
1353 unsigned int num; member
1769 info_value->ur.num = php_ifd_get32u(vptr, motorola_intel); in exif_iif_add_value()
1782 info_value->sr.num = php_ifd_get32u(vptr, motorola_intel); in exif_iif_add_value()
2070 snprintf(buffer, sizeof(buffer), "%i/%i", info_value->ur.num, info_value->ur.den); in add_assoc_image_info()
2096 snprintf(buffer, sizeof(buffer), "%i/%i", info_value->sr.num, info_value->sr.den); in add_assoc_image_info()
2439 php_ifd_set32u(data_ptr, info_value->sr.num, motorola_intel); in exif_ifd_make_value()
2444 php_ifd_set32u(data_ptr, info_value->ur.num, motorola_intel); in exif_ifd_make_value()
/PHP-5.3/ext/openssl/
H A Dopenssl.c1347 long i, length, num; in openssl_x509v3_subjectAltName() local
1367 num = sk_GENERAL_NAME_num(names); in openssl_x509v3_subjectAltName()
1368 for (i = 0; i < num; i++) { in openssl_x509v3_subjectAltName()
1398 if (i < (num - 1)) { in openssl_x509v3_subjectAltName()
4510 static int passwd_callback(char *buf, int num, int verify, void *data) /* {{{ */ in passwd_callback() argument
4520 if (Z_STRLEN_PP(val) < num - 1) { in passwd_callback()
/PHP-5.3/ext/fileinfo/
H A Dlibmagic.patch2601 for ( ; num; num--) {
2646 for ( ; num; num--) {
2708 for ( ; num; num--) {
/PHP-5.3/ext/mbstring/oniguruma/doc/
H A DRE322 + subexp call \g<name>, \g<group-num>
/PHP-5.3/ext/pdo/
H A Dpdo_stmt.c2182 ulong num; in PHP_METHOD() local
2185 res = zend_hash_get_current_key_ex(stmt->bound_params, &str, &len, &num, 0, &pos); in PHP_METHOD()
2187 php_stream_printf(out TSRMLS_CC, "Key: Position #%ld:\n", num); in PHP_METHOD()
/PHP-5.3/ext/mbstring/
H A Dmbstring.c4509 MBSTRING_API int php_mb_gpc_encoding_converter(char **str, int *len, int num, const char *encoding_… in php_mb_gpc_encoding_converter() argument
4545 for (i=0; i<num; i++){ in php_mb_gpc_encoding_converter()
4575 MBSTRING_API int php_mb_gpc_encoding_detector(char **arg_string, int *arg_length, int num, char *ar… in php_mb_gpc_encoding_detector() argument
4630 while(n < num){ in php_mb_gpc_encoding_detector()
/PHP-5.3/ext/soap/
H A Dphp_encoding.c3557 int num = ++SOAP_GLOBAL(cur_uniq_ns); in encode_add_ns() local
3561 smart_str_append_long(&prefix, num); in encode_add_ns()
3569 num = ++SOAP_GLOBAL(cur_uniq_ns); in encode_add_ns()
/PHP-5.3/ext/pcre/pcrelib/testdata/
H A Dtestoutput83275 11: I have 2 num
3310 11: I have 2 num
/PHP-5.3/
H A Dltmain.sh5041 void * xmalloc (size_t num);
/PHP-5.3/ext/pcre/pcrelib/doc/
H A Dpcre.txt1941 The output is a long integer that gives the default limit for the num-
2744 the 8-bit library, where the first two bytes of each entry are the num-
3797 To extract a substring by name, you first have to find associated num-
5204 Xan matches characters that have either the L (letter) or the N (num-
5414 character's individual bytes are then captured by the appropriate num-
5684 the captured substrings are "red king", "red", and "king", and are num-
5751 unique number, the test is true if any of the subpatterns of that num-
5844 The general repetition quantifier specifies a minimum and maximum num-
6462 consists entirely of digits, PCRE looks for a subpattern of that num-

Completed in 258 milliseconds

12345678