Home
last modified time | relevance | path

Searched refs:pos (Results 1 – 25 of 197) sorted by path

12345678

/PHP-5.5/Zend/
H A Dzend_API.c1062 HashPosition pos; in zval_update_class_constant() local
1068 zend_hash_move_forward_ex(&ce->properties_info, &pos)) { in zval_update_class_constant()
1807 HashPosition pos; in zend_collect_module_handlers() local
1818 zend_hash_move_forward_ex(&module_registry, &pos)) { in zend_collect_module_handlers()
1843 zend_hash_move_forward_ex(&module_registry, &pos)) { in zend_collect_module_handlers()
1856 for (zend_hash_internal_pointer_reset_ex(CG(class_table), &pos); in zend_collect_module_handlers()
1858 zend_hash_move_forward_ex(CG(class_table), &pos)) { in zend_collect_module_handlers()
1873 zend_hash_move_forward_ex(CG(class_table), &pos)) { in zend_collect_module_handlers()
3289 HashPosition pos; in zend_fcall_info_args() local
3305 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(args), &pos); in zend_fcall_info_args()
[all …]
H A Dzend_builtin_functions.c906 HashPosition pos; in add_class_vars() local
916 zend_hash_move_forward_ex(&ce->properties_info, &pos); in add_class_vars()
987 HashPosition pos; in ZEND_FUNCTION() local
1012 zend_hash_internal_pointer_reset_ex(properties, &pos); in ZEND_FUNCTION()
1023 zend_hash_move_forward_ex(properties, &pos); in ZEND_FUNCTION()
1043 HashPosition pos; in ZEND_FUNCTION() local
1104 zend_hash_move_forward_ex(&ce->function_table, &pos); in ZEND_FUNCTION()
1955 HashPosition pos; in ZEND_FUNCTION() local
1967 zend_hash_internal_pointer_reset_ex(&module_registry, &pos); in ZEND_FUNCTION()
1971 zend_hash_move_forward_ex(&module_registry, &pos); in ZEND_FUNCTION()
[all …]
H A Dzend_hash.c1098 if (pos) in zend_hash_internal_pointer_reset_ex()
1112 if (pos) in zend_hash_internal_pointer_end_ex()
1121 HashPosition *current = pos ? pos : &ht->pInternalPointer; in zend_hash_move_forward_ex()
1134 HashPosition *current = pos ? pos : &ht->pInternalPointer; in zend_hash_move_backwards_ex()
1151 p = pos ? (*pos) : ht->pInternalPointer; in zend_hash_get_current_key_ex()
1179 p = pos ? (*pos) : ht->pInternalPointer; in zend_hash_get_current_key_zval_ex()
1197 p = pos ? (*pos) : ht->pInternalPointer; in zend_hash_get_current_key_type_ex()
1216 p = pos ? (*pos) : ht->pInternalPointer; in zend_hash_get_current_data_ex()
1239 p = pos ? (*pos) : ht->pInternalPointer; in zend_hash_update_current_key_ex()
1409 if (pos) { in zend_hash_update_current_key_ex()
[all …]
H A Dzend_hash.h175 #define zend_hash_has_more_elements_ex(ht, pos) \ argument
176 (zend_hash_get_current_key_type_ex(ht, pos) == HASH_KEY_NON_EXISTENT ? FAILURE : SUCCESS)
177 ZEND_API int zend_hash_move_forward_ex(HashTable *ht, HashPosition *pos);
178 ZEND_API int zend_hash_move_backwards_ex(HashTable *ht, HashPosition *pos);
180 ZEND_API void zend_hash_get_current_key_zval_ex(const HashTable *ht, zval *key, HashPosition *pos);
181 ZEND_API int zend_hash_get_current_key_type_ex(HashTable *ht, HashPosition *pos);
182 ZEND_API int zend_hash_get_current_data_ex(HashTable *ht, void **pData, HashPosition *pos);
183 ZEND_API void zend_hash_internal_pointer_reset_ex(HashTable *ht, HashPosition *pos);
184 ZEND_API void zend_hash_internal_pointer_end_ex(HashTable *ht, HashPosition *pos);
188 HashPosition pos; member
[all …]
H A Dzend_list.c318 HashPosition pos; in zend_fetch_list_dtor_id() local
320 zend_hash_internal_pointer_reset_ex(&list_destructors, &pos); in zend_fetch_list_dtor_id()
321 while (zend_hash_get_current_data_ex(&list_destructors, (void **)&lde, &pos) == SUCCESS) { in zend_fetch_list_dtor_id()
328 zend_hash_move_forward_ex(&list_destructors, &pos); in zend_fetch_list_dtor_id()
H A Dzend_llist.c258 ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos) in zend_llist_get_first_ex() argument
260 zend_llist_position *current = pos ? pos : &l->traverse_ptr; in zend_llist_get_first_ex()
271 ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos) in zend_llist_get_last_ex() argument
273 zend_llist_position *current = pos ? pos : &l->traverse_ptr; in zend_llist_get_last_ex()
284 ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos) in zend_llist_get_next_ex() argument
286 zend_llist_position *current = pos ? pos : &l->traverse_ptr; in zend_llist_get_next_ex()
298 ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos) in zend_llist_get_prev_ex() argument
300 zend_llist_position *current = pos ? pos : &l->traverse_ptr; in zend_llist_get_prev_ex()
H A Dzend_llist.h66 ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos);
67 ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos);
68 ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos);
69 ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos);
H A Dzend_object_handlers.c69 HashPosition pos; in rebuild_object_properties() local
76 for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in rebuild_object_properties()
77 zend_hash_get_current_data_ex(&ce->properties_info, (void**)&prop_info, &pos) == SUCCESS; in rebuild_object_properties()
78 zend_hash_move_forward_ex(&ce->properties_info, &pos)) { in rebuild_object_properties()
88 for (zend_hash_internal_pointer_reset_ex(&ce->properties_info, &pos); in rebuild_object_properties()
89 zend_hash_get_current_data_ex(&ce->properties_info, (void**)&prop_info, &pos) == SUCCESS; in rebuild_object_properties()
90 zend_hash_move_forward_ex(&ce->properties_info, &pos)) { in rebuild_object_properties()
H A Dzend_objects.c190 HashPosition pos; in zend_objects_clone_members() local
192 for (zend_hash_internal_pointer_reset_ex(&old_object->ce->properties_info, &pos); in zend_objects_clone_members()
193 …zend_hash_get_current_data_ex(&old_object->ce->properties_info, (void**)&prop_info, &pos) == SUCCE… in zend_objects_clone_members()
194 zend_hash_move_forward_ex(&old_object->ce->properties_info, &pos)) { in zend_objects_clone_members()
H A Dzend_operators.c1781 int pos=Z_STRLEN_P(str)-1; in increment_string() local
1800 while (pos >= 0) { in increment_string()
1801 ch = s[pos]; in increment_string()
1804 s[pos] = 'a'; in increment_string()
1807 s[pos]++; in increment_string()
1813 s[pos] = 'A'; in increment_string()
1816 s[pos]++; in increment_string()
1822 s[pos] = '0'; in increment_string()
1825 s[pos]++; in increment_string()
1836 pos--; in increment_string()
H A Dzend_static_allocator.c27 block->pos = block->bp = (char *) emalloc(block_size); in block_init()
33 char *retval = block->pos; in block_allocate()
34 if ((block->pos += size) >= block->end) { in block_allocate()
H A Dzend_static_allocator.h33 char *pos; member
H A Dzend_stream.c89 stream->mmap.pos = 0; in zend_stream_unmap()
213 file_handle->handle.stream.mmap.pos = 0;
291 file_handle->handle.stream.mmap.pos = 0;
H A Dzend_stream.h46 size_t pos; member
/PHP-5.5/
H A Dacinclude.m41779 __off64_t pos;
1789 { ((struct cookiedata*)cookie)->pos = *position; return 0; }
1797 if (fp && fseek(fp, 8192, SEEK_SET) == 0 && g.pos == 8192)
/PHP-5.5/ext/com_dotnet/
H A Dcom_variant.c39 HashPosition pos; in safe_array_from_zval() local
49 zend_hash_internal_pointer_reset_ex(HASH_OF(z), &pos); in safe_array_from_zval()
50 for (;; zend_hash_move_forward_ex(HASH_OF(z), &pos)) { in safe_array_from_zval()
52 keytype = zend_hash_get_current_key_ex(HASH_OF(z), &strindex, &strindexlen, &intindex, 0, &pos); in safe_array_from_zval()
74 zend_hash_internal_pointer_reset_ex(HASH_OF(z), &pos); in safe_array_from_zval()
75 for (;; zend_hash_move_forward_ex(HASH_OF(z), &pos)) { in safe_array_from_zval()
76 if (FAILURE == zend_hash_get_current_data_ex(HASH_OF(z), (void**)&item, &pos)) { in safe_array_from_zval()
79 zend_hash_get_current_key_ex(HASH_OF(z), &strindex, &strindexlen, &intindex, 0, &pos); in safe_array_from_zval()
H A Dcom_wrapper.c453 HashPosition pos; in generate_dispids() local
469 zend_hash_internal_pointer_reset_ex(Z_OBJPROP_P(disp->object), &pos); in generate_dispids()
472 &namelen, &pid, 0, &pos))) { in generate_dispids()
480 zend_hash_move_forward_ex(Z_OBJPROP_P(disp->object), &pos); in generate_dispids()
503 &name, &namelen, &pid, 0, &pos))) { in generate_dispids()
512 zend_hash_move_forward_ex(Z_OBJPROP_P(disp->object), &pos); in generate_dispids()
585 HashPosition pos; in php_com_wrapper_export_as_sink() local
600 zend_hash_internal_pointer_reset_ex(id_to_name, &pos); in php_com_wrapper_export_as_sink()
602 zend_hash_get_current_key_ex(id_to_name, &name, &namelen, &pid, 0, &pos))) { in php_com_wrapper_export_as_sink()
606 zend_hash_get_current_data_ex(id_to_name, (void**)&ntmp, &pos); in php_com_wrapper_export_as_sink()
[all …]
/PHP-5.5/ext/curl/
H A Dinterface.c2922 HashPosition pos; in PHP_FUNCTION() local
2932 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(arr), &pos); in PHP_FUNCTION()
2933 while (zend_hash_get_current_data_ex(Z_ARRVAL_P(arr), (void **)&entry, &pos) == SUCCESS) { in PHP_FUNCTION()
2934 …if (zend_hash_get_current_key_ex(Z_ARRVAL_P(arr), &string_key, &str_key_len, &option, 0, &pos) != … in PHP_FUNCTION()
2941 zend_hash_move_forward_ex(Z_ARRVAL_P(arr), &pos); in PHP_FUNCTION()
H A Dmulti.c213 zend_llist_position pos; in PHP_FUNCTION() local
217 for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch; in PHP_FUNCTION()
218 pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) { in PHP_FUNCTION()
290 zend_llist_position pos; in PHP_FUNCTION() local
295 for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch; in PHP_FUNCTION()
296 pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) { in PHP_FUNCTION()
343 zend_llist_position pos; in _php_curl_multi_close() local
347 for(pz_ch = (zval *)zend_llist_get_first_ex(&mh->easyh, &pos); pz_ch; in _php_curl_multi_close()
348 pz_ch = (zval *)zend_llist_get_next_ex(&mh->easyh, &pos)) { in _php_curl_multi_close()
/PHP-5.5/ext/date/lib/
H A Dparse_date.c153 uchar *lim, *str, *ptr, *cur, *tok, *pos; member
317 s->pos -= cnt;
326 s->pos = &buf[s->pos - s->bot];
2362 s->pos = cursor; s->line++; in scan()
H A Dparse_date.re151 uchar *lim, *str, *ptr, *cur, *tok, *pos;
315 s->pos -= cnt;
324 s->pos = &buf[s->pos - s->bot];
1710 s->pos = cursor; s->line++;
H A Dparse_iso_intervals.c91 uchar *lim, *str, *ptr, *cur, *tok, *pos; member
404 s->pos = cursor; s->line++; in scan()
H A Dparse_iso_intervals.re89 uchar *lim, *str, *ptr, *cur, *tok, *pos;
384 s->pos = cursor; s->line++;
H A Dparse_tz.c321 (*tzf) = &(tzdb->data[tzdb->index[mid].pos]); in seek_to_tz_position()
H A Dtimelib_structs.h213 unsigned int pos; member

Completed in 139 milliseconds

12345678