Home
last modified time | relevance | path

Searched refs:pos (Results 126 – 150 of 159) sorted by relevance

1234567

/PHP-7.4/sapi/cgi/
H A Dcgi_main.c374 zend_llist_position pos; in sapi_cgi_send_headers() local
410 h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
418 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
445 h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
460 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
467 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cgi_send_headers()
/PHP-7.4/Zend/
H A Dzend_operators.c2373 size_t pos=Z_STRLEN_P(str)-1; in increment_string() local
2397 ch = s[pos]; in increment_string()
2400 s[pos] = 'a'; in increment_string()
2403 s[pos]++; in increment_string()
2409 s[pos] = 'A'; in increment_string()
2412 s[pos]++; in increment_string()
2418 s[pos] = '0'; in increment_string()
2421 s[pos]++; in increment_string()
2432 } while (pos-- > 0); in increment_string()
H A Dzend_vm_def.h6466 HashPosition pos; variable
6495 pos++;
6538 pos++;
6554 EG(ht_iterators)[Z_FE_ITER_P(array)].pos = pos + 1;
6619 HashPosition pos; variable
6648 pos++;
6658 EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos + 1;
6699 pos++;
6715 EG(ht_iterators)[Z_FE_ITER_P(EX_VAR(opline->op1.var))].pos = pos + 1;
9366 HashPosition pos; variable
[all …]
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.c293 n = src->pos; in mbfl_convert_filter_devcat()
/PHP-7.4/ext/ffi/
H A Dphp_ffi.h54 unsigned const char *pos; variable
H A Dffi.c559 size_t pos = bit % 8; in zend_ffi_bit_field_read() local
567 return (*p >> pos) & mask; in zend_ffi_bit_field_read()
571 if (pos != 0) { in zend_ffi_bit_field_read()
572 size_t num_bits = 8 - pos; in zend_ffi_bit_field_read()
573 mask = ((1U << num_bits) - 1U) << pos; in zend_ffi_bit_field_read()
574 val = (*p++ >> pos) & mask; in zend_ffi_bit_field_read()
620 size_t pos = bit % 8; in zend_ffi_zval_to_bit_field() local
625 mask = ((1U << field->bits) - 1U) << pos; in zend_ffi_zval_to_bit_field()
631 if (pos != 0) { in zend_ffi_zval_to_bit_field()
632 size_t num_bits = 8 - pos; in zend_ffi_zval_to_bit_field()
[all …]
H A Dffi.g64 #define yy_pos FFI_G(pos)
/PHP-7.4/ext/date/lib/
H A Dparse_iso_intervals.re73 uchar *lim, *str, *ptr, *cur, *tok, *pos;
310 s->pos = cursor; s->line++;
H A Dtimelib.h307 unsigned int pos; member
H A Dparse_iso_intervals.c75 uchar *lim, *str, *ptr, *cur, *tok, *pos; member
329 s->pos = cursor; s->line++; in scan()
H A Dparse_date.re134 uchar *lim, *str, *ptr, *cur, *tok, *pos;
310 s->pos -= cnt;
319 s->pos = &buf[s->pos - s->bot];
1812 s->pos = cursor; s->line++;
H A Dparse_tz.c432 (*tzf) = &(tzdb->data[tzdb->index[mid].pos]); in seek_to_tz_position()
/PHP-7.4/ext/phar/
H A Dzip.c1223 char *pos; in phar_zip_flush() local
1332 if ((pos = php_stristr(tmp, halt_stub, len, sizeof(halt_stub) - 1)) == NULL) { in phar_zip_flush()
1342 pos = user_stub + (pos - tmp); in phar_zip_flush()
1345 len = pos - user_stub + 18; in phar_zip_flush()
H A Dutil.c1369 int pos = -1; in phar_hex_str() local
1375 (*signature)[++pos] = hexChars[((const unsigned char *)digest)[len] >> 4]; in phar_hex_str()
1376 (*signature)[++pos] = hexChars[((const unsigned char *)digest)[len] & 0x0F]; in phar_hex_str()
1378 (*signature)[++pos] = '\0'; in phar_hex_str()
1379 return pos; in phar_hex_str()
/PHP-7.4/ext/zip/
H A Dphp_zip.c1833 int pos = 0; local
1846 pos = ze_obj->buffers_cnt++;
1850 pos = 0;
1852 ze_obj->buffers[pos] = (char *)safe_emalloc(ZSTR_LEN(buffer), 1, 1);
1853 memcpy(ze_obj->buffers[pos], ZSTR_VAL(buffer), ZSTR_LEN(buffer) + 1);
1855 zs = zip_source_buffer(intern, ze_obj->buffers[pos], ZSTR_LEN(buffer), 0);
/PHP-7.4/ext/spl/
H A Dspl_dllist.c172 int pos = 0; in spl_ptr_llist_offset() local
180 while (current && pos < offset) { in spl_ptr_llist_offset()
181 pos++; in spl_ptr_llist_offset()
H A Dspl_array.c136 zend_hash_internal_pointer_reset_ex(ht, &EG(ht_iterators)[intern->ht_iter].pos); in spl_array_create_ht_iter()
146 return &EG(ht_iterators)[intern->ht_iter].pos; in spl_array_get_pos_ptr()
/PHP-7.4/main/streams/
H A Dstreams.c174 zend_llist_position pos; in php_stream_display_wrapper_errors() local
184 for (err_buf_p = zend_llist_get_first_ex(err_list, &pos), i = 0; in php_stream_display_wrapper_errors()
186 err_buf_p = zend_llist_get_next_ex(err_list, &pos), i++) { in php_stream_display_wrapper_errors()
194 for (err_buf_p = zend_llist_get_first_ex(err_list, &pos), i = 0; in php_stream_display_wrapper_errors()
196 err_buf_p = zend_llist_get_next_ex(err_list, &pos), i++) { in php_stream_display_wrapper_errors()
/PHP-7.4/ext/sockets/
H A Dconversions.c149 zend_llist_position pos; in do_from_to_zval_err() local
155 for (node = zend_llist_get_first_ex(keys, &pos); in do_from_to_zval_err()
157 node = zend_llist_get_next_ex(keys, &pos)) { in do_from_to_zval_err()
/PHP-7.4/ext/xml/
H A Dxml.c644 size_t pos = 0; in xml_utf8_decode() local
664 while (pos < len) { in xml_utf8_decode()
666 c = php_next_utf8_char((const unsigned char*)s, (size_t) len, &pos, &status); in xml_utf8_decode()
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch1189 size_t pos = CDF_SEC_POS(h, id);
1191 - return cdf_read(info, CAST(off_t, pos), RCAST(char *, buf) + offs, len);
1193 + return cdf_read(info, CAST(zend_off_t, pos), RCAST(char *, buf) + offs, len);
1201 size_t pos = CDF_SHORT_SEC_POS(h, id);
1204 if (pos + len > CDF_SEC_SIZE(h) * sst->sst_len) {
2905 - off_t pos = CAST(off_t, -1);
2969 - pos = lseek(fd, CAST(off_t, 0), SEEK_CUR);
3030 - if (pos != CAST(off_t, -1))
3031 - (void)lseek(fd, pos, SEEK_SET);
/PHP-7.4/win32/
H A Dsendmail.c199 char *pos = NULL; in TSendMail() local
/PHP-7.4/sapi/cli/
H A Dphp_cli_server.c597 zend_llist_position pos; in sapi_cli_server_send_headers() local
612 h = (sapi_header_struct*)zend_llist_get_first_ex(&sapi_headers->headers, &pos); in sapi_cli_server_send_headers()
618 h = (sapi_header_struct*)zend_llist_get_next_ex(&sapi_headers->headers, &pos); in sapi_cli_server_send_headers()
/PHP-7.4/ext/iconv/
H A Diconv.c576 size_t pos = out_p - ZSTR_VAL(out_buffer); in php_iconv_string() local
578 out_p = ZSTR_VAL(out_buffer) + pos; in php_iconv_string()
/PHP-7.4/ext/standard/
H A Dbasic_functions.c1993 ZEND_ARG_INFO(0, pos)
3404 PHP_FALIAS(pos, current, arginfo_current)
4392 int pos = 0; local
4409 argv[pos++] = estrdup(ZSTR_VAL(arg_str));

Completed in 181 milliseconds

1234567