Searched refs:array_size (Results 1 – 2 of 2) sorted by relevance
/PHP-5.4/ext/soap/ |
H A D | php_encoding.c | 2293 smart_str array_type = {0}, array_size = {0}; in to_xml_array() local 2438 smart_str_appendc(&array_size, ','); in to_xml_array() 2468 smart_str_appendc(&array_size, ','); in to_xml_array() 2474 smart_str_append_long(&array_size, i); in to_xml_array() 2489 smart_str_appendc(&array_size, ','); in to_xml_array() 2516 smart_str_append_long(&array_size, i); in to_xml_array() 2523 smart_str_append_long(&array_size, i); in to_xml_array() 2542 while (i < array_size.len) { in to_xml_array() 2543 if (array_size.c[i] == ',') {array_size.c[i] = ' ';} in to_xml_array() 2547 smart_str_0(&array_size); in to_xml_array() [all …]
|
/PHP-5.4/ext/standard/ |
H A D | array.c | 3784 int array_size; in PHP_FUNCTION() local 3872 array_size = zend_hash_num_elements(Z_ARRVAL_PP(arrays[0])); in PHP_FUNCTION() 3874 if (zend_hash_num_elements(Z_ARRVAL_PP(arrays[i])) != array_size) { in PHP_FUNCTION() 3881 if (array_size < 1) { in PHP_FUNCTION() 3894 indirect = (Bucket ***)safe_emalloc(array_size, sizeof(Bucket **), 0); in PHP_FUNCTION() 3895 for (i = 0; i < array_size; i++) { in PHP_FUNCTION() 3904 for (k = 0; k < array_size; k++) { in PHP_FUNCTION() 3909 zend_qsort(indirect, array_size, sizeof(Bucket **), php_multisort_compare TSRMLS_CC); in PHP_FUNCTION() 3919 for (k = 0; k < array_size; k++) { in PHP_FUNCTION() 3935 hash->nNextFreeElement = array_size; in PHP_FUNCTION() [all …]
|
Completed in 30 milliseconds