Searched refs:myht (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_5/ext/json/ |
| H A D | json.c | 175 HashTable *myht = HASH_OF(*val); local 177 i = myht ? zend_hash_num_elements(myht) : 0; 184 zend_hash_internal_pointer_reset_ex(myht, &pos); 186 for (;; zend_hash_move_forward_ex(myht, &pos)) { 187 i = zend_hash_get_current_key_ex(myht, &key, &key_len, &index, 0, &pos); 234 HashTable *myht; local 237 myht = HASH_OF(*val); 240 myht = Z_OBJPROP_PP(val); 244 if (myht 561 HashTable* myht; local [all...] |
| /PHP_5_5/ext/readline/ |
| H A D | readline.c | 428 HashTable *myht = Z_ARRVAL(_readline_array); local 432 zend_hash_internal_pointer_reset(myht); 435 while (zend_hash_get_current_data(myht, (void **)&entry) == SUCCESS) { 436 zend_hash_move_forward(myht);
|
| /PHP_5_5/ext/standard/ |
| H A D | var.c | 89 HashTable *myht; local 118 myht = Z_ARRVAL_PP(struc); 119 if (++myht->nApplyCount > 1) { 121 --myht->nApplyCount; 124 php_printf("%sarray(%d) {\n", COMMON, zend_hash_num_elements(myht)); 129 myht = Z_OBJDEBUG_PP(struc, is_temp); 130 if (myht && ++myht->nApplyCount > 1) { 132 --myht->nApplyCount; 138 php_printf("%sobject(%s)#%d (%d) {\n", COMMON, class_name, Z_OBJ_HANDLE_PP(struc), myht 244 HashTable *myht = NULL; local 418 HashTable *myht; local 715 HashTable *myht; local [all...] |
| H A D | array.c | 2486 HashTable *myht; local 2497 myht = Z_ARRVAL_P(input); 2498 zend_hash_internal_pointer_reset_ex(myht, &pos); 2499 while (zend_hash_get_current_data_ex(myht, (void **)&entry, &pos) == SUCCESS) { 2522 zend_hash_move_forward_ex(myht, &pos);
|
| /PHP_5_5/ext/date/ |
| H A D | php_date.c | 2736 static int php_date_initialize_from_hash(zval **return_value, php_date_obj **dateobj, HashTable *myht TSRMLS_DC) 2745 if (zend_hash_find(myht, "date", 5, (void**) &z_date) == SUCCESS) { 2747 if (zend_hash_find(myht, "timezone_type", 14, (void**) &z_timezone_type) == SUCCESS) { 2749 if (zend_hash_find(myht, "timezone", 9, (void**) &z_timezone) == SUCCESS) { 2792 HashTable *myht; local 2798 myht = HASH_OF(array); 2802 if (!php_date_initialize_from_hash(&return_value, &dateobj, myht TSRMLS_CC)) { 2814 HashTable *myht; local 2820 myht = HASH_OF(array); 2824 if (!php_date_initialize_from_hash(&return_value, &dateobj, myht TSRMLS_C 2836 HashTable *myht; local 3751 HashTable *myht; local 3771 HashTable *myht; local 4215 HashTable *myht; local 4235 HashTable *myht; local 4968 HashTable *myht; local 4990 HashTable *myht; local [all...] |
Completed in 18 milliseconds