Home
last modified time | relevance | path

Searched refs:offset (Results 226 – 250 of 649) sorted by relevance

12345678910>>...26

/PHP-5.5/ext/mbstring/tests/
H A Dmb_strrpos_variation1.phpt10 /* Prototype : int mb_strrpos(string $haystack, string $needle [, int $offset [, string $encoding]…
23 $offset = 0;
98 var_dump( mb_strrpos($input, $needle, $offset, $encoding));
/PHP-5.5/ext/iconv/tests/
H A Diconv_strpos_variation1.phpt10 /* Prototype : int iconv_strpos(string haystack, string needle [, int offset [, string charset]])
23 $offset = 0;
98 var_dump( iconv_strpos($input, $needle, $offset, $encoding));
H A Diconv_strpos_variation2.phpt10 /* Prototype : int iconv_strpos(string haystack, string needle [, int offset [, string charset]])
23 $offset = 0;
98 var_dump( iconv_strpos($haystack, $input, $offset, $encoding));
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitExecAllocator.c139 #define AS_BLOCK_HEADER(base, offset) \ argument
140 ((struct block_header*)(((sljit_ub*)base) + offset))
141 #define AS_FREE_BLOCK(base, offset) \ argument
142 ((struct free_block*)(((sljit_ub*)base) + offset))
/PHP-5.5/ext/xml/tests/
H A Dbug32001b.phpt64 for ($offset = 0; $offset < strlen($data);
65 $offset += $this->chunk_size) {
66 $success = @xml_parse($parser, substr($data, $offset, $this->chunk_size), false);
/PHP-5.5/ext/date/lib/
H A Dunixtime2tm.c157 timelib_unixtime2gmt(tm, tm->sse + gmt_offset->offset); in timelib_update_from_sse()
195 timelib_unixtime2gmt(tm, ts + gmt_offset->offset); in timelib_unixtime2local()
200 tm->z = gmt_offset->offset; in timelib_unixtime2local()
250 t->z = gmt_offset->offset; in timelib_set_timezone()
/PHP-5.5/ext/intl/breakiterator/
H A Dbreakiterator_methods.cpp333 long offset; in PHP_FUNCTION() local
338 &offset) == FAILURE) { in PHP_FUNCTION()
344 if (offset < INT32_MIN || offset > INT32_MAX) { in PHP_FUNCTION()
353 UBool res = bio->biter->isBoundary((int32_t)offset); in PHP_FUNCTION()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_pam_sha256_public_key_option_invalid.phpt94 function sha_connect($offset, $host, $db, $port, $socket, $file) {
98 printf("[%03d + 001] mysqli_options failed, [%d] %s\n", $offset, $link->errno, $link->error);
103 printf("[%03d + 002] [%d] %s\n", $offset, $link->connect_errno, $link->connect_error);
108 printf("[%03d + 003] [%d] %s\n", $offset, $link->errno, $link->error);
112 printf("[%03d + 004] [%d] %s\n", $offset, $link->errno, $link->error);
117 printf("[%03d + 005] Expecting 1 got %s/'%s'", $offset, gettype($row['id']), $row['id']);
/PHP-5.5/Zend/tests/
H A Dstr_offset_002.phpt2 string offset 002
H A Dbug26281.phpt2 Bug #26281 (switch() crash when condition is a string offset)
H A Dbug39018_2.phpt2 Bug #39018 [2] (Error control operator '@' fails to suppress "Uninitialized string offset")
H A Dbug47704.phpt9 Fatal error: Cannot use string offset as an object in %sbug47704.php on line %d
H A Dbug41919.phpt11 Fatal error: Cannot use string offset as an object in %sbug41919.php on line %d
H A Dbug64578.phpt13 string(25) "Illegal string offset 'a'"
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput18-16614 Error -10 (bad UTF-16 string) offset=0 reason=1
618 Error -10 (bad UTF-16 string) offset=0 reason=1
622 Error -10 (bad UTF-16 string) offset=0 reason=3
626 Error -10 (bad UTF-16 string) offset=0 reason=3
796 Error -24 (bad offset value)
798 Error -24 (bad offset value)
865 /-- Check bad offset --/
869 Error -11 (bad UTF-16 offset)
871 Error -11 (bad UTF-16 offset)
879 Error -24 (bad offset value)
[all …]
H A Dtestoutput18-32612 Error -10 (bad UTF-32 string) offset=0 reason=1
616 Error -10 (bad UTF-32 string) offset=0 reason=1
620 Error -10 (bad UTF-32 string) offset=0 reason=1
624 Error -10 (bad UTF-32 string) offset=0 reason=1
628 Error -10 (bad UTF-32 string) offset=0 reason=1
632 Error -10 (bad UTF-32 string) offset=0 reason=3
793 Error -24 (bad offset value)
795 Error -24 (bad offset value)
862 /-- Check bad offset --/
874 Error -24 (bad offset value)
[all …]
/PHP-5.5/TSRM/
H A Dreaddir.h31 short offset; /* offset into directory */ member
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_variable_columncount.phpt27 function check_result($offset, $stmt, $columns) {
34 printf("[%03d + 1] Expecting array('one' => 1), got %s\n", $offset, var_export($row, true));
40 …printf("[%03d + 2] Expecting array('one' => 1, 'two' => 2), got %s\n", $offset, var_export($row, t…
43 printf("[%03d + 3] Expecting one array element got two\n", $offset);
H A Dpdo_mysql_exec_ddl.phpt11 function exec_and_count($offset, &$db, $sql, $exp, $suppress_warning = false) {
22 $offset, $exp, gettype($exp), $ret, gettype($ret), $sql,
29 $offset, $sql, $db->errorCode(), implode(' ', $db->errorInfo()));
/PHP-5.5/ext/dba/
H A Ddba_cdb.c228 int cdb_file_lseek(php_stream *fp, off_t offset, int whence TSRMLS_DC) { in cdb_file_lseek() argument
229 php_stream_seek(fp, offset, whence); in cdb_file_lseek()
233 int cdb_file_lseek(int fd, off_t offset, int whence TSRMLS_DC) { in cdb_file_lseek() argument
234 return lseek(fd, offset, whence); in cdb_file_lseek()
/PHP-5.5/ext/pcre/tests/
H A Dpcre_extra.phpt13 Warning: preg_match(): Compilation failed: unrecognized character follows \ at offset 1 in %spcre_e…
/PHP-5.5/ext/standard/tests/streams/
H A Dstream_get_contents_001.phpt2 stream_get_contents() - Testing offset out of range
/PHP-5.5/Zend/
H A Dzend_vm_def.h1344 zval *offset; variable
1467 zval *offset; variable
3643 hval = zend_hash_func(Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1);
3960 zval *offset; variable
3997 hval = zend_hash_func(Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1);
4003 zend_hash_quick_del(ht, Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1, hval);
4060 zval *offset; variable
4463 zval *offset; variable
4497 hval = zend_hash_func(Z_STRVAL_P(offset), Z_STRLEN_P(offset)+1);
4562 offset = &tmp;
[all …]
/PHP-5.5/win32/
H A Dreaddir.h35 short offset; /* offset into directory */ member
/PHP-5.5/ext/intl/tests/
H A Dbug72061.phpt2 Bug #72061: Out-of-bounds reads in zif_grapheme_stripos with negative offset

Completed in 85 milliseconds

12345678910>>...26