Home
last modified time | relevance | path

Searched refs:pos (Results 76 – 100 of 165) sorted by relevance

1234567

/PHP-7.0/ext/mbstring/libmbfl/tests/
H A Demoji.c75 dev.pos += strlen(str); in main()
104 dev2.pos += strlen(dev2.buffer); in main()
/PHP-7.0/ext/gd/libgd/
H A Dgd_io.c134 int gdSeek (gdIOCtx * ctx, const int pos) in gdSeek() argument
137 return ((ctx->seek) (ctx, pos)); in gdSeek()
/PHP-7.0/ext/pdo/
H A Dpdo_sql_parser.c384 char *pos; member
431 plc->pos = s.tok; in pdo_parse_params()
486 if ((param = zend_hash_str_find_ptr(params, plc->pos, plc->len)) == NULL) { in pdo_parse_params()
511 param = zend_hash_str_find_ptr(params, plc->pos, plc->len); in pdo_parse_params()
615 t = plc->pos - ptr; in pdo_parse_params()
622 ptr = plc->pos + plc->len; in pdo_parse_params()
654 name = estrndup(plc->pos, plc->len); in pdo_parse_params()
694 name = estrndup(plc->pos, plc->len); in pdo_parse_params()
H A Dpdo_sql_parser.re70 char *pos;
117 plc->pos = s.tok;
172 if ((param = zend_hash_str_find_ptr(params, plc->pos, plc->len)) == NULL) {
197 param = zend_hash_str_find_ptr(params, plc->pos, plc->len);
301 t = plc->pos - ptr;
308 ptr = plc->pos + plc->len;
340 name = estrndup(plc->pos, plc->len);
380 name = estrndup(plc->pos, plc->len);
/PHP-7.0/ext/dba/libcdb/
H A Dcdb_make.h52 uint32 pos; member
/PHP-7.0/ext/spl/
H A Dphp_spl.c311 char *pos, *pos1; in PHP_FUNCTION() local
319 pos = SPL_DEFAULT_FILE_EXTENSIONS; in PHP_FUNCTION()
322 pos = ZSTR_VAL(file_exts); in PHP_FUNCTION()
328 while (pos && *pos && !EG(exception)) { in PHP_FUNCTION()
329 pos1 = strchr(pos, ','); in PHP_FUNCTION()
331 pos1_len = (int)(pos1 - pos); in PHP_FUNCTION()
335 if (spl_autoload(class_name, lc_name, pos, pos1_len)) { in PHP_FUNCTION()
338 pos = pos1 ? pos1 + 1 : NULL; in PHP_FUNCTION()
405 HashPosition pos; in PHP_FUNCTION() local
411 zend_hash_internal_pointer_reset_ex(SPL_G(autoload_functions), &pos); in PHP_FUNCTION()
[all …]
/PHP-7.0/ext/mysqli/
H A Dmysqli_prop.c194 zend_llist_position pos; in link_error_list_read() local
195 …ND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(mysql->mysql->data->error_info->error_list, &pos); in link_error_list_read()
197 …LND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(mysql->mysql->data->error_info->error_list, &pos)) in link_error_list_read()
380 zend_llist_position pos; in stmt_error_list_read() local
381 …QLND_ERROR_LIST_ELEMENT *) zend_llist_get_first_ex(stmt->stmt->data->error_info->error_list, &pos); in stmt_error_list_read()
383 …SQLND_ERROR_LIST_ELEMENT *) zend_llist_get_next_ex(stmt->stmt->data->error_info->error_list, &pos)) in stmt_error_list_read()
/PHP-7.0/ext/mbstring/oniguruma/
H A Dreggnu.c64 re_match(regex_t* reg, const char* str, int size, int pos, in re_match() argument
68 (UChar* )(str + pos), regs, ONIG_OPTION_NONE); in re_match()
/PHP-7.0/main/streams/
H A Dcast.c240 zend_off_t pos; in _php_stream_cast() local
246 pos = php_stream_tell(stream); in _php_stream_cast()
247 if (pos > 0) { in _php_stream_cast()
248 zend_fseek(*ret, pos, SEEK_SET); in _php_stream_cast()
/PHP-7.0/main/
H A Dfastcgi.c191 char *pos; member
266 h->data->pos = h->data->data; in fcgi_hash_init()
309 h->data->pos = h->data->data; in fcgi_hash_clean()
320 p->pos = p->data; in fcgi_hash_strndup()
321 p->end = p->pos + seg_size; in fcgi_hash_strndup()
325 ret = h->data->pos; in fcgi_hash_strndup()
328 h->data->pos += str_len + 1; in fcgi_hash_strndup()
1611 int pos = 0; local
1626 pos += 0xfff8;
1629 pad = (((len - pos) + 7) & ~7) - (len - pos);
[all …]
/PHP-7.0/ext/spl/tests/
H A Diterator_007.phpt76 $pos =0;
83 if ($pos++ > 1) {
/PHP-7.0/ext/standard/tests/strings/
H A Dstrrpos_negative_offset.phpt2 strr[i]pos() function with negative offset
/PHP-7.0/Zend/
H A Dzend_hash.h164 #define zend_hash_has_more_elements_ex(ht, pos) \ argument
165 (zend_hash_get_current_key_type_ex(ht, pos) == HASH_KEY_NON_EXISTENT ? FAILURE : SUCCESS)
166 ZEND_API int ZEND_FASTCALL zend_hash_move_forward_ex(HashTable *ht, HashPosition *pos);
167 ZEND_API int ZEND_FASTCALL zend_hash_move_backwards_ex(HashTable *ht, HashPosition *pos);
170 ZEND_API int ZEND_FASTCALL zend_hash_get_current_key_type_ex(HashTable *ht, HashPosition *pos);
171 ZEND_API zval* ZEND_FASTCALL zend_hash_get_current_data_ex(HashTable *ht, HashPosition *pos);
172 ZEND_API void ZEND_FASTCALL zend_hash_internal_pointer_reset_ex(HashTable *ht, HashPosition *pos);
173 ZEND_API void ZEND_FASTCALL zend_hash_internal_pointer_end_ex(HashTable *ht, HashPosition *pos);
226 ZEND_API uint32_t ZEND_FASTCALL zend_hash_iterator_add(HashTable *ht, HashPosition pos);
754 static zend_always_inline void *zend_hash_get_current_data_ptr_ex(HashTable *ht, HashPosition *pos) in zend_hash_get_current_data_ptr_ex() argument
[all …]
H A Dzend_stream.h49 size_t pos; member
/PHP-7.0/ext/phar/
H A Dtar.c209 size_t pos = 0, read, totalsize; in phar_parse_tarfile() local
252 pos += sizeof(buf); in phar_parse_tarfile()
257 pos = php_stream_tell(fp); in phar_parse_tarfile()
466 entry.offset = entry.offset_abs = pos; /* header_offset unused in tar */ in phar_parse_tarfile()
555 php_stream_seek(fp, pos, SEEK_SET); in phar_parse_tarfile()
701 size_t pos; in phar_tar_writeheaders_int() local
790 pos = php_stream_tell(fp->new); /* save start of file within tar */ in phar_tar_writeheaders_int()
841 entry->offset = entry->offset_abs = pos; in phar_tar_writeheaders_int()
1004 char *pos; in phar_tar_flush() local
1056 pos = user_stub + (pos - tmp); in phar_tar_flush()
[all …]
/PHP-7.0/ext/intl/tests/
H A Ddateformat_parse_localtime_parsepos.phpt2 datefmt_parse_localtime() with parse pos icu <= 4.2
10 * Test for the datefmt_parse_localtime function with parse pos
/PHP-7.0/ext/dba/libflatfile/
H A Dflatfile.c112 size_t pos; in flatfile_delete() local
125 pos = php_stream_tell(dba->fp); in flatfile_delete()
131 php_stream_seek(dba->fp, pos, SEEK_SET); in flatfile_delete()
/PHP-7.0/ext/soap/interop/
H A Dclient_round2_interop.php264 $pos = strpos($success,':');
265 if ($pos !== false) {
266 $success = substr($success,$pos+1);
515 $pos = strpos($res,':');
516 if ($pos !== false) {
517 $res = substr($res,$pos+1);
/PHP-7.0/ext/opcache/
H A Dshared_alloc_posix.c74 shared_segment->common.pos = 0; in create_segments()
/PHP-7.0/ext/dba/libinifile/
H A Dinifile.h36 size_t pos; member
/PHP-7.0/sapi/phpdbg/
H A Dphpdbg_btree.h53 phpdbg_btree_result *phpdbg_btree_next(phpdbg_btree_position *pos);
/PHP-7.0/ext/soap/
H A Dphp_http.c1224 char *pos = NULL; in make_http_soap_request() local
1226 pos = strstr(content_type,";"); in make_http_soap_request()
1227 if (pos != NULL) { in make_http_soap_request()
1228 cmplen = pos - content_type; in make_http_soap_request()
1338 char *pos, *tmp = NULL; in get_http_header_value() local
1346 pos = headers; in get_http_header_value()
1353 tmp = pos + typelen; in get_http_header_value()
1364 pos = strchr(pos, '\n'); in get_http_header_value()
1365 if (pos) { in get_http_header_value()
1366 pos++; in get_http_header_value()
[all …]
/PHP-7.0/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.0/ext/standard/tests/array/
H A Dcurrent_variation5.phpt8 * Alias to functions: pos
H A Dcurrent_variation3.phpt8 * Alias to functions: pos

Completed in 71 milliseconds

1234567