Home
last modified time | relevance | path

Searched refs:offset (Results 526 – 550 of 700) sorted by relevance

1...<<2122232425262728

/PHP-7.4/ext/pcre/tests/
H A Dpreg_match_all_basic.phpt6 …nt preg_match_all(string pattern, string subject, [array subpatterns [, int flags [, int offset]]])
H A Dpreg_match_error1.phpt6 …o int preg_match(string pattern, string subject [, array subpatterns [, int flags [, int offset]]])
/PHP-7.4/ext/mbstring/tests/
H A Dmb_stripos.phpt34 // Negative offset
44 // Invalid offset - should return false with warning
113 // EUC-JP - No offset and encoding parameter
H A Dmb_strpos.phpt34 // Negative offset
44 // Invalid offset - should return false with warning
113 // EUC-JP - No offset and encoding parameter
H A Dmb_stripos_basic2.phpt10 /* Prototype : int mb_stripos(string haystack, string needle [, int offset [, string encoding]])
H A Dmb_strripos_basic2.phpt10 /* Prototype : int mb_strripos(string haystack, string needle [, int offset [, string encoding]])
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_field_seek.phpt127 Warning: mysqli_field_seek(): Invalid field offset in %s on line %d
217 Warning: mysqli_field_seek(): Invalid field offset in %s on line %d
/PHP-7.4/ext/sqlite3/
H A Dsqlite3.c1200 if (offset < 0) { in php_sqlite3_stream_seek()
1201 if (sqlite3_stream->position < (size_t)(-offset)) { in php_sqlite3_stream_seek()
1206 sqlite3_stream->position = sqlite3_stream->position + offset; in php_sqlite3_stream_seek()
1217 sqlite3_stream->position = sqlite3_stream->position + offset; in php_sqlite3_stream_seek()
1224 if (sqlite3_stream->size < (size_t)(offset)) { in php_sqlite3_stream_seek()
1229 sqlite3_stream->position = offset; in php_sqlite3_stream_seek()
1235 if (offset > 0) { in php_sqlite3_stream_seek()
1239 } else if (sqlite3_stream->size < (size_t)(-offset)) { in php_sqlite3_stream_seek()
1244 sqlite3_stream->position = sqlite3_stream->size + offset; in php_sqlite3_stream_seek()
2523 sqlite3_object_handlers.offset = XtOffsetOf(php_sqlite3_db_object, zo); in PHP_MINIT_FUNCTION()
[all …]
/PHP-7.4/ext/pcre/pcre2lib/sljit/
H A DsljitNativeARM_64.c1957 CHECK(check_sljit_get_local_base(compiler, dst, dstw, offset)); in sljit_get_local_base()
1963 if (offset <= 0xffffff && offset >= -0xffffff) { in sljit_get_local_base()
1965 if (offset < 0) { in sljit_get_local_base()
1966 offset = -offset; in sljit_get_local_base()
1970 if (offset <= 0xfff) in sljit_get_local_base()
1971 FAIL_IF(push_inst(compiler, ins | RD(dst_reg) | RN(SLJIT_SP) | (offset << 10))); in sljit_get_local_base()
1973 …FAIL_IF(push_inst(compiler, ins | RD(dst_reg) | RN(SLJIT_SP) | ((offset & 0xfff000) >> (12 - 10)) … in sljit_get_local_base()
1975 offset &= 0xfff; in sljit_get_local_base()
1976 if (offset != 0) in sljit_get_local_base()
1977 FAIL_IF(push_inst(compiler, ins | RD(dst_reg) | RN(dst_reg) | (offset << 10))); in sljit_get_local_base()
[all …]
/PHP-7.4/ext/intl/msgformat/
H A Dmsgformat_class.c157 MessageFormatter_handlers.offset = XtOffsetOf(MessageFormatter_object, zo); in msgformat_register_class()
/PHP-7.4/ext/standard/tests/strings/
H A Dstripos_basic2.phpt5 /* Prototype : int stripos ( string $haystack, string $needle [, int $offset] );
H A Dstrrpos_offset.phpt2 strrpos() offset integer overflow
H A Dstrripos_offset.phpt2 strripos() offset integer overflow
/PHP-7.4/ext/standard/tests/array/
H A Darray_splice_basic.phpt6 * proto array array_splice(array input, int offset [, int length [, array replacement]])
H A Darray_splice_variation1.phpt6 * proto array array_splice(array input, int offset [, int length [, array replacement]])
H A Darray_merge_recursive_variation4.phpt83 Warning: Illegal offset type in %s on line %d
85 Notice: Resource ID#%d used as offset, casting to integer (%d) in %s on line %d
/PHP-7.4/tests/classes/
H A Dtostring_001.phpt118 Warning: Illegal offset type in %s on line %d
/PHP-7.4/ext/xmlrpc/libxmlrpc/
H A Dxml_to_dandarpc.c105 XMLRPC_SetValueBase64(xCurrent, buf.data, buf.offset); in xml_element_to_DANDARPC_REQUEST_worker()
228 simplestring_addn(&elem_val->text, buf.data, buf.offset ); in DANDARPC_to_xml_element_worker()
/PHP-7.4/ext/phar/
H A Dutil.c116 int phar_seek_efp(phar_entry_info *entry, zend_off_t offset, int whence, zend_off_t position, int f… in phar_seek_efp() argument
141 temp = eoffset + entry->uncompressed_filesize + offset; in phar_seek_efp()
144 temp = eoffset + position + offset; in phar_seek_efp()
147 temp = eoffset + offset; in phar_seek_efp()
655 dest->offset = 0; in phar_copy_entry_fp()
726 dummy.zero = entry->offset; in phar_open_entry_fp()
744 dummy.zero = entry->offset; in phar_open_entry_fp()
791 dummy.zero = entry->offset; in phar_open_entry_fp()
815 entry->offset = 0; in phar_create_writeable_entry()
848 entry->offset = 0; in phar_create_writeable_entry()
[all …]
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_exec.phpt11 function exec_and_count($offset, &$db, $sql, $exp = NULL) {
18 $offset, $exp, gettype($exp), $ret, gettype($ret), $sql,
25 $offset, $sql, $db->errorCode(), implode(' ', $db->errorInfo()));
/PHP-7.4/main/
H A Dphp_streams.h126 int (*seek)(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset);
301 PHPAPI int _php_stream_seek(php_stream *stream, zend_off_t offset, int whence);
303 #define php_stream_seek(stream, offset, whence) _php_stream_seek((stream), (offset), (whence)) argument
/PHP-7.4/ext/standard/tests/file/
H A Dfile_get_contents_error.phpt8 * resource $context[, int $offset[, int $maxlen]]]] )
H A Dfile_get_contents_variation7.phpt7 …nts(string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]])
/PHP-7.4/ext/dom/
H A Dphp_dom.c489 nodeobj = (php_libxml_node_object *) ((char *) Z_OBJ_P(node) - Z_OBJ_HT_P(node)->offset); in PHP_FUNCTION()
598 dom_object_handlers.offset = XtOffsetOf(dom_object, std); in PHP_MINIT_FUNCTION()
841 dom_xpath_object_handlers.offset = XtOffsetOf(dom_xpath_object, dom) + XtOffsetOf(dom_object, std); in PHP_MINIT_FUNCTION()
1552 zval *dom_nodelist_read_dimension(zval *object, zval *offset, int type, zval *rv) /* {{{ */ in dom_nodelist_read_dimension() argument
1556 if (!offset) { in dom_nodelist_read_dimension()
1560 ZVAL_LONG(&offset_copy, zval_get_long(offset)); in dom_nodelist_read_dimension()
1569 zend_long offset = zval_get_long(member); in dom_nodelist_has_dimension() local
1572 if (offset < 0) { in dom_nodelist_has_dimension()
1577 return length && offset < Z_LVAL_P(length); in dom_nodelist_has_dimension()
/PHP-7.4/ext/standard/
H A Dphp_fopen_wrapper.c125 static int php_stream_input_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *new… in php_stream_input_seek() argument
130 int sought = php_stream_seek(input->body, offset, whence); in php_stream_input_seek()

Completed in 72 milliseconds

1...<<2122232425262728