Home
last modified time | relevance | path

Searched refs:offset (Results 451 – 475 of 700) sorted by relevance

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

/PHP-7.4/ext/pdo_oci/tests/
H A Dpdo_oci_stream_1.phpt2 PDO_OCI: stream_get_contents length & offset test
44 // stream_get_contents ( resource $handle [, int $maxlength = -1 [, int $offset = -1 ]] )
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_prepare_native.phpt15 …function prepex($offset, &$db, $query, $input_params = null, $error_info = null, $suppress_warning…
30 $offset, $error_info['prepare']['sqlstate'], $tmp[0]);
37 $offset, $error_info['prepare']['mysql'], $tmp[0]);
50 // printf("[%03d]\n", $offset);
72 $offset, $error_info['execute']['sqlstate'], $tmp[0]);
79 $offset, $error_info['execute']['mysql'], $tmp[0]);
89 $offset, $e->getMessage(),
/PHP-7.4/ext/standard/tests/strings/
H A Dstripos_basic1.phpt5 /* Prototype : int stripos ( string $haystack, string $needle [, int $offset] );
H A Dstripos_variation4.phpt5 /* Prototype : int stripos ( string $haystack, string $needle [, int $offset] );
H A Dstripos_variation6.phpt5 /* Prototype : int stripos ( string $haystack, string $needle [, int $offset] );
H A Dstrripos_variation4.phpt5 /* Prototype : int strripos ( string $haystack, string $needle [, int $offset] );
H A Dstrrpos_variation4.phpt5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
H A Dstrrpos_variation7.phpt5 /* Prototype : int strrpos ( string $haystack, string $needle [, int $offset] );
/PHP-7.4/ext/standard/tests/file/
H A Dfile_get_contents_basic.phpt9 * resource $context[, int $offset[, int $maxlen]]]] )
H A Dfile_get_contents_variation1.phpt7 …nts(string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]])
H A Dfile_get_contents_variation2.phpt7 …nts(string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]])
/PHP-7.4/ext/pcre/tests/
H A Dsplit.phpt23 Warning: preg_split(): Compilation failed: quantifier does not follow a repeatable item at offset 0…
H A Dpreg_match_basic.phpt6 …o int preg_match(string pattern, string subject [, array subpatterns [, int flags [, int offset]]])
H A Dpreg_match_error2.phpt6 …o int preg_match(string pattern, string subject [, array subpatterns [, int flags [, int offset]]])
/PHP-7.4/ext/imap/
H A Dphp_imap.c4084 offset = 0; in _php_imap_mail()
4095 offset += slprintf(bufferTo + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4100 if (offset>0) { in _php_imap_mail()
4113 offset = 0; in _php_imap_mail()
4124 offset += slprintf(bufferCc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4129 if (offset>0) { in _php_imap_mail()
4139 offset = 0; in _php_imap_mail()
4150 offset += slprintf(bufferBcc + offset, bt_len - offset, "%s@%s,", addr->mailbox, addr->host); in _php_imap_mail()
4396 memcpy(text, &string[offset], charset_token-offset); in PHP_FUNCTION()
4435 …for (i = 0; (string[offset + i] == ' ') || (string[offset + i] == 0x0a) || (string[offset + i] == … in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/phar/
H A Ddirstream.c60 static int phar_dir_seek(php_stream *stream, zend_off_t offset, int whence, zend_off_t *newoffset) … in phar_dir_seek() argument
70 offset = zend_hash_num_elements(data) + offset; in phar_dir_seek()
77 if (offset < 0) { in phar_dir_seek()
81 while (*newoffset < offset && zend_hash_move_forward(data) == SUCCESS) { in phar_dir_seek()
/PHP-7.4/Zend/
H A Dzend_vm_def.h2104 zval *offset; variable
2267 zval *offset; variable
5725 offset = Z_REFVAL_P(offset);
6167 zval *offset; variable
6201 offset = Z_REFVAL_P(offset);
6240 offset++;
6258 zval *offset; variable
6900 zval *offset; variable
6927 offset = Z_REFVAL_P(offset);
6961 offset++;
[all …]
/PHP-7.4/ext/iconv/tests/
H A Diconv_substr_basic.phpt14 /* Prototype : string iconv_substr(string str, int offset, [int length, string charset])
/PHP-7.4/ext/mbstring/tests/
H A Dmb_strpos_basic.phpt10 /* Prototype : int mb_strpos(string $haystack, string $needle [, int $offset [, string $encoding]])
H A Dmb_strrpos_basic.phpt10 /* Prototype : int mb_strrpos(string $haystack, string $needle [, int $offset [, string $encoding]…
/PHP-7.4/Zend/tests/list/
H A Dlist_reference_006.phpt38 Notice: Undefined offset: 2 in %s on line %d
/PHP-7.4/ext/shmop/tests/
H A D002.phpt51 // warning outputs: offset out of range
99 Warning: shmop_write(): offset out of range in %s on line %d
/PHP-7.4/main/streams/
H A Dstreams.c1309 if (offset > 0 && offset <= stream->writepos - stream->readpos) { in _php_stream_seek()
1311 stream->position += offset; in _php_stream_seek()
1317 if (offset > stream->position && in _php_stream_seek()
1318 offset <= stream->position + stream->writepos - stream->readpos) { in _php_stream_seek()
1319 stream->readpos += offset - stream->position; in _php_stream_seek()
1320 stream->position = offset; in _php_stream_seek()
1338 offset = stream->position + offset; in _php_stream_seek()
1342 ret = stream->ops->seek(stream, offset, whence, &stream->position); in _php_stream_seek()
1359 if (whence == SEEK_CUR && offset >= 0) { in _php_stream_seek()
1362 while (offset > 0) { in _php_stream_seek()
[all …]
/PHP-7.4/ext/standard/
H A Darray.c3071 offset = num_in;
3072 } else if (offset < 0 && (offset = (num_in + offset)) < 0) {
3073 offset = 0;
3444 zend_long offset, local
3450 Z_PARAM_LONG(offset)
3474 offset = num_in;
3475 } else if (offset < 0 && (offset = (num_in + offset)) < 0) {
3476 offset = 0;
3513 Z_PARAM_LONG(offset)
3532 } else if (offset < 0 && (offset = (num_in + offset)) < 0) {
[all …]
/PHP-7.4/ext/exif/
H A Dexif.c1327 int offset; member
1964 size_t offset; member
2974 || ImageInfo->Thumbnail.offset <= 0 in exif_thumbnail_extract()
2987 …ImageInfo->Thumbnail.data = estrndup(offset + ImageInfo->Thumbnail.offset, ImageInfo->Thumbnail.si… in exif_thumbnail_extract()
3187 if (value_len < 2 || maker_note->offset >= value_len - 1) { in exif_process_IFD_in_MAKERNOTE()
3193 dir_start = value_ptr + maker_note->offset; in exif_process_IFD_in_MAKERNOTE()
3240 if (maker_note->offset + 10 + 4 >= value_len) { in exif_process_IFD_in_MAKERNOTE()
3264 size_t offset = 2 + 12 * de; in exif_process_IFD_in_MAKERNOTE() local
3265 if (!exif_process_IFD_TAG(ImageInfo, dir_start + offset, in exif_process_IFD_in_MAKERNOTE()
3706 && ImageInfo->Thumbnail.offset in exif_process_IFD_in_JPEG()
[all …]

Completed in 124 milliseconds

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