| /PHP_TRUNK/ext/hash/ |
| H A D | bench.php | 76 $time = array(); variable 84 $time[$algo] += microtime(true)-$start; 88 asort($time, SORT_NUMERIC); 89 foreach ($time as $a => $t) {
|
| /PHP_TRUNK/ext/date/lib/ |
| H A D | tm2unixtime.c | 145 static void do_adjust_for_weekday(timelib_time* time) argument 149 current_dow = timelib_day_of_week(time->y, time->m, time->d); 150 if (time->relative.weekday_behavior == 2) 152 if (time->relative.weekday == 0) { 153 time->relative.weekday = 7; 155 time->d -= current_dow; 156 time->d += time 182 timelib_do_normalize(timelib_time* time) argument 193 do_adjust_relative(timelib_time* time) argument 221 do_adjust_special_weekday(timelib_time* time) argument 271 do_adjust_special(timelib_time* time) argument 284 do_adjust_special_early(timelib_time* time) argument 427 timelib_update_ts(timelib_time* time, timelib_tzinfo* tzi) argument [all...] |
| H A D | parse_date.c | 111 #define TIMELIB_HAVE_TIME() { if (s->time->have_time) { add_error(s, "Double time specification"); timelib_string_free(str); return TIMELIB_ERROR; } else { s->time->have_time = 1; s->time->h = 0; s->time->i = 0; s->time->s = 0; s->time->f = 0; } } 112 #define TIMELIB_UNHAVE_TIME() { s->time->have_time = 0; s->time->h = 0; s->time 157 struct timelib_time *time; member in struct:Scanner 24825 timelib_time_reset_fields(timelib_time *time) argument 24837 timelib_time_reset_unset_fields(timelib_time *time) argument 25236 timelib_time time = timelib_strtotime("May 12"); local [all...] |
| /PHP_TRUNK/ext/zip/lib/ |
| H A D | zip_dirent.c | 393 time(&now); 627 _zip_u2d_time(time_t time, unsigned short *dtime, unsigned short *ddate) 631 tm = localtime(&time); 609 _zip_u2d_time(time_t time, unsigned short *dtime, unsigned short *ddate) argument
|
| /PHP_TRUNK/ext/date/ |
| H A D | php_date.h | 45 PHP_FUNCTION(time); variable 131 timelib_time *time; member in struct:_php_date_obj
|
| H A D | php_date.c | 32 #include <time.h> 73 ZEND_ARG_INFO(0, time) 131 ZEND_ARG_INFO(0, time) 140 ZEND_ARG_INFO(0, time) 149 ZEND_ARG_INFO(0, time) 155 ZEND_ARG_INFO(0, time) 161 ZEND_ARG_INFO(0, time) 358 ZEND_ARG_INFO(0, time) 396 PHP_FE(time, arginfo_time) 720 * date-time 4242 timelib_time *time; local 4601 long time, retformat = 0; local 4700 long time; local [all...] |
| /PHP_TRUNK/ext/phar/ |
| H A D | zip.c | 129 now = time(NULL); 144 static void phar_zip_u2d_time(time_t time, char *dtime, char *ddate) /* {{{ */ argument 149 tm = php_localtime_r(&time, &tmbuf); 1184 entry.timestamp = time(NULL);
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_sdl.c | 3146 time_t time; member in struct:_sdl_cache_bucket 3198 time_t t = time(0); 3215 if (p->time < t - SOAP_GLOBAL(cache_ttl)) { 3225 time_t t = time(0); 3385 if (q->time < latest) { 3386 latest = q->time; 3399 p.time = t;
|
| /PHP_TRUNK/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 226 ** compile time. This is no longer permitted, on the grounds that it creates 270 ** This value can be lowered (or raised) at run-time using that the 366 ** database connection at the same time. 403 # error "At most one of the following compile-time configuration options\ 650 ** string contains the date and time of the check-in (UTC) and an SHA1 701 ** compile time. ^The SQLITE_ prefix may be omitted from the 705 ** over the list of options that were defined at compile time by 706 ** returning the N-th compile time option string. ^If N is out of range, 713 ** [SQLITE_OMIT_COMPILEOPTION_DIAGS] option at compile time. 728 ** [SQLITE_THREADSAFE] compile-time optio 34153 SYSTEMTIME time; local [all...] |
| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | xmlrpc.c | 155 #include <time.h> 1522 * void XMLRPC_SetValueDateTime(XMLRPC_VALUE value, time_t time) 1524 * Assign time value to XMLRPC_VALUE 1527 * time The desired new unix time value (time_t) 1537 void XMLRPC_SetValueDateTime(XMLRPC_VALUE value, time_t time) { argument 1541 value->i = time; 1545 date_to_ISO8601(time, timeBuf, sizeof(timeBuf)); 1668 * XMLRPC_VALUE XMLRPC_CreateValueDateTime(const char* id, time_t time) 1673 * time Th 1683 XMLRPC_CreateValueDateTime(const char* id, time_t time) argument [all...] |
| /PHP_TRUNK/ |
| H A D | run-tests.php | 786 $start_time = time(); 796 $end_time = time(); 927 $start_time = time(); 933 $end_time = time(); 2636 '<testsuite name="%s" tests="%s" failures="%d" errors="%d" skip="%d" time="%s">' . PHP_EOL, 2666 * @param int|string $time 2671 function junit_mark_test_as($type, $file_name, $test_name, $time = null, $message = '', $details = '') { 2679 $time = null !== $time ? $time variable [all...] |