Home
last modified time | relevance | path

Searched defs:pos (Results 76 – 100 of 135) sorted by last modified time

123456

/php-src/ext/opcache/jit/ir/dynasm/
H A Ddasm_arm64.h48 #define DASM_POS2IDX(pos) ((pos)&0x00ffffff) argument
49 #define DASM_POS2BIAS(pos) ((pos)&0xff000000) argument
51 #define DASM_POS2SEC(pos) ((pos)>>24) argument
52 #define DASM_POS2PTR(D, pos) (D->sections[DASM_POS2SEC(pos)].rbuf + (pos)) argument
62 int pos; /* Biased buffer position. */ member
225 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local
377 int pos = DASM_SEC2POS(secnum); in dasm_link() local
545 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
171 int pos = sec->pos, ofs = sec->ofs, mrm = -1; in dasm_put() local
306 int pos = DASM_SEC2POS(secnum); in dasm_link() local
517 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
169 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local
286 int pos = DASM_SEC2POS(secnum); in dasm_link() local
393 int pos = D->pclabels[pc]; in dasm_getpclabel() local
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
169 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local
282 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
178 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local
303 int pos = DASM_SEC2POS(secnum); in dasm_link() local
431 int pos = D->pclabels[pc]; in dasm_getpclabel() local
/php-src/Zend/
H A Dzend_hash.c493 …tic zend_always_inline HashPosition _zend_hash_get_valid_pos(const HashTable *ht, HashPosition pos) in _zend_hash_get_valid_pos()
532 ZEND_API uint32_t ZEND_FASTCALL zend_hash_iterator_add(HashTable *ht, HashPosition pos) in zend_hash_iterator_add()
2725 ZEND_API void ZEND_FASTCALL zend_hash_internal_pointer_reset_ex(HashTable *ht, HashPosition *pos) in zend_hash_internal_pointer_reset_ex()
2736 ZEND_API void ZEND_FASTCALL zend_hash_internal_pointer_end_ex(HashTable *ht, HashPosition *pos) in zend_hash_internal_pointer_end_ex()
2765 ZEND_API zend_result ZEND_FASTCALL zend_hash_move_forward_ex(HashTable *ht, HashPosition *pos) in zend_hash_move_forward_ex()
2804 ZEND_API zend_result ZEND_FASTCALL zend_hash_move_backwards_ex(HashTable *ht, HashPosition *pos) in zend_hash_move_backwards_ex()
2838 …ey_ex(const HashTable *ht, zend_string **str_index, zend_ulong *num_index, const HashPosition *pos) in zend_hash_get_current_key_ex()
2862 …FASTCALL zend_hash_get_current_key_zval_ex(const HashTable *ht, zval *key, const HashPosition *pos) in zend_hash_get_current_key_zval_ex()
2885 ZEND_API int ZEND_FASTCALL zend_hash_get_current_key_type_ex(HashTable *ht, HashPosition *pos) in zend_hash_get_current_key_type_ex()
2907 ZEND_API zval* ZEND_FASTCALL zend_hash_get_current_data_ex(HashTable *ht, HashPosition *pos) in zend_hash_get_current_data_ex()
H A Dzend_hash.h259 …c zend_always_inline zend_result zend_hash_has_more_elements_ex(HashTable *ht, HashPosition *pos) { in zend_hash_has_more_elements_ex()
963 static zend_always_inline void *zend_hash_get_current_data_ptr_ex(HashTable *ht, HashPosition *pos) in zend_hash_get_current_data_ptr_ex()
/php-src/ext/pdo_pgsql/
H A Dpgsql_driver.c165 zend_off_t pos = lo_lseek64(self->conn, self->lfd, offset, whence); in pgsql_lob_seek() local
167 zend_off_t pos = lo_lseek(self->conn, self->lfd, offset, whence); in pgsql_lob_seek() local
/php-src/ext/spl/
H A Dspl_iterators.c114 zend_long pos; member
2197 static inline void spl_limit_it_seek(spl_dual_it_object *intern, zend_long pos) in spl_limit_it_seek()
2291 zend_long pos; in PHP_METHOD() local
/php-src/ext/standard/
H A Dstreamsfuncs.c497 zend_long maxlen, pos = 0; in PHP_FUNCTION() local
/php-src/ext/soap/
H A Dphp_encoding.c246 xmlChar *pos; in whiteSpace_collapse() local
2026 int *pos; in get_position_12() local
2067 static void get_position_ex(int dimension, const char* str, int** pos) in get_position_ex()
2084 int *pos; in get_position() local
2457 int* pos = NULL; in to_zval_array() local
H A Dphp_schema.c2276 HashPosition pos; in schema_type_fixup() local
/php-src/ext/zip/
H A Dphp_zip.c1929 int pos = 0; local
/php-src/ext/date/lib/
H A Dtimelib.h354 unsigned int pos; member
H A Dparse_date.c138 uchar *lim, *str, *ptr, *cur, *tok, *pos; member
/php-src/sapi/phpdbg/
H A Dphpdbg_cmd.c29 size_t pos = 0; in ZEND_EXTERN_MODULE_GLOBALS() local
627 size_t pos = 0; in phpdbg_stack_resolve() local
/php-src/ext/opcache/
H A Dzend_shared_alloc.h79 size_t pos; /* position for simple stack allocator */ member
/php-src/ext/dom/lexbor/lexbor/css/
H A Dparser.h162 const lxb_char_t *pos; member
/php-src/ext/dom/lexbor/lexbor/core/
H A Dconv.c93 lxb_char_t c, *pos; in lexbor_conv_data_to_double() local
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c182 int pos; in mbfl_filt_conv_html_dec() local
309 int status, pos = 0; in mbfl_filt_conv_html_dec_flush() local
/php-src/main/streams/
H A Dmemory.c352 zend_off_t pos = php_stream_tell(ts->innerstream); in php_stream_temp_write() local
458 zend_off_t pos; in php_stream_temp_cast() local
/php-src/ext/json/
H A Djson_encoder.c323 size_t pos, checkpoint; in php_json_escape_string() local
/php-src/ext/exif/
H A Dexif.c3951 size_t length=2, pos=0; in exif_scan_thumbnail() local
/php-src/ext/dba/
H A Ddba.c97 HashPosition pos; in ZEND_GET_MODULE() local
/php-src/sapi/litespeed/
H A Dlsapi_main.c369 zend_llist_position pos; in sapi_lsapi_send_headers_like_cgi() local
463 zend_llist_position pos; in sapi_lsapi_send_headers() local
887 char *pos = path_stop + pathlen_without_trailing_slash(path_start); in walk_down_the_path() local
1679 zend_llist_position pos; in PHP_FUNCTION() local

Completed in 152 milliseconds

123456