Home
last modified time | relevance | path

Searched refs:start (Results 151 – 175 of 346) sorted by relevance

12345678910>>...14

/PHP-5.5/ext/shmop/
H A DREADME32 char shmop_read(int shmid, int start, int count)
35 start - offset from which to start reading
/PHP-5.5/ext/mbstring/oniguruma/doc/
H A DAPI208 # int onig_search(regex_t* reg, const UChar* str, const UChar* end, const UChar* start,
220 4 start: search start address of target string
222 in forward search (start <= searched string < range)
223 in backward search (range <= searched string <= start)
420 beg: capture start position
452 # UChar* onigenc_get_prev_char_head(OnigEncoding enc, const UChar* start, const UChar* s)
458 2 start: string address
463 const UChar* start, const UChar* s)
469 2 start: string address
474 const UChar* start, const UChar* s)
[all …]
/PHP-5.5/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.5/ext/mysqli/
H A Dmysqli_api.c253 Z_ADDREF_P(*args[i+start]); in mysqli_stmt_bind_param_do_bind()
274 if (argc == start) { in mysqli_stmt_bind_param_do_bind()
325 int start = 2; in PHP_FUNCTION() local
347 start = 1; in PHP_FUNCTION()
394 int var_cnt = argc - start; in mysqli_stmt_bind_result_do_bind()
412 for (i=start; i < var_cnt + start ; i++) { in mysqli_stmt_bind_result_do_bind()
413 ofs = i - start; in mysqli_stmt_bind_result_do_bind()
561 for (i = start; i < var_cnt+start; i++) { in mysqli_stmt_bind_result_do_bind()
562 ofs = i-start; in mysqli_stmt_bind_result_do_bind()
594 int start = 1; in PHP_FUNCTION() local
[all …]
/PHP-5.5/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.5/ext/dba/libcdb/
H A Dcdb_make.h46 uint32 start[256]; member
H A Dcdb_make.c183 c->start[i] = u; in cdb_make_finish()
189 c->split[--c->start[255 & x->hp[i].h]] = x->hp[i]; in cdb_make_finish()
202 hp = c->split + c->start[i]; in cdb_make_finish()
/PHP-5.5/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.5/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.5/ext/intl/tests/
H A Dbug62759.phpt23 string(65) "grapheme_substr: length is beyond start: U_ILLEGAL_ARGUMENT_ERROR"
H A Dtransliterator_transliterate_error.phpt38 Warning: transliterator_transliterate(): transliterator_transliterate: Neither "start" nor the "end…
41 Warning: transliterator_transliterate(): transliterator_transliterate: "start" argument should be n…
H A Dformatter_parse.phpt25 // Test specifying non-zero parsing start position.
/PHP-5.5/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.5/ext/exif/tests/
H A Dexif005.phpt2 Check for exif_read_data, unusual IFD start
H A Dbug48378.phpt13 Warning: exif_read_data(%s): Invalid IFD start in %s48378.php on line %d
/PHP-5.5/ext/gd/tests/
H A Dimagearc_variation2.phpt2 Testing passing negative start angle to imagearc() of GD library
H A Dimagefilledarc_variation2.phpt2 Testing passing negative start angle to imagefilledarc() of GD library
/PHP-5.5/ext/standard/tests/file/
H A Dfread_fwrite_basic.phpt31 echo "start:".fread($h, strlen($out1) - 5). "\n";
62 start:The 1st
/PHP-5.5/ext/standard/tests/streams/
H A Dstream_get_line_nb.phpt25 fwrite($sockets[0], b"line start");
59 string(22) "line start, line end, "
/PHP-5.5/ext/opcache/Optimizer/
H A Dnop_removal.c98 op_array->brk_cont_array[j].start -= shiftlist[op_array->brk_cont_array[j].start]; in nop_removal()
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_log.c411 char *start; in fpm_log_write() local
414 start = ++s; in fpm_log_write()
418 l = s - start; in fpm_log_write()
424 memcpy(format, start, l); in fpm_log_write()
/PHP-5.5/ext/pcre/tests/
H A Dmatch_flags3.phpt45 Warning: preg_match(): Compilation failed: group name must start with a non-digit at offset %d in %…

Completed in 42 milliseconds

12345678910>>...14