Home
last modified time | relevance | path

Searched defs:pos (Results 1 – 25 of 104) sorted by relevance

12345

/PHP-7.2/ext/dba/libcdb/
H A Dcdb.c46 static int cdb_match(struct cdb *c, char *key, unsigned int len, uint32 pos) in cdb_match()
104 int cdb_read(struct cdb *c, char *buf, unsigned int len, uint32 pos) in cdb_read()
132 uint32 pos; in cdb_findnext() local
/PHP-7.2/ext/standard/
H A Dformatted_print.c60 php_sprintf_appendchar(zend_string **buffer, size_t *pos, char add) in php_sprintf_appendchar()
73 php_sprintf_appendstring(zend_string **buffer, size_t *pos, char *add, in php_sprintf_appendstring()
130 php_sprintf_appendint(zend_string **buffer, size_t *pos, zend_long number, in php_sprintf_appendint()
174 php_sprintf_appenduint(zend_string **buffer, size_t *pos, in php_sprintf_appenduint()
206 php_sprintf_appenddouble(zend_string **buffer, size_t *pos, in php_sprintf_appenddouble()
310 php_sprintf_append2n(zend_string **buffer, size_t *pos, zend_long number, in php_sprintf_append2n()
341 php_sprintf_getnumber(char *buffer, size_t *pos) in php_sprintf_getnumber()
/PHP-7.2/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.h42 int pos; member
49 int pos; member
/PHP-7.2/Zend/
H A Dzend_llist.c260 ZEND_API void *zend_llist_get_first_ex(zend_llist *l, zend_llist_position *pos) in zend_llist_get_first_ex()
273 ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos) in zend_llist_get_last_ex()
286 ZEND_API void *zend_llist_get_next_ex(zend_llist *l, zend_llist_position *pos) in zend_llist_get_next_ex()
300 ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos) in zend_llist_get_prev_ex()
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_wait.c48 HashPosition pos[2]; member
207 phpdbg_intersect_ptr pos; in phpdbg_webdata_decompress() local
244 zend_llist_position pos; in phpdbg_webdata_decompress() local
H A Dphpdbg_btree.c125 phpdbg_btree_position pos; in phpdbg_btree_find_between() local
134 phpdbg_btree_result *phpdbg_btree_next(phpdbg_btree_position *pos) { in phpdbg_btree_next()
H A Dphpdbg_cmd.c31 size_t pos = 0; in ZEND_EXTERN_MODULE_GLOBALS() local
628 size_t pos = 0; in phpdbg_stack_resolve() local
H A Dphpdbg_webdata_transfer.c82 zend_llist_position pos; in phpdbg_webdata_compress() local
/PHP-7.2/ext/intl/grapheme/
H A Dgrapheme_util.c240 int ret_len, pos; in grapheme_split_string() local
277 int pos = 0; in grapheme_count_graphemes() local
300 int32_t pos; in grapheme_get_haystack_offset() local
/PHP-7.2/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c182 int pos, ent = 0; in mbfl_filt_conv_html_dec() local
291 int status, pos = 0; in mbfl_filt_conv_html_dec_flush() local
/PHP-7.2/ext/gd/libgd/
H A Dgd_wbmp.c97 int x, y, pos; in gdImageWBMPCtx() local
135 int col, row, pos; in gdImageCreateFromWBMPCtx() local
H A Dgd_io_dp.c35 int pos; member
149 static int dynamicSeek (struct gdIOCtx *ctx, const int pos) in dynamicSeek()
/PHP-7.2/ext/dba/
H A Ddba_cdb.c60 uint32 pos; /* current position for traversing */ member
140 # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos) argument
144 # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos) argument
/PHP-7.2/ext/hash/
H A Dphp_hash_sha3.h27 uint32_t pos; member
H A Dphp_hash_whirlpool.h29 int pos; member
/PHP-7.2/ext/mysqli/
H A Dmysqli_embedded.c42 HashPosition pos; in PHP_FUNCTION() local
H A Dmysqli_prop.c192 zend_llist_position pos; in link_error_list_read() local
382 zend_llist_position pos; in stmt_error_list_read() local
/PHP-7.2/main/streams/
H A Dglob_wrapper.c114 const char *pos, *gpath = path; in php_glob_stream_path_split() local
214 const char *tmp, *pos; in php_glob_stream_opener() local
/PHP-7.2/ext/curl/
H A Dmulti.c144 zend_llist_position pos; in _php_curl_multi_find_easy_handle() local
281 zend_llist_position pos; in PHP_FUNCTION() local
416 zend_llist_position pos; in _php_curl_multi_close() local
/PHP-7.2/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp154 int32_t pos = (int32_t)utext_nativeLength(this->fText); in last() local
281 int64_t pos = utext_getNativeIndex(this->fText); in refreshInputText() local
H A Dbreakiterator_iterators.cpp68 int32_t pos = biter->next(); in _breakiterator_move_forward() local
79 int32_t pos = biter->first(); in _breakiterator_rewind() local
/PHP-7.2/ext/opcache/
H A Dzend_accelerator_blacklist.h36 int pos; member
/PHP-7.2/ext/mbstring/oniguruma/src/
H A Dregint.h312 #define BS_ROOM(bs,pos) (bs)[pos / BITS_IN_ROOM] argument
313 #define BS_BIT(pos) (1 << (pos % BITS_IN_ROOM)) argument
315 #define BITSET_AT(bs, pos) (BS_ROOM(bs,pos) & BS_BIT(pos)) argument
316 #define BITSET_SET_BIT(bs, pos) BS_ROOM(bs,pos) |= BS_BIT(pos) argument
317 #define BITSET_CLEAR_BIT(bs, pos) BS_ROOM(bs,pos) &= ~(BS_BIT(pos)) argument
318 #define BITSET_INVERT_BIT(bs, pos) BS_ROOM(bs,pos) ^= BS_BIT(pos) argument
351 #define BBUF_WRITE(buf,pos,bytes,n) do{\ argument
358 #define BBUF_WRITE1(buf,pos,byte) do{\ argument
388 #define BBUF_INSERT(buf,pos,bytes,n) do {\ argument
398 #define BBUF_GET_BYTE(buf, pos) (buf)->p[(pos)] argument
/PHP-7.2/main/
H A Dgetopt.c91 const char *pos; in php_getopt() local
/PHP-7.2/ext/phar/
H A Dtar.c209 size_t pos = 0, read, totalsize; in phar_parse_tarfile() local
701 size_t pos; in phar_tar_writeheaders_int() local
1018 char *pos; in phar_tar_flush() local

Completed in 46 milliseconds

12345