Home
last modified time | relevance | path

Searched refs:offset (Results 476 – 500 of 700) sorted by relevance

1...<<11121314151617181920>>...28

/PHP-7.4/ext/xml/tests/
H A Dbug32001.phpt108 for ($offset = 0; $offset < strlen($data);
109 $offset += $this->chunk_size) {
110 $success = @xml_parse($parser, substr($data, $offset, $this->chunk_size), false);
/PHP-7.4/ext/standard/tests/file/
H A Dfseek_ftell_rewind_variation5.phpt5 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
28 $offset = array(-1, 0, 1, 512, 600);// different offsets
46 foreach($offset as $count){
50 } //end of offset loop
H A Dfile_get_contents_file_put_contents_basic.phpt7 * resource $context[, int $offset[, int $maxlen]]]] )
H A Dfseek_ftell_rewind_variation4-win32.phpt10 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
32 $offset = array(-1, 0, 1, 512, 600); // different offsets
53 foreach($offset as $count){
57 } //end of offset loop
H A Dfseek_ftell_rewind_variation4.phpt10 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
32 $offset = array(-1, 0, 1, 512, 600); // different offsets
53 foreach($offset as $count){
57 } //end of offset loop
H A Dfseek_ftell_rewind_variation6-win32.phpt10 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
33 $offset = array(-1,0,1,512,600); // different offsets
53 foreach($offset as $count){
57 } //end of offset loop
H A Dfseek_ftell_rewind_variation8.phpt10 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
33 $offset = array(-1,0,1,512,600); // different offsets
54 foreach($offset as $count){
58 } //end of offset loop
H A Dfseek_ftell_rewind_variation1.phpt5 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
27 $offset = array(-1, 0, 1, 513); // different offsets, including negative and beyond size
46 foreach($offset as $count){
50 } //end of offset loop
H A Dfseek_ftell_rewind_variation3.phpt5 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
29 $offset = array(-1, 0, 1, 512, 600); // different offsets
47 foreach($offset as $count){
51 } //end of offset loop
H A Dfseek_ftell_rewind_variation6.phpt10 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
33 $offset = array(-1,0,1,512,600); // different offsets
53 foreach($offset as $count){
57 } //end of offset loop
H A Dfseek_ftell_rewind_variation7.phpt5 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
29 $offset = array(-1,0,1,512,600);// different offsets
46 foreach($offset as $count){
50 } //end of offset loop
H A Dfseek_ftell_rewind_variation8-win32.phpt10 /* Prototype: int fseek ( resource $handle, int $offset [, int $whence] );
33 $offset = array(-1,0,1,512,600); // different offsets
54 foreach($offset as $count){
58 } //end of offset loop
H A Dfseek_variation3.phpt7 /* Prototype : proto int fseek(resource fp, int offset [, int whence])
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_closecursor.phpt78 $offset = 0;
82 printf("[%03d + 1] Cannot bind parameter, %s %s\n", $offset,
89 printf("[%03d + 2] Cannot bind integer column, %s %s\n", $offset,
93 printf("[%03d + 3] Cannot bind string column, %s %s\n", $offset,
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_match.c365 if (offset >= Foffset_top || Fovector[offset] == PCRE2_UNSET) in match_ref()
379 length = Fovector[offset+1] - Fovector[offset]; in match_ref()
771 offset = Flast_group_offset; in match()
780 offset = (number << 1) - 2; in match()
784 if (offset >= Foffset_top) Foffset_top = offset + 2; in match()
809 offset = Flast_group_offset; in match()
5133 offset = Flast_group_offset; in match()
5359 condition = offset < Foffset_top && Fovector[offset] != PCRE2_UNSET; in match()
5369 condition = offset < Foffset_top && Fovector[offset] != PCRE2_UNSET; in match()
5651 offset = (number << 1) - 2; in match()
[all …]
/PHP-7.4/ext/iconv/tests/
H A Diconv_strpos_basic.phpt12 /* Prototype : int iconv_strpos(string haystack, string needle [, int offset [, string charset]])
/PHP-7.4/ext/standard/tests/strings/
H A Dstrrpos_basic2.phpt5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
H A Dstrripos_basic1.phpt5 /* Prototype : int strripos ( string $haystack, string $needle [, int $offset] );
/PHP-7.4/ext/pcre/tests/
H A Dpreg_match_all_error2.phpt6 … int preg_match_all(string pattern, string subject, array subpatterns [, int flags [, int offset]])
H A Dpreg_match_basic_edit.phpt5 …o int preg_match(string pattern, string subject [, array subpatterns [, int flags [, int offset]]])
/PHP-7.4/Zend/tests/
H A Dbug71359.phpt14 throw new Exception('Unknown offset');
/PHP-7.4/Zend/
H A Dzend_alloc.c188 …ine ZEND_MM_NRUN(bin_num, offset) (ZEND_MM_IS_SRUN | ZEND_MM_IS_LRUN | ((bin_num) << ZEND_MM_SR… argument
678 size_t offset; local
684 offset = ZEND_MM_ALIGNED_OFFSET(ptr, alignment);
687 offset = ZEND_MM_ALIGNED_OFFSET(ptr, alignment);
688 if (offset != 0) {
694 offset = ZEND_MM_ALIGNED_OFFSET(ptr, alignment);
695 if (offset != 0) {
696 offset = alignment - offset;
697 zend_mm_munmap(ptr, offset);
698 ptr = (char*)ptr + offset;
[all …]
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt26 function try_control_string($link, $control_string, $trace_file, $offset) {
31 $offset + 1,
40 $offset + 2,
53 $offset + 3,
/PHP-7.4/ext/standard/tests/array/
H A Darray_slice.phpt47 /* offset values >, < and = 0 */
56 /* offset value variations with length values */
69 /* offset value, length value and preserve_key values variation */
83 /* variation of offset and length to point to same element */
84 echo"\n*** Typical Variation of offset and length Arguments ***\n";
1443 *** Typical Variation of offset and length Arguments ***
/PHP-7.4/ext/intl/tests/
H A Dbreakiter___construct_error.phpt40 …able to create RuleBasedBreakIterator from rules (parse error on line 1, offset 31) in %s on line …

Completed in 115 milliseconds

1...<<11121314151617181920>>...28