| /PHP_5_5/ext/ereg/regex/ |
| H A D | engine.c | 37 unsigned char *beginp; /* start of string -- virtual NUL precedes */ 43 states fresh; /* states for a fresh start */ 80 unsigned char *start; local 87 start = string + pmatch[0].rm_so; 90 start = string; 91 stop = start + strlen(start); 93 if (stop < start) 98 for (dp = start; dp < stop; dp++) 112 m->beginp = start; [all...] |
| /PHP_5_5/ext/phar/ |
| H A D | shortarc.php | 221 $start = 4 + $s[1]; variable 226 $len = unpack('V', substr($m, $start, 4)); 227 $start += 4; 229 $savepath = substr($m, $start, $len[1]); 230 $start += $len[1]; 234 $ret['m'][$savepath] = array_values(unpack('Va/Vb/Vc/Vd/Ve/Vf', substr($m, $start, 24))); 239 $start += 24 + $ret['m'][$savepath][5];
|
| /PHP_5_5/ext/zip/lib/ |
| H A D | zip_filerange_crc.c | 47 _zip_filerange_crc(FILE *fp, off_t start, off_t len, uLong *crcp, 55 if (fseeko(fp, start, SEEK_SET) != 0) { 45 _zip_filerange_crc(FILE *fp, off_t start, off_t len, uLong *crcp, struct zip_error *errp) argument
|
| H A D | zip_fopen_index_encrypted.c | 56 zip_uint64_t start; 106 if ((start=_zip_file_get_offset(za, fileno)) == 0) 114 if ((src=_zip_source_file_or_p(za, NULL, za->zp, start, st.comp_size, 54 zip_uint64_t start; local
|
| H A D | zip_source_file.c | 46 zip_source_file(struct zip *za, const char *fname, zip_uint64_t start, 57 return _zip_source_file_or_p(za, fname, NULL, start, len, 1, NULL); 44 zip_source_file(struct zip *za, const char *fname, zip_uint64_t start, zip_int64_t len) argument
|
| H A D | zip_source_filep.c | 51 zip_uint64_t off; /* start offset of */ 64 zip_source_filep(struct zip *za, FILE *file, zip_uint64_t start, 70 if (file == NULL || start < 0 || len < -1) { 75 return _zip_source_file_or_p(za, NULL, file, start, len, 1, NULL); 83 zip_uint64_t start, zip_int64_t len, int closep, 108 f->off = start; 62 zip_source_filep(struct zip *za, FILE *file, zip_uint64_t start, zip_int64_t len) argument 79 _zip_source_file_or_p(struct zip *za, const char *fname, FILE *file, zip_uint64_t start, zip_int64_t len, int closep, const struct zip_stat *st) argument
|
| H A D | zip_source_zip.c | 57 int flags, zip_uint64_t start, zip_int64_t len) 82 if (start == 0 && len == -1 && (flags & ZIP_FL_RECOMPRESS) == 0) 102 p->off = start; 54 zip_source_zip(struct zip *za, struct zip *srcza, zip_uint64_t srcidx, int flags, zip_uint64_t start, zip_int64_t len) argument
|
| /PHP_5_5/ext/gd/libgd/ |
| H A D | gdhelpers.c | 18 char *start; local 31 start = s;
|
| /PHP_5_5/ext/hash/ |
| H A D | bench.php | 80 $start = microtime(true); variable 84 $time[$algo] += microtime(true)-$start;
|
| /PHP_5_5/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 397 /* {{{ proto string grapheme_substr(string str, int start [, int length]) 405 int32_t start = 0; local 423 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, "grapheme_substr: start not contained in string", 1 TSRMLS_CC ); 429 start = (int32_t) lstart; 434 grapheme_substr_ascii((char *)str, str_len, start, length, ZEND_NUM_ARGS(), (char **) &sub_str, &sub_str_len); 468 if ( start < 0 ) { 480 while ( start ) { 487 start += iter_val; 490 if ( 0 != start || sub_str_start_pos >= ustr_len ) { 492 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, "grapheme_substr: start no 800 int32_t start = 0; local [all...] |
| /PHP_5_5/ext/intl/transliterator/ |
| H A D | transliterator_methods.c | 296 /* {{{ proto string transliterator_transliterate( Transliterator trans, string subject [, int start = 0 [, int end = -1 ]] ) 297 * proto string Transliterator::transliterate( string subject [, int start = 0 [, int end = -1 ]] ) 308 long start = 0, local 321 &arg1, &str, &str_len, &start, &limit ) == FAILURE ) 357 &str, &str_len, &start, &limit ) == FAILURE ) 372 if( start < 0 || ((limit != -1 ) && (start > limit )) ) 375 "transliterator_transliterate: \"start\" argument should be " 390 if( ( start > ustr_len ) || (( limit != -1 ) && (limit > ustr_len ) ) ) 394 "transliterator_transliterate: Neither \"start\" no [all...] |
| /PHP_5_5/ext/mbstring/oniguruma/enc/ |
| H A D | big5.c | 115 big5_left_adjust_char_head(const UChar* start, const UChar* s) argument 120 if (s <= start) return (UChar* )s; 124 while (p > start) {
|
| H A D | euc_jp.c | 147 left_adjust_char_head(const UChar* start, const UChar* s) argument 155 if (s <= start) return (UChar* )s; 158 while (!eucjp_islead(*p) && p > start) p--;
|
| H A D | euc_kr.c | 95 euckr_left_adjust_char_head(const UChar* start, const UChar* s) argument 103 if (s <= start) return (UChar* )s; 106 while (!euckr_islead(*p) && p > start) p--;
|
| H A D | euc_tw.c | 86 euctw_left_adjust_char_head(const UChar* start, const UChar* s) argument 94 if (s <= start) return (UChar* )s; 97 while (!euctw_islead(*p) && p > start) p--;
|
| H A D | utf16_be.c | 186 utf16be_left_adjust_char_head(const UChar* start, const UChar* s) argument 188 if (s <= start) return (UChar* )s; 190 if ((s - start) % 2 == 1) { 194 if (UTF16_IS_SURROGATE_SECOND(*s) && s > start + 1)
|
| H A D | utf16_le.c | 187 utf16le_left_adjust_char_head(const UChar* start, const UChar* s) argument 189 if (s <= start) return (UChar* )s; 191 if ((s - start) % 2 == 1) { 195 if (UTF16_IS_SURROGATE_SECOND(*(s+1)) && s > start + 1)
|
| H A D | utf32_be.c | 149 utf32be_left_adjust_char_head(const UChar* start, const UChar* s) argument 153 if (s <= start) return (UChar* )s; 155 rem = (s - start) % 4;
|
| H A D | utf32_le.c | 149 utf32le_left_adjust_char_head(const UChar* start, const UChar* s) argument 153 if (s <= start) return (UChar* )s; 155 rem = (s - start) % 4;
|
| H A D | utf8.c | 269 left_adjust_char_head(const UChar* start, const UChar* s) argument 273 if (s <= start) return (UChar* )s; 276 while (!utf8_islead(*p) && p > start) p--;
|
| /PHP_5_5/ext/dba/libcdb/ |
| H A D | cdb_make.h | 46 uint32 start[256]; member in struct:cdb_make
|
| /PHP_5_5/ext/mysqli/ |
| H A D | mysqli_embedded.c | 30 /* {{{ proto bool mysqli_embedded_server_start(bool start, array arguments, array groups) 31 initialize and start embedded server */ 35 long start; local 45 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "laa", &start, &args, &grps) == FAILURE) { 49 if (!start) {
|
| /PHP_5_5/ext/shmop/ |
| H A D | shmop.c | 58 ZEND_ARG_INFO(0, start) 237 /* {{{ proto string shmop_read (int shmid, int start, int count) 241 long shmid, start, count; local 248 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lll", &shmid, &start, &count) == FAILURE) { 254 if (start < 0 || start > shmop->size) { 255 php_error_docref(NULL TSRMLS_CC, E_WARNING, "start is out of range"); 259 if (count < 0 || start > (INT_MAX - count) || start + count > shmop->size) { 264 startaddr = shmop->addr + start; [all...] |
| /PHP_5_5/ext/sysvshm/ |
| H A D | php_sysvshm.h | 49 long start; member in struct:__anon261
|
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_log.c | 409 char *start; local 412 start = ++s; 416 l = s - start; 422 memcpy(format, start, l);
|