Home
last modified time | relevance | path

Searched refs:start (Results 126 – 150 of 317) sorted by relevance

12345678910>>...13

/PHP-5.3/ext/phar/tests/files/
H A Dopenssl.phar220 $start = 4 + $s[1];
224 $len = unpack('V', substr($m, $start, 4));
225 $start += 4;
226 $savepath = substr($m, $start, $len[1]);
227 $start += $len[1];
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
233 $start += 24 + $ret['m'][$savepath][5];
/PHP-5.3/ext/phar/tests/cache_list/files/
H A Dnophar.phar220 $start = 4 + $s[1];
224 $len = unpack('V', substr($m, $start, 4));
225 $start += 4;
226 $savepath = substr($m, $start, $len[1]);
227 $start += $len[1];
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
233 $start += 24 + $ret['m'][$savepath][5];
H A Dopenssl.phar220 $start = 4 + $s[1];
224 $len = unpack('V', substr($m, $start, 4));
225 $start += 4;
226 $savepath = substr($m, $start, $len[1]);
227 $start += $len[1];
228 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24)));
233 $start += 24 + $ret['m'][$savepath][5];
/PHP-5.3/ext/mbstring/oniguruma/
H A Doniguruma.h175 OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);
294 #define ONIGENC_LEFT_ADJUST_CHAR_HEAD(enc,start,s) \ argument
295 onigenc_get_left_adjust_char_head(enc, start, s)
312 #define ONIGENC_STEP_BACK(enc,start,s,n)
364 #define ONIGENC_LEFT_ADJUST_CHAR_HEAD(enc,start,s) \ argument
365 (enc)->left_adjust_char_head(start, s)
370 #define ONIGENC_STEP_BACK(enc,start,s,n) \ argument
371 onigenc_step_back((enc),(start),(s),(n))
417 OnigUChar* onigenc_step_back P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar* s, int …
434 OnigUChar* onigenc_get_prev_char_head P_((OnigEncoding enc, const OnigUChar* start, const OnigUChar…
[all …]
/PHP-5.3/ext/standard/tests/file/
H A Dfseek_variation3.phpt22 echo "--- fseek beyond start of file ---\n";
44 --- fseek beyond start of file ---
/PHP-5.3/ext/curl/tests/
H A Dcurl_basic_017.phpt17 // start testing
27 ob_start(); // start output buffering
H A Dcurl_basic_018.phpt17 // start testing
27 ob_start(); // start output buffering
/PHP-5.3/ext/standard/tests/array/
H A Dbug61058.phpt2 Bug #61058 (array_fill leaks if start index is PHP_INT_MAX)
/PHP-5.3/ext/mysqli/
H A Dmysqli_api.c146 Z_ADDREF_P(*args[i+start]); in mysqli_stmt_bind_param_do_bind()
167 if (argc == start) { in mysqli_stmt_bind_param_do_bind()
218 int start = 2; in PHP_FUNCTION() local
240 start = 1; in PHP_FUNCTION()
287 int var_cnt = argc - start; in mysqli_stmt_bind_result_do_bind()
305 for (i=start; i < var_cnt + start ; i++) { in mysqli_stmt_bind_result_do_bind()
306 ofs = i - start; in mysqli_stmt_bind_result_do_bind()
444 for (i = start; i < var_cnt+start; i++) { in mysqli_stmt_bind_result_do_bind()
445 ofs = i-start; in mysqli_stmt_bind_result_do_bind()
477 int start = 1; in PHP_FUNCTION() local
[all …]
/PHP-5.3/ext/ereg/tests/
H A D006.phpt2 Test ereg_replace of start-of-line
/PHP-5.3/ext/iconv/tests/
H A Diconv_substr_error1.phpt24 $start = 10;
28 var_dump( iconv_substr($str, $start, $length, $encoding, $extra_arg) );
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_fork.phpt92 if (!mysqli_query($plink, sprintf($sql, 'start')))
107 $start = time();
121 } while ((time() - $start) < 5);
137 $start = time();
149 case 'start':
199 } while (((time() - $start) < 5) && ($num_rows < 3));
244 child start
H A Dmysqli_fetch_array_many_rows.phpt14 $start = microtime(true);
15 for ($id = 100, $start = microtime(true); (microtime(true) - $start) < 5; $id++) {
/PHP-5.3/ext/shmop/
H A DREADME32 char shmop_read(int shmid, int start, int count)
35 start - offset from which to start reading
/PHP-5.3/ext/mbstring/oniguruma/doc/
H A DAPI191 # int onig_search(regex_t* reg, const UChar* str, const UChar* end, const UChar* start,
203 4 start: search start address of target string
205 in forward search (start <= searched string head < range)
206 in backward search (range <= searched string head <= start)
403 beg: capture start position
435 # UChar* onigenc_get_prev_char_head(OnigEncoding enc, const UChar* start, const UChar* s)
441 2 start: string address
446 const UChar* start, const UChar* s)
452 2 start: string address
457 const UChar* start, const UChar* s)
[all …]
/PHP-5.3/ext/date/tests/
H A Dbug49081.phpt2 Bug #49081 (DateTime::diff() mistake if start in January and interval > 28 days)
H A Dbug53437.phpt33 ["start"]=>
92 ["start"]=>
/PHP-5.3/ext/standard/tests/strings/
H A Dstrcspn_variation11.phpt2 Test strcspn() function : usage variations - with varying start and default 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 varying start and default len arguments
16 echo "*** Testing strcspn() : with different start and default len values ***\n";
54 //defining array of start values
66 // loop through each element of the arrays for str,mask and start arguments
71 foreach($start_array as $start) {
72 var_dump( strcspn($str,$mask,$start) );
81 *** Testing strcspn() : with different start and default len values ***
H A Dstrspn_variation11.phpt2 Test strspn() function : usage variations - with varying start and default 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 varying start and default len arguments
16 echo "*** Testing strspn() : with different start and default len values ***\n";
54 // defining the array for start values
66 // loop through each element of the arrays for str, mask and start argument
71 foreach($start_array as $start) {
72 var_dump( strspn($str,$mask,$start) );
81 *** Testing strspn() : with different start and default len values ***
/PHP-5.3/ext/sysvshm/
H A Dphp_sysvshm.h49 long start; member
H A Dsysvshm.c190 chunk_ptr->start = sizeof(sysvshm_chunk_head); in PHP_FUNCTION()
191 chunk_ptr->end = chunk_ptr->start; in PHP_FUNCTION()
393 pos = ptr->start; in php_check_shm_data()
405 if (shm_var->next <= 0 || pos < ptr->start) { in php_check_shm_data()
/PHP-5.3/ext/dba/libcdb/
H A Dcdb_make.h46 uint32 start[256]; member
/PHP-5.3/ext/standard/
H A Dphp_fopen_wrapper.c261 char *start, in php_stream_url_wrap_php() local
280 start = &path[3]; in php_stream_url_wrap_php()
281 fildes_ori = strtol(start, &end, 10); in php_stream_url_wrap_php()
282 if (end == start || *end != '\0') { in php_stream_url_wrap_php()
/PHP-5.3/ext/ereg/
H A Dereg.c300 off_t start, end; in php_ereg() local
361 start = subs[i].rm_so; in php_ereg()
363 if (start != -1 && end > 0 && start < string_len && end < string_len && start < end) { in php_ereg()
364 add_index_stringl(*array, i, string+start, end-start, 1); in php_ereg()
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dwhere.c780 int start; in sqliteWhereBegin() local
866 pLevel->p2 = start; in sqliteWhereBegin()
871 int start; in sqliteWhereBegin() local
912 start = sqliteVdbeCurrentAddr(v); in sqliteWhereBegin()
915 pLevel->p2 = start; in sqliteWhereBegin()
926 int start; in sqliteWhereBegin() local
931 start = sqliteVdbeCurrentAddr(v); in sqliteWhereBegin()
934 pLevel->p2 = start; in sqliteWhereBegin()
950 int start; in sqliteWhereBegin() local
1114 start = sqliteVdbeCurrentAddr(v); in sqliteWhereBegin()
[all …]

Completed in 68 milliseconds

12345678910>>...13