| /PHP_5_3/ext/date/lib/ |
| H A D | astro.h | 34 /* This macro computes the start and end times of civil twilight. */ 37 #define civil_twilight(ts,lon,lat,start,end) \ 38 timelib_astro_rise_set_altitude( ts, lon, lat, -6.0, 0, start, end ) 40 /* This macro computes the start and end times of nautical twilight. */ 43 #define nautical_twilight(ts,lon,lat,start,end) \ 44 timelib_astro_rise_set_altitude( ts, lon, lat, -12.0, 0, start, end ) 46 /* This macro computes the start and end times of astronomical twilight. */ 49 #define astronomical_twilight(ts,lon,lat,start,end) \ 50 timelib_astro_rise_set_altitude( ts, lon, lat, -18.0, 0, start, end )
|
| /PHP_5_3/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...] |
| H A D | engine.ih | 8 static unsigned char *dissect(register struct match *m, unsigned char *start, unsigned char *stop, sopno startst, sopno stopst); 9 static unsigned char *backref(register struct match *m, unsigned char *start, unsigned char *stop, sopno startst, sopno stopst, sopno lev); 10 static unsigned char *fast(register struct match *m, unsigned char *start, unsigned char *stop, sopno startst, sopno stopst); 11 static unsigned char *slow(register struct match *m, unsigned char *start, unsigned char *stop, sopno startst, sopno stopst); 12 static states step(register struct re_guts *g, sopno start, sopno stop, register states bef, int ch, register states aft); 26 static void at(struct match *m, unsigned char *title, unsigned char *start, unsigned char *stop, sopno startst, sopno stopst);
|
| /PHP_5_3/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_3/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_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
|
| /PHP_5_3/sapi/fpm/ |
| H A D | init.d.php-fpm.in | 54 start) 116 $0 start 134 echo "Usage: $0 {start|stop|force-quit|restart|reload}"
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gdhelpers.c | 18 char *start; local 31 start = s;
|
| /PHP_5_3/ext/hash/ |
| H A D | bench.php | 80 $start = microtime(true); variable 84 $time[$algo] += microtime(true)-$start;
|
| /PHP_5_3/ext/intl/doc/ |
| H A D | grapheme_api.php | 34 which character in haystack to start searching. The position 46 which character in haystack to start searching. The position 58 which character in haystack to start searching. The position 70 which character in haystack to start searching. The position 80 * @param int $start If start is non-negative, the returned string will start at the 81 start'th position in string, counting from zero. If start is negative, 82 the returned string will start a [all...] |
| /PHP_5_3/ext/mbstring/oniguruma/enc/ |
| H A D | big5.c | 112 big5_left_adjust_char_head(const UChar* start, const UChar* s) argument 117 if (s <= start) return (UChar* )s; 121 while (p > start) {
|
| H A D | euc_kr.c | 92 euckr_left_adjust_char_head(const UChar* start, const UChar* s) argument 100 if (s <= start) return (UChar* )s; 103 while (!euckr_islead(*p) && p > start) p--;
|
| H A D | euc_tw.c | 92 euctw_left_adjust_char_head(const UChar* start, const UChar* s) argument 100 if (s <= start) return (UChar* )s; 103 while (!euctw_islead(*p) && p > start) p--;
|
| H A D | sjis.c | 183 sjis_left_adjust_char_head(const UChar* start, const UChar* s) argument 188 if (s <= start) return (UChar* )s; 192 while (p > start) {
|
| H A D | utf16_be.c | 191 utf16be_left_adjust_char_head(const UChar* start, const UChar* s) argument 193 if (s <= start) return (UChar* )s; 195 if ((s - start) % 2 == 1) { 199 if (UTF16_IS_SURROGATE_SECOND(*s) && s > start + 1)
|
| H A D | utf16_le.c | 189 utf16le_left_adjust_char_head(const UChar* start, const UChar* s) argument 191 if (s <= start) return (UChar* )s; 193 if ((s - start) % 2 == 1) { 197 if (UTF16_IS_SURROGATE_SECOND(*(s+1)) && s > start + 1)
|
| H A D | utf32_be.c | 150 utf32be_left_adjust_char_head(const UChar* start, const UChar* s) argument 154 if (s <= start) return (UChar* )s; 156 rem = (s - start) % 4;
|
| H A D | utf32_le.c | 148 utf32le_left_adjust_char_head(const UChar* start, const UChar* s) argument 152 if (s <= start) return (UChar* )s; 154 rem = (s - start) % 4;
|
| /PHP_5_3/TSRM/ |
| H A D | tsrm_virtual_cwd.c | 763 static int tsrm_realpath_r(char *path, int start, int len, int *ll, time_t *t, int use_realpath, int is_dir, int *link_is_dir TSRMLS_DC) /* {{{ */ argument 779 if (len <= start) { 783 return start; 787 while (i > start && !IS_SLASH(path[i-1])) { 803 if (i - 1 <= start) { 804 return start ? start : len; 806 j = tsrm_realpath_r(path, start, i-1, ll, t, use_realpath, 1, NULL TSRMLS_CC); 807 if (j > start) { 809 while (j > start 1168 int start = 1; local [all...] |
| /PHP_5_3/ext/dba/libcdb/ |
| H A D | cdb_make.h | 46 uint32 start[256]; member in struct:cdb_make
|
| /PHP_5_3/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_3/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_3/ext/standard/ |
| H A D | url_scanner_ex.re | 186 #define STD_PARA url_adapt_state_ex_t *ctx, char *start, char *YYCURSOR TSRMLS_DC 187 #define STD_ARGS ctx, start, xp TSRMLS_CC 197 scdebug(("appending %d chars, starting with %c\n", YYCURSOR-start, *start)); 198 smart_str_appendl(&ctx->result, start, YYCURSOR - start); 255 smart_str_appendl(&ctx->tag, start, YYCURSOR - start); 266 smart_str_appendl(&ctx->arg, start, YYCURSOR - start); [all...] |
| /PHP_5_3/sapi/cli/ |
| H A D | php_cli_readline.h | 25 char **cli_code_completion(const char *text, int start, int end);
|
| /PHP_5_3/ext/mysqlnd/ |
| H A D | mysqlnd_charset.c | 27 static unsigned int check_mb_utf8mb3_sequence(const char *start, const char *end) argument 31 if (start >= end) { 35 c = (zend_uchar) start[0]; 44 if (start + 2 > end) { 47 if (!(((zend_uchar)start[1] ^ 0x80) < 0x40)) { 53 if (start + 3 > end) { 56 if (!(((zend_uchar)start[1] ^ 0x80) < 0x40 && ((zend_uchar)start[2] ^ 0x80) < 0x40 && 57 (c >= 0xE1 || (zend_uchar)start[1] >= 0xA0))) { 66 static unsigned int check_mb_utf8_sequence(const char *start, cons argument 138 check_mb_utf8mb3_valid(const char *start, const char *end) argument 144 check_mb_utf8_valid(const char *start, const char *end) argument 198 check_mb_big5(const char *start, const char *end) argument 216 check_mb_cp932(const char *start, const char *end) argument 233 check_mb_euckr(const char *start, const char *end) argument 261 check_mb_eucjpms(const char *start, const char *end) argument 298 check_mb_gb2312(const char *start, const char *end) argument 316 check_mb_gbk(const char *start, const char *end) argument 333 check_mb_sjis(const char *start, const char *end) argument 365 check_mb_ujis(const char *start, const char *end) argument 395 check_mb_utf16(const char *start, const char *end) argument [all...] |