Home
last modified time | relevance | path

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

12345

/PHP-8.0/ext/dba/libcdb/
H A Dcdb.c44 static int cdb_match(struct cdb *c, char *key, unsigned int len, uint32 pos) in cdb_match()
102 int cdb_read(struct cdb *c, char *buf, unsigned int len, uint32 pos) in cdb_read()
130 uint32 pos; in cdb_findnext() local
/PHP-8.0/ext/opcache/jit/dynasm/
H A Ddasm_mips.h45 #define DASM_POS2IDX(pos) ((pos)&0x00ffffff) argument
46 #define DASM_POS2BIAS(pos) ((pos)&0xff000000) argument
48 #define DASM_POS2SEC(pos) ((pos)>>24) argument
49 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) argument
59 int pos; /* Biased buffer position. */ member
174 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local
287 int pos = DASM_SEC2POS(secnum); in dasm_link() local
394 int pos = D->pclabels[pc]; in dasm_getpclabel() local
H A Ddasm_ppc.h45 #define DASM_POS2IDX(pos) ((pos)&0x00ffffff) argument
46 #define DASM_POS2BIAS(pos) ((pos)&0xff000000) argument
48 #define DASM_POS2SEC(pos) ((pos)>>24) argument
49 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) argument
59 int pos; /* Biased buffer position. */ member
174 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local
291 int pos = DASM_SEC2POS(secnum); in dasm_link() local
394 int pos = D->pclabels[pc]; in dasm_getpclabel() local
H A Ddasm_arm.h46 #define DASM_POS2IDX(pos) ((pos)&0x00ffffff) argument
47 #define DASM_POS2BIAS(pos) ((pos)&0xff000000) argument
49 #define DASM_POS2SEC(pos) ((pos)>>24) argument
50 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) argument
60 int pos; /* Biased buffer position. */ member
183 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local
307 int pos = DASM_SEC2POS(secnum); in dasm_link() local
431 int pos = D->pclabels[pc]; in dasm_getpclabel() local
H A Ddasm_arm64.h46 #define DASM_POS2IDX(pos) ((pos)&0x00ffffff) argument
47 #define DASM_POS2BIAS(pos) ((pos)&0xff000000) argument
49 #define DASM_POS2SEC(pos) ((pos)>>24) argument
50 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) argument
60 int pos; /* Biased buffer position. */ member
223 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local
362 int pos = DASM_SEC2POS(secnum); in dasm_link() local
493 int pos = D->pclabels[pc]; in dasm_getpclabel() local
H A Ddasm_x86.h44 #define DASM_POS2IDX(pos) ((pos)&0x00ffffff) argument
45 #define DASM_POS2BIAS(pos) ((pos)&0xff000000) argument
47 #define DASM_POS2SEC(pos) ((pos)>>24) argument
48 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) argument
58 int pos; /* Biased buffer position. */ member
176 int pos = sec->pos, ofs = sec->ofs, mrm = -1; in dasm_put() local
307 int pos = DASM_SEC2POS(secnum); in dasm_link() local
494 int pos = D->pclabels[pc]; in dasm_getpclabel() local
/PHP-8.0/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.h42 size_t pos; member
49 size_t pos; member
/PHP-8.0/Zend/
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()
271 ZEND_API void *zend_llist_get_last_ex(zend_llist *l, zend_llist_position *pos) 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()
298 ZEND_API void *zend_llist_get_prev_ex(zend_llist *l, zend_llist_position *pos) in zend_llist_get_prev_ex()
H A Dzend_weakrefs.c485 HashPosition *pos = zend_weakmap_iterator_get_pos_ptr(iter); in zend_weakmap_iterator_valid() local
493 HashPosition *pos = zend_weakmap_iterator_get_pos_ptr(iter); in zend_weakmap_iterator_get_current_data() local
501 HashPosition *pos = zend_weakmap_iterator_get_pos_ptr(iter); in zend_weakmap_iterator_get_current_key() local
517 HashPosition *pos = zend_weakmap_iterator_get_pos_ptr(iter); in zend_weakmap_iterator_move_forward() local
525 HashPosition *pos = zend_weakmap_iterator_get_pos_ptr(iter); in zend_weakmap_iterator_rewind() local
/PHP-8.0/ext/standard/
H A Dformatted_print.c52 php_sprintf_appendchar(zend_string **buffer, size_t *pos, char add) in php_sprintf_appendchar()
65 php_sprintf_appendchars(zend_string **buffer, size_t *pos, char *add, size_t len) in php_sprintf_appendchars()
84 php_sprintf_appendstring(zend_string **buffer, size_t *pos, char *add, in php_sprintf_appendstring()
141 php_sprintf_appendint(zend_string **buffer, size_t *pos, zend_long number, in php_sprintf_appendint()
185 php_sprintf_appenduint(zend_string **buffer, size_t *pos, in php_sprintf_appenduint()
217 php_sprintf_appenddouble(zend_string **buffer, size_t *pos, in php_sprintf_appenddouble()
324 php_sprintf_append2n(zend_string **buffer, size_t *pos, zend_long number, in php_sprintf_append2n()
/PHP-8.0/sapi/phpdbg/
H A Dphpdbg_wait.c46 HashPosition pos[2]; member
201 phpdbg_intersect_ptr pos; in phpdbg_webdata_decompress() local
238 zend_llist_position pos; in phpdbg_webdata_decompress() local
H A Dphpdbg_btree.c123 phpdbg_btree_position pos; in phpdbg_btree_find_between() local
132 phpdbg_btree_result *phpdbg_btree_next(phpdbg_btree_position *pos) { in phpdbg_btree_next()
H A Dphpdbg_cmd.c29 size_t pos = 0; in ZEND_EXTERN_MODULE_GLOBALS() local
626 size_t pos = 0; in phpdbg_stack_resolve() local
/PHP-8.0/ext/curl/
H A Dmulti.c128 zend_llist_position pos; in _php_curl_multi_find_easy_handle() local
214 zend_llist_position pos; in PHP_FUNCTION() local
311 zend_llist_position pos; in PHP_FUNCTION() local
536 zend_llist_position pos; in curl_multi_free_obj() local
579 zend_llist_position pos; in curl_multi_get_gc() local
/PHP-8.0/ext/intl/grapheme/
H A Dgrapheme_util.c235 int ret_len, pos; in grapheme_split_string() local
272 int pos = 0; in grapheme_count_graphemes() local
295 int32_t pos; in grapheme_get_haystack_offset() local
/PHP-8.0/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c175 int pos, ent = 0; in mbfl_filt_conv_html_dec() local
284 int status, pos = 0; in mbfl_filt_conv_html_dec_flush() local
/PHP-8.0/ext/gd/libgd/
H A Dgd_wbmp.c104 int x, y, pos; in _gdImageWBMPCtx() local
147 int col, row, pos; in gdImageCreateFromWBMPCtx() local
/PHP-8.0/ext/dba/
H A Ddba_cdb.c56 uint32 pos; /* current position for traversing */ member
136 # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos) argument
140 # define php_cdb_read(cdb, buf, len, pos) cdb_read(cdb, buf, len, pos) argument
/PHP-8.0/ext/hash/
H A Dphp_hash_sha3.h25 uint32_t pos; member
H A Dphp_hash_whirlpool.h25 int pos; member
/PHP-8.0/main/streams/
H A Dglob_wrapper.c102 const char *pos, *gpath = path; in php_glob_stream_path_split() local
202 const char *tmp, *pos; in php_glob_stream_opener() local
/PHP-8.0/ext/intl/breakiterator/
H A Dcodepointiterator_internal.cpp157 int32_t pos = (int32_t)utext_nativeLength(this->fText); in last() local
284 int64_t pos = utext_getNativeIndex(this->fText); in refreshInputText() local
H A Dbreakiterator_iterators.cpp67 int32_t pos = biter->next(); in _breakiterator_move_forward() local
78 int32_t pos = biter->first(); in _breakiterator_rewind() local
/PHP-8.0/ext/tokenizer/
H A Dtokenizer.stub.php14 final public function __construct(int $id, string $text, int $line = -1, int $pos = -1) {}
/PHP-8.0/ext/opcache/
H A Dzend_accelerator_blacklist.h36 int pos; member

Completed in 74 milliseconds

12345