Lines Matching refs:i

229 	register int i;  in wddx_stack_destroy()  local
232 for (i = 0; i < stack->top; i++) { in wddx_stack_destroy()
233 if (Z_TYPE(((st_entry *)stack->elements[i])->data) != IS_UNDEF in wddx_stack_destroy()
234 && ((st_entry *)stack->elements[i])->type != ST_FIELD) { in wddx_stack_destroy()
235 zval_ptr_dtor(&((st_entry *)stack->elements[i])->data); in wddx_stack_destroy()
237 if (((st_entry *)stack->elements[i])->varname) { in wddx_stack_destroy()
238 efree(((st_entry *)stack->elements[i])->varname); in wddx_stack_destroy()
240 efree(stack->elements[i]); in wddx_stack_destroy()
728 int i; in php_wddx_push_element() local
730 if (atts) for (i=0; atts[i]; i++) { in php_wddx_push_element()
731 if (!strcmp((char *)atts[i], EL_VERSION)) { in php_wddx_push_element()
748 int i; in php_wddx_push_element() local
750 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
751 if (!strcmp((char *)atts[i], EL_CHAR_CODE) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
754 snprintf(tmp_buf, sizeof(tmp_buf), "%c", (char)strtol((char *)atts[i+1], NULL, 16)); in php_wddx_push_element()
766 int i; in php_wddx_push_element() local
770 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
771 if (!strcmp((char *)atts[i], EL_VALUE) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
774 php_wddx_process_data(user_data, atts[i+1], strlen((char *)atts[i+1])); in php_wddx_push_element()
800 int i; in php_wddx_push_element() local
802 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
803 if (!strcmp((char *)atts[i], EL_NAME) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
805 stack->varname = estrdup((char *)atts[i+1]); in php_wddx_push_element()
810 int i; in php_wddx_push_element() local
816 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
817 if (!strcmp((char *)atts[i], "fieldNames") && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
822 i++; in php_wddx_push_element()
823 endp = (char *)atts[i] + strlen((char *)atts[i]); in php_wddx_push_element()
824 p1 = (char *)atts[i]; in php_wddx_push_element()
844 int i; in php_wddx_push_element() local
851 if (atts) for (i = 0; atts[i]; i++) { in php_wddx_push_element()
852 if (!strcmp((char *)atts[i], EL_NAME) && atts[i+1] && atts[i+1][0]) { in php_wddx_push_element()
858 …(field = zend_hash_str_find(Z_ARRVAL(recordset->data), (char*)atts[i+1], strlen((char *)atts[i+1])… in php_wddx_push_element()
1160 int num_args, i; in PHP_FUNCTION() local
1173 for (i=0; i<num_args; i++) { in PHP_FUNCTION()
1175 if (!Z_ISREF(args[i])) { in PHP_FUNCTION()
1176 arg = &args[i]; in PHP_FUNCTION()
1178 arg = Z_REFVAL(args[i]); in PHP_FUNCTION()
1269 int num_args, i; in PHP_FUNCTION() local
1282 for (i=0; i<num_args; i++) { in PHP_FUNCTION()
1284 if (!Z_ISREF(args[i])) { in PHP_FUNCTION()
1285 arg = &args[i]; in PHP_FUNCTION()
1287 arg = Z_REFVAL(args[i]); in PHP_FUNCTION()