Home
last modified time | relevance | path

Searched refs:pos (Results 101 – 125 of 169) sorted by relevance

1234567

/PHP-7.2/ext/com_dotnet/
H A Dcom_variant.c39 HashPosition pos; in safe_array_from_zval() local
47 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(z), &pos); in safe_array_from_zval()
48 for (;; zend_hash_move_forward_ex(Z_ARRVAL_P(z), &pos)) { in safe_array_from_zval()
50 keytype = zend_hash_get_current_key_ex(Z_ARRVAL_P(z), &strindex, &intindex, &pos); in safe_array_from_zval()
72 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(z), &pos); in safe_array_from_zval()
73 for (;; zend_hash_move_forward_ex(Z_ARRVAL_P(z), &pos)) { in safe_array_from_zval()
74 if (NULL == (item = zend_hash_get_current_data_ex(Z_ARRVAL_P(z), &pos))) { in safe_array_from_zval()
77 zend_hash_get_current_key_ex(Z_ARRVAL_P(z), &strindex, &intindex, &pos); in safe_array_from_zval()
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_btree.h55 phpdbg_btree_result *phpdbg_btree_next(phpdbg_btree_position *pos);
H A Dphpdbg_watch.c590 HashPosition pos; local
608 zend_hash_internal_pointer_end_ex(hti->ht, &pos);
609 hti->last = hti->ht->arData + pos;
1103 …phpdbg_btree_position pos = phpdbg_btree_find_between(&PHPDBG_G(watchpoint_tree), page, page + php… local
1105 while ((res = phpdbg_btree_next(&pos))) {
1411 phpdbg_btree_position pos; local
1420 pos = phpdbg_btree_find_between(&PHPDBG_G(watchpoint_tree), 0, -1);
1421 while ((res = phpdbg_btree_next(&pos))) {
/PHP-7.2/ext/standard/
H A Darray.c1422 EG(ht_iterators)[ht_iter].pos = pos; in php_array_walk()
3098 pos++;
3106 pos++;
3124 int pos2 = pos;
3148 pos++;
3168 pos++;
3577 pos = 0;
3584 pos++;
3601 pos++;
6161 pos++;
[all …]
H A Dstring.c3067 old_pos = pos = 0;
3069 key = str + pos;
3073 len = slen - pos;
3091 pos++;
4720 size_t pos, i = 0; local
4778 pos = tp - tbuf;
5782 size_t pos = len; local
5788 while (pos > 0) {
5800 pos--;
5812 size_t pos = 0; local
[all …]
H A Dbrowscap.c360 size_t pos; in php_browscap_parser_cb() local
382 pos = entry->prefix_len = browscap_compute_prefix_len(pattern); in php_browscap_parser_cb()
384 pos = browscap_compute_contains(pattern, pos, in php_browscap_parser_cb()
/PHP-7.2/ext/standard/tests/array/
H A Dcurrent_variation5.phpt8 * Alias to functions: pos
H A Dcurrent_variation3.phpt8 * Alias to functions: pos
H A Dcurrent_error.phpt8 * Alias to functions: pos
H A Dcurrent_variation4.phpt8 * Alias to functions: pos
H A Dcurrent_variation2.phpt8 * Alias to functions: pos
/PHP-7.2/Zend/
H A Dzend_alloc.c611 if (pos != end) {
615 while (pos != end) {
622 bitset[pos] |= tmp;
628 bitset[pos] |= tmp;
643 if (pos != end) {
647 while (pos != end) {
649 bitset[pos++] = 0;
654 bitset[pos] &= ~tmp;
660 bitset[pos] &= ~tmp;
675 if (pos != end) {
[all …]
H A Dzend_stream.c88 stream->mmap.pos = 0; in zend_stream_unmap()
203 file_handle->handle.stream.mmap.pos = 0; in zend_stream_fixup()
281 file_handle->handle.stream.mmap.pos = 0; in zend_stream_fixup()
/PHP-7.2/ext/opcache/
H A Dzend_shared_alloc.h75 size_t pos; /* position for simple stack allocator */ member
H A Dshared_alloc_shm.c121 shared_segments[i].common.pos = 0; in create_segments()
/PHP-7.2/ext/hash/
H A Dhash_whirlpool.c285 int bufferPos = context->buffer.pos; in PHP_WHIRLPOOLUpdate()
374 context->buffer.pos = bufferPos; in PHP_WHIRLPOOLUpdate()
383 int bufferPos = context->buffer.pos; in PHP_WHIRLPOOLFinal()
/PHP-7.2/ext/standard/tests/file/
H A Duserstreams.phpt259 …printf("REAL: pos=(%d,%d,%d) ret=%d line[%d]=`%s'\n", $rpb, $rpa, ftell($tf), $rr, strlen($rline),…
260 …printf("USER: pos=(%d,%d,%d) ret=%d line[%d]=`%s'\n", $upb, $upa, ftell($fp), $ur, strlen($uline),…
299 …echo "FGETS: FAIL\niter=$n user=$uline [pos=" . ftell($fp) . "]\nreal=$rline [pos=" . ftell($tf) .…
/PHP-7.2/ext/soap/
H A Dphp_encoding.c249 xmlChar *pos; in whiteSpace_collapse() local
252 pos = str; in whiteSpace_collapse()
261 pos++; in whiteSpace_collapse()
267 --pos; in whiteSpace_collapse()
269 *pos = '\0'; in whiteSpace_collapse()
2040 int *pos; in get_position_12() local
2058 pos[i] = (pos[i]*10)+(*str-'0'); in get_position_12()
2066 return pos; in get_position_12()
2088 (*pos)[i] = ((*pos)[i]*10)+(*str-'0'); in get_position_ex()
2098 int *pos; in get_position() local
[all …]
/PHP-7.2/ext/mbstring/
H A Dmbstring.c1113 while (*pos && *pos != stop) { in php_mb_rfc1867_getword()
1115 ++pos; in php_mb_rfc1867_getword()
1116 while (*pos && *pos != quote) { in php_mb_rfc1867_getword()
1117 if (*pos == '\\' && pos[1] && pos[1] == quote) { in php_mb_rfc1867_getword()
1118 pos += 2; in php_mb_rfc1867_getword()
1120 ++pos; in php_mb_rfc1867_getword()
1123 if (*pos) { in php_mb_rfc1867_getword()
1124 ++pos; in php_mb_rfc1867_getword()
1143 *line = pos; in php_mb_rfc1867_getword()
4206 if (str[pos] == '\r' && str[pos + 1] == '\n' && (str[pos + 2] == ' ' || str[pos + 2] == '\t')) { \
[all …]
/PHP-7.2/ext/spl/
H A Dspl_iterators.c1677 intern->current.pos = 0; in spl_dual_it_rewind()
1726 intern->current.pos++; in spl_dual_it_next()
2501 if (pos != intern->current.pos && instanceof_function(intern->inner.ce, spl_ce_SeekableIterator)) { in spl_limit_it_seek()
2502 ZVAL_LONG(&zpos, pos); in spl_limit_it_seek()
2507 intern->current.pos = pos; in spl_limit_it_seek()
2515 if (pos < intern->current.pos) { in spl_limit_it_seek()
2518 while (pos > intern->current.pos && spl_dual_it_valid(intern) == SUCCESS) { in spl_limit_it_seek()
2576 zend_long pos; in SPL_METHOD() local
2583 spl_limit_it_seek(intern, pos); in SPL_METHOD()
2584 RETURN_LONG(intern->current.pos); in SPL_METHOD()
[all …]
H A Dspl_iterators.h137 zend_long pos; member
/PHP-7.2/ext/spl/internal/
H A Dsplfileobject.inc141 * @param pos new file position
146 function fseek($pos, $whence = SEEK_SET)
148 return fseek($this->fp, $pos, $whence);
/PHP-7.2/ext/standard/html_tables/
H A Dhtml_table_gen.php730 $pos = 0;
733 $hash = (int)(((int)(((int)($hash << 5)) + $hash)) + ord($str[$pos++]))
/PHP-7.2/ext/mysqli/
H A Dmysqli_nonapi.c479 zend_llist_position pos; local
480 …ND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(mysql->mysql->data->error_info->error_list, &pos);
482 …LND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(mysql->mysql->data->error_info->error_list, &pos))
520 zend_llist_position pos; local
521 …QLND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(stmt->stmt->data->error_info->error_list, &pos);
523 …SQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(stmt->stmt->data->error_info->error_list, &pos))
/PHP-7.2/sapi/cgi/
H A Dcgi_main.c385 zend_llist_position pos; in sapi_cgi_send_headers() local
420 h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
428 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
454 h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
469 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
476 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
2625 zend_long pos = zend_ftell(file_handle.handle.fp); local
2626 zend_fseek(file_handle.handle.fp, pos - 1, SEEK_SET);
2643 zend_off_t pos = php_stream_tell((php_stream*)file_handle.handle.stream.handle); local
2644 php_stream_seek((php_stream*)file_handle.handle.stream.handle, pos - 1, SEEK_SET);

Completed in 146 milliseconds

1234567