Home
last modified time | relevance | path

Searched refs:offset (Results 276 – 300 of 816) sorted by relevance

1...<<11121314151617181920>>...33

/php-src/ext/date/tests/
H A Dgmstrftime_variation5.phpt17 'Time zone offset' => "%Z",
18 'Time zone offset' => "%z",
49 --Time zone offset--
H A Dstrftime_variation5.phpt16 'Time zone offset' => "%Z",
17 'Time zone offset' => "%z",
48 --Time zone offset--
/php-src/ext/pdo_mysql/tests/
H A Dpdo_mysql_bit.phpt17 function test_type(&$db, $offset, $sql_type, $value, $ret_value = NULL, $pattern = NULL) {
26 $stmt->bindValue(1, $offset);
29 printf("[%03d + 1] INSERT failed, %s\n", $offset, var_export($stmt->errorInfo(), true));
H A Dpdo_mysql_prepare_native_myisam_index.phpt15 …function prepex($offset, &$db, $query, $input_params = null, $error_info = null, $suppress_warning…
28 $offset, $error_info['prepare']['sqlstate'], $tmp[0]);
35 $offset, $error_info['prepare']['mysql'], $tmp[0]);
48 // printf("[%03d]\n", $offset);
70 $offset, $error_info['execute']['sqlstate'], $tmp[0]);
77 $offset, $error_info['execute']['mysql'], $tmp[0]);
85 $offset, $e->getMessage(),
H A Dpdo_mysql_prepare_native_myisam.phpt15 …function prepex($offset, &$db, $query, $input_params = null, $error_info = null, $suppress_warning…
28 $offset, $error_info['prepare']['sqlstate'], $tmp[0]);
35 $offset, $error_info['prepare']['mysql'], $tmp[0]);
48 // printf("[%03d]\n", $offset);
70 $offset, $error_info['execute']['sqlstate'], $tmp[0]);
77 $offset, $error_info['execute']['mysql'], $tmp[0]);
85 $offset, $e->getMessage(),
H A Dpdo_mysql_prepare_native.phpt15 …function prepex($offset, &$db, $query, $input_params = null, $error_info = null, $suppress_warning…
28 $offset, $error_info['prepare']['sqlstate'], $tmp[0]);
35 $offset, $error_info['prepare']['mysql'], $tmp[0]);
48 // printf("[%03d]\n", $offset);
70 $offset, $error_info['execute']['sqlstate'], $tmp[0]);
77 $offset, $error_info['execute']['mysql'], $tmp[0]);
85 $offset, $e->getMessage(),
/php-src/ext/standard/tests/strings/
H A Dstripos_variation8.phpt26 for($offset = 0; $offset <= strlen($haystack); $offset++ ) {
27 var_dump( stripos($haystack, $needles[$index], $offset) );
H A Dstripos_error.phpt27 stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
30 stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
/php-src/ext/calendar/tests/
H A Djdmonthname.phpt11 for ($offset = 0; $offset <= 12; $offset++) {
12 echo jdmonthname($jd + $offset * 30, $mode). "\n";
/php-src/ext/opcache/tests/jit/
H A Dassign_dim_002.phpt39 $array[offset()] = 2;
49 function offset() {
163 Cannot access offset of type Closure on array
200 Cannot access offset of type array on array
223 Cannot access offset of type array on array
/php-src/ext/ftp/
H A Dftp_arginfo.h86 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, offset, IS_LONG, 0, "0")
94 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, offset, IS_LONG, 0, "0")
107 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, offset, IS_LONG, 0, "0")
115 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, offset, IS_LONG, 0, "0")
127 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, offset, IS_LONG, 0, "0")
135 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, offset, IS_LONG, 0, "0")
143 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, offset, IS_LONG, 0, "0")
158 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, offset, IS_LONG, 0, "0")
/php-src/ext/iconv/
H A Diconv.stub.php29 function iconv_substr(string $string, int $offset, ?int $length = null, ?string $encoding = null): … argument
31 function iconv_strpos(string $haystack, string $needle, int $offset = 0, ?string $encoding = null):… argument
/php-src/main/streams/
H A Dmemory.c129 if (offset < 0) { in php_stream_memory_seek()
130 if (ms->fpos < (size_t)(-offset)) { in php_stream_memory_seek()
135 ms->fpos = ms->fpos + offset; in php_stream_memory_seek()
142 ms->fpos = ms->fpos + offset; in php_stream_memory_seek()
147 if (offset < 0) { in php_stream_memory_seek()
152 ms->fpos = offset; in php_stream_memory_seek()
158 if (offset > 0) { in php_stream_memory_seek()
159 ms->fpos = ZSTR_LEN(ms->data) + offset; in php_stream_memory_seek()
163 } else if (ZSTR_LEN(ms->data) < (size_t)(-offset)) { in php_stream_memory_seek()
168 ms->fpos = ZSTR_LEN(ms->data) + offset; in php_stream_memory_seek()
[all …]
/php-src/ext/com_dotnet/
H A Dcom_handlers.c80 static zval *com_read_dimension(zend_object *object, zval *offset, int type, zval *rv) in com_read_dimension() argument
93 DISPATCH_METHOD|DISPATCH_PROPERTYGET, &v, 1, offset, 0, 0)) { in com_read_dimension()
98 convert_to_long(offset); in com_read_dimension()
101 if (php_com_safearray_get_elem(&obj->v, &v, (LONG)Z_LVAL_P(offset))) { in com_read_dimension()
106 php_com_saproxy_create(object, rv, offset); in com_read_dimension()
116 static void com_write_dimension(zend_object *object, zval *offset, zval *value) in com_write_dimension() argument
125 if (offset == NULL) { in com_write_dimension()
131 ZVAL_COPY_VALUE(&args[0], offset); in com_write_dimension()
149 convert_to_long(offset); in com_write_dimension()
150 indices = (LONG)Z_LVAL_P(offset); in com_write_dimension()
[all …]
/php-src/Zend/tests/
H A D024.phpt20 Warning: Trying to access array offset on null in %s on line %d
27 Warning: Trying to access array offset on null in %s on line %d
52 Warning: Trying to access array offset on null in %s on line %d
H A Ddereference_014.phpt30 Warning: Trying to access array offset on null in %s on line %d
35 Warning: Trying to access array offset on null in %s on line %d
/php-src/ext/date/
H A Dphp_date.c693 offset->offset = (t->z + (t->dst * 3600)); in date_format()
699 offset->offset = (t->z); in date_format()
780 localtime ? abs(offset->offset / 3600) : 0, in date_format()
798 ((offset->offset < 0) ? '-' : '+'), in date_format()
799 abs(offset->offset / 3600), in date_format()
800 abs((offset->offset % 3600) / 60) in date_format()
922 offset->offset = (t->z + (t->dst * 3600)); in php_idate()
928 offset->offset = (t->z + (t->dst * 3600)); in php_idate()
1316 ta.tm_gmtoff = offset->offset; in php_strftime()
3651 RETVAL_LONG(offset->offset); in PHP_FUNCTION()
[all …]
/php-src/ext/gd/libgd/
H A Dgd_gd2.c45 int offset; member
159 if (gdGetInt(&cidx[i].offset, in) != 1) { in _gd2GetHeader()
167 if (cidx[i].offset < 0 || cidx[i].size < 0) { in _gd2GetHeader()
218 static int _gd2ReadChunk (int offset, char *compBuf, int compSize, char *chunkBuf, uLongf * chunkLe… in _gd2ReadChunk() argument
222 if (gdTell(in) != offset) { in _gd2ReadChunk()
223 GD2_DBG(gd_error("Positioning in file to %d", offset)); in _gd2ReadChunk()
224 gdSeek(in, offset); in _gd2ReadChunk()
226 GD2_DBG(gd_error("Already Positioned in file to %d", offset)); in _gd2ReadChunk()
792 chunkIdx[chunkNum].offset = gdTell(out); in _gdImageGd2()
812 GD2_DBG(gd_error("Chunk %d size %d offset %d", x, chunkIdx[x].size, chunkIdx[x].offset)); in _gdImageGd2()
[all …]
/php-src/ext/standard/tests/image/
H A Dbug75708.phpt21 function stream_seek($offset, $whence) {
22 return fseek($this->handle, $offset, $whence) === 0;
/php-src/ext/gd/tests/
H A Dbug47946.phpt29 function makeFilter($resource, $matrix, $offset = 1.0)
35 return imageconvolution($resource, $matrix, $divisor, $offset);
/php-src/ext/intl/tests/
H A Dtimezone_getOffset_error.phpt7 /* INF being an invalid offset depends on UB in float->int cast behavior. */
22 Warning: IntlTimeZone::getOffset(): error obtaining offset in %s on line %d
H A Dgh13766.phpt15 $offset3 = "offset";
33 IntlDateFormatter::parseToCalendar(): Argument #2 ($offset) must be of type int, string given
/php-src/Zend/
H A Dzend_map_ptr.h35 #define ZEND_MAP_PTR_OFFSET2PTR(offset) \ argument
36 ((void**)((char*)CG(map_ptr_base) + offset))
/php-src/ext/mysqli/tests/
H A Dmysqli_stmt_num_rows.phpt16 function func_test_mysqli_stmt_num_rows($stmt, $query, $expected, $offset) {
19 printf("[%03d] [%d] %s\n", $offset, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
24 … printf("[%03d] [%d] %s\n", $offset + 1, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
29 … printf("[%03d] [%d] %s\n", $offset + 2, mysqli_stmt_errno($stmt), mysqli_stmt_error($stmt));
34 printf("[%03d] Expecting %s/%d, got %s/%d\n", $offset + 3,
H A Dmysqli_debug_mysqlnd_only.phpt22 function try_control_string($link, $control_string, $trace_file, $offset) {
27 $offset + 1,
36 $offset + 2,
49 $offset + 3,

Completed in 101 milliseconds

1...<<11121314151617181920>>...33