Home
last modified time | relevance | path

Searched refs:start (Results 26 – 50 of 431) sorted by relevance

12345678910>>...18

/PHP-7.2/ext/zip/lib/
H A Dzip_source_zip_new.c41 …t *za, zip_t *srcza, zip_uint64_t srcidx, zip_flags_t flags, zip_uint64_t start, zip_uint64_t len,… in _zip_source_zip_new() argument
71 if ((start > 0 || len > 0) && (flags & ZIP_FL_COMPRESSED)) { in _zip_source_zip_new()
77 if ((start > 0 || len > 0) && (start+len < start || start+len > st.size)) { in _zip_source_zip_new()
111 if (start+len > 0 && enc_impl == NULL && comp_impl == NULL) { in _zip_source_zip_new()
114 st2.size = len ? len : st.size-start; in _zip_source_zip_new()
120 if ((src = _zip_source_window_new(srcza->src, offset+start, st2.size, &st2, &za->error)) == NULL) { in _zip_source_zip_new()
163 if (start+len > 0 && (comp_impl || enc_impl)) { in _zip_source_zip_new()
164 s2 = zip_source_window(za, src, start, len ? len : st.size-start); in _zip_source_zip_new()
H A Dzip_source_file.c41 zip_source_file(zip_t *za, const char *fname, zip_uint64_t start, zip_int64_t len) in zip_source_file() argument
46 return zip_source_file_create(fname, start, len, &za->error); in zip_source_file()
51 zip_source_file_create(const char *fname, zip_uint64_t start, zip_int64_t length, zip_error_t *erro… in zip_source_file_create() argument
58 return _zip_source_file_or_p(fname, NULL, start, length, NULL, error); in zip_source_file_create()
H A Dzip_source_win32utf8.c42 zip_source_file(zip_t *za, const char *fname, zip_uint64_t start, zip_int64_t len) in zip_source_file() argument
47 return zip_source_file_create(fname, start, len, &za->error); in zip_source_file()
52 zip_source_file_create(const char *fname, zip_uint64_t start, zip_int64_t length, zip_error_t *erro… in zip_source_file_create() argument
75 source = zip_source_win32w_create(wfname, start, length, error); in zip_source_file_create()
H A Dzip_source_zip.c43 zip_flags_t flags, zip_uint64_t start, zip_int64_t len) in zip_source_zip() argument
53 if (start == 0 && len == 0) in zip_source_zip()
58 return _zip_source_zip_new(za, srcza, srcidx, flags, start, (zip_uint64_t)len, NULL); in zip_source_zip()
H A Dzip_filerange_crc.c42 _zip_filerange_crc(zip_source_t *src, zip_uint64_t start, zip_uint64_t len, uLong *crcp, zip_error_… in _zip_filerange_crc() argument
49 if (start > ZIP_INT64_MAX) { in _zip_filerange_crc()
54 if (zip_source_seek(src, (zip_int64_t)start, SEEK_SET) != 0) { in _zip_filerange_crc()
/PHP-7.2/ext/date/lib/
H A Dastro.h61 #define civil_twilight(ts,lon,lat,start,end) \ argument
62 timelib_astro_rise_set_altitude( ts, lon, lat, -6.0, 0, start, end )
67 #define nautical_twilight(ts,lon,lat,start,end) \ argument
68 timelib_astro_rise_set_altitude( ts, lon, lat, -12.0, 0, start, end )
73 #define astronomical_twilight(ts,lon,lat,start,end) \ argument
74 timelib_astro_rise_set_altitude( ts, lon, lat, -18.0, 0, start, end )
/PHP-7.2/Zend/
H A Dzend_sort.c179 char *start = (char *)base; in zend_insert_sort() local
182 char *sentry = start + (6 * siz); in zend_insert_sort()
188 while (j != start) { in zend_insert_sort()
213 if (j == start) { in zend_insert_sort()
216 if (j == start + siz) { in zend_insert_sort()
325 char *start = (char *)base; in zend_sort() local
332 zend_sort_5(start, start + delta, pivot, pivot + delta, end - siz, cmp, swp); in zend_sort()
336 swp(start + siz, pivot); in zend_sort()
337 pivot = start + siz; in zend_sort()
366 zend_sort(start, (i - start)/siz - 1, siz, cmp, swp); in zend_sort()
[all …]
/PHP-7.2/ext/phar/tests/cache_list/files/
H A Dfrontcontroller19.phar4 Phar::webPhar("test.phar", "/start/index.php");
11 ����������������������start/index.php9���!�H9���HٗN����������start/another.php>���!�H>���|
13 echo "start/index.php\n";
16 echo "start/another.php\n";
H A Dfrontcontroller19.phar.inc4 $a['start/index.php'] = '<?php
5 echo "start/index.php\n";
8 $a['start/another.php'] = '<?php
9 echo "start/another.php\n";
18 Phar::webPhar("test.phar", "/start/index.php");
/PHP-7.2/ext/phar/tests/files/
H A Dfrontcontroller19.phar4 Phar::webPhar("test.phar", "/start/index.php");
11 ����������������������start/index.php9���!�H9���HٗN����������start/another.php>���!�H>���|
13 echo "start/index.php\n";
16 echo "start/another.php\n";
H A Dfrontcontroller19.phar.inc4 $a['start/index.php'] = '<?php
5 echo "start/index.php\n";
8 $a['start/another.php'] = '<?php
9 echo "start/another.php\n";
18 Phar::webPhar("test.phar", "/start/index.php");
/PHP-7.2/ext/standard/tests/strings/
H A Dstrcspn_basic.phpt5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided, it works like strcspn(substr($s,$start,$len),$bad_chars)
22 $start = 15;
26 var_dump( strcspn($str, $mask, $start, $len) );
29 var_dump( strcspn($str, $mask, $start) );
H A Dsubstr_replace_error.phpt5 /* Prototype : mixed substr_replace ( mixed $string , string $replacement , int $start [, int …
25 echo "\n-- Testing substr_replace() function with start and length different types --\n";
29 echo "\n-- Testing substr_replace() function with start and length with a different number of eleme…
32 echo "\n-- Testing substr_replace() function with start and length as arrays but string not--\n";
53 -- Testing substr_replace() function with start and length different types --
55 Warning: substr_replace(): 'start' and 'length' should be of same type - numerical or array in %s …
58 Warning: substr_replace(): 'start' and 'length' should be of same type - numerical or array in %s …
61 -- Testing substr_replace() function with start and length with a different number of elements --
63 Warning: substr_replace(): 'start' and 'length' should have the same number of elements in %s on li…
66 -- Testing substr_replace() function with start and length as arrays but string not--
[all …]
H A Dstrspn_basic.phpt5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided, it works like strspn(substr($s,$start,$len),$good_chars)
22 $start = 8;
26 var_dump( strspn($str, $mask, $start, $len) );
29 var_dump( strspn($str, $mask, $start) );
H A Dsubstr.phpt6 /* Prototype: string substr( string str, int start[, int length] )
7 * Description: Returns the portion of string specified by the start and length parameters.
34 /* start values >, < and = 0 */
43 /* start value variations with length values */
59 /* variation of start and length to point to same element */
60 echo ("\n*** Testing for variations of start and length to point to same element ***\n");
64 /* Testing to return empty string when start denotes the position beyond the truncation (set by neg…
65 echo ("\n*** Testing for start > truncation ***\n");
76 /* start <0 && -start > length */
209 *** Testing for variations of start and length to point to same element ***
[all …]
H A Dstrcspn_variation9.phpt2 Test strcspn() function : usage variations - different strings with default start and len args
5 /* Prototype : proto int strcspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strcspn(substr($s,$start,$len),$bad_chars)
13 * Testing strcspn() : with different strings as str argument and default start and len args
16 echo "*** Testing strcspn() : with different str and default start and len args ***\n";
56 *** Testing strcspn() : with different str and default start and len args ***
H A Dstrspn_variation9.phpt2 Test strspn() function : usage variations - different strings with default start and len args
5 /* Prototype : proto int strspn(string str, string mask [, int start [, int len]])
7 … If start or/and length is provided works like strspn(substr($s,$start,$len),$good_chars)
13 * Testing strspn() : with different strings as str argument and default start and len args
16 echo "*** Testing strspn() : with different str and default start and len args ***\n";
56 *** Testing strspn() : with different str and default start and len args ***
/PHP-7.2/ext/phar/tests/
H A Dfrontcontroller34.phpt9 REQUEST_URI=/frontcontroller34.php/start/index.php
10 PATH_INFO=/start/index.php
16 start/index.php
17 start/another.php
/PHP-7.2/ext/phar/tests/cache_list/
H A Dfrontcontroller34.phpt10 REQUEST_URI=/frontcontroller34.php/start/index.php
11 PATH_INFO=/start/index.php
17 start/index.php
18 start/another.php
/PHP-7.2/ext/intl/doc/
H A Dgrapheme_api.php80 * @param int $start If start is non-negative, the returned string will start at the
93 function grapheme_substr($string, $start, $length = -1) {} argument
123 * @param [int] $start starting position in $haystack in bytes
128 …function grapheme_extract($haystack, $size, $extract_type = GRAPHEME_EXTR_COUNT, $start = 0, &$nex… argument
/PHP-7.2/ext/date/tests/
H A Dbug52668.phpt7 $start = new DateTime('20101212');
9 $dp = new DatePeriod($start, $interval, 1);
13 echo $start->format('r'), "\n";
17 echo $start->format('r'), "\n\n";
H A Dexamine_diff.inc23 * @param string|DateTime $start_date the start date in YYYY-MM-DD format
37 $start = new DateTime($start_date);
39 $start = $start_date;
41 $start_date = $start->format('Y-m-d H:i:s T');
56 $result_interval = $start->diff($end, $absolute);
62 $result_interval = $start->diff($end, $absolute);
68 $start->add($expect_interval);
69 $result_end_date = $start->format('Y-m-d H:i:s T');
H A DDatePeriod_getter.phpt7 $start = new DateTime('2000-01-01 00:00:00', new DateTimeZone('Europe/Berlin'));
10 $period = new DatePeriod($start, $interval, $end);
22 $periodWithRecurrences = new DatePeriod($start, $interval, $recurrences);
27 $periodWithRecurrencesWithoutStart = new DatePeriod($start, $interval, $recurrences, DatePeriod::EX…
/PHP-7.2/sapi/cli/tests/
H A D013.phpt18 var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");'`);
20 var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");' -E 'var_dump("end");'`);
27 string(18) "string(5) "start"
31 string(34) "string(5) "start"
/PHP-7.2/ext/standard/
H A Durl_scanner_ex.c344 smart_str_appendl(&ctx->result, start, YYCURSOR - start); in passthru()
456 smart_str_appendl(&ctx->tag, start, YYCURSOR - start); in handle_tag()
477 smart_str_appendl(&ctx->arg, start, YYCURSOR - start); in handle_arg()
499 char *start; in xx_mainloop() local
521 start = YYCURSOR; in xx_mainloop()
586 start = YYCURSOR; in xx_mainloop()
652 start = YYCURSOR; in xx_mainloop()
741 start = YYCURSOR; in xx_mainloop()
806 start = YYCURSOR; in xx_mainloop()
1305 if (!start) { in php_url_scanner_reset_var_impl()
[all …]

Completed in 51 milliseconds

12345678910>>...18