Searched refs:date (Results 1 - 25 of 288) sorted by relevance

1234567891011>>

/freebsd-10-stable/lib/libcalendar/
H A Dcalendar.h28 struct date { struct
34 struct date *easterg(int _year, struct date *_dt);
35 struct date *easterog(int _year, struct date *_dt);
36 struct date *easteroj(int _year, struct date *_dt);
37 struct date *gdate(int _nd, struct date *_dt);
38 struct date *jdat
[all...]
H A Dcalendar.c38 * month. This assumes the internal date representation, where a year
50 typedef struct date date; typedef in typeref:struct:date
54 static date jiswitch = {1582, 7, 3};
56 static date *date2idt(date *idt, date *dt);
57 static date *idt2date(date *dt, date *id
[all...]
H A Deaster.c32 typedef struct date date; typedef in typeref:struct:date
37 date *
38 easterg(int y, date *dt)
55 /* Compute the Gregorian date of Easter Sunday in Julian Calendar */
56 date *
57 easterog(int y, date *dt)
63 /* Compute the Julian date of Easter Sunday in Julian Calendar */
64 date *
65 easteroj(int y, date * d
[all...]
/freebsd-10-stable/contrib/dialog/samples/
H A Dlisting6 date
/freebsd-10-stable/tools/build/cross-build/
H A Ddate.sh6 exec /bin/date -r0 "$@"
H A DMakefile4 SCRIPTS= date.sh hostname.sh
/freebsd-10-stable/contrib/apr-util/misc/
H A Dapr_date.c18 * apr_date.c: date parsing utility routines
23 * tested with over 50,000 randomly chosen valid date strings
24 * and several hundred variations of invalid date strings.
99 * Parses an HTTP date in one of three standard forms:
106 * or APR_DATE_BAD if this would be out of range or if the date is invalid.
110 * HTTP-date = rfc1123-date | rfc850-date | asctime-date
112 * rfc1123-date
[all...]
/freebsd-10-stable/contrib/apr-util/include/
H A Dapr_date.h22 * @brief APR-UTIL date routines
32 * apr_date.h: prototypes for date parsing utility routines
42 /** A bad date. */
63 * Parses an HTTP date in one of three standard forms:
69 * @param date The date in one of the three formats above
71 * 0 if this would be out of range or if the date is invalid.
73 APU_DECLARE(apr_time_t) apr_date_parse_http(const char *date);
76 * Parses a string resembling an RFC 822 date. This is meant to be
95 * @param date Th
[all...]
/freebsd-10-stable/sys/dev/cx/
H A Dcronyxfw.h31 char date[8]; /* date when compiled */ member in struct:__anon8138
/freebsd-10-stable/bin/date/
H A DMakefile6 PROG= date
7 SRCS= date.c netdate.c vary.c
/freebsd-10-stable/gnu/usr.bin/groff/
H A Dmdate.sh8 echo $(date -j -f %Y-%m-%d +"%e %B %Y" $changelog_date)
/freebsd-10-stable/contrib/libarchive/cpio/test/
H A Dtest_option_t.c37 char date[32]; local
92 _snprintf(date, sizeof(date)-1, "%12.12s file", date2);
95 snprintf(date, sizeof(date)-1, "%12.12s file", date2);
97 assertEqualMem(p + 42, date, strlen(date));
/freebsd-10-stable/share/doc/smm/12.timed/
H A DMakefile6 EXTRA= date loop time unused
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.killonerror.ksh39 rc=`$dtrace -c date -n jarod 2>/dev/null | /usr/bin/wc -l`
H A Dtst.main.ksh42 $dtrace -c date -s /dev/stdin <<EOF
/freebsd-10-stable/contrib/groff/
H A Dmdate.sh3 # Print the modification date of $1 `nicely'.
11 (date;
/freebsd-10-stable/contrib/subversion/subversion/libsvn_subr/
H A Dcompat.c49 commit_info->date,
99 const svn_string_t **date,
103 *author = *date = *message = NULL;
107 *date = svn_hash_gets(revprops, SVN_PROP_REVISION_DATE);
113 svn_compat_log_revprops_out(const char **author, const char **date, argument
121 *date = date_s ? date_s->data : NULL;
141 const char *author, *date, *message; local
142 svn_compat_log_revprops_out(&author, &date, &message,
147 author, date, message,
98 svn_compat_log_revprops_out_string(const svn_string_t **author, const svn_string_t **date, const svn_string_t **message, apr_hash_t *revprops) argument
/freebsd-10-stable/share/examples/printing/
H A Dmake-ps-header29 date=`date`
70 [ ($job) ($host) ($date) ] {
/freebsd-10-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.andpid.ksh35 $dtrace -c date -s /dev/stdin <<EOF
/freebsd-10-stable/contrib/subversion/subversion/include/
H A Dsvn_compat.h57 /** Clear svn:author, svn:date, and svn:log from @a revprops if not NULL.
67 * retrieve the pre-1.5 set of revprops: svn:author, svn:date, and svn:log.
74 /** Return, in @a **author, @a **date, and @a **message, the values of the
75 * svn:author, svn:date, and svn:log revprops from @a revprops. If @a
83 const svn_string_t **date,
93 svn_compat_log_revprops_out(const char **author, const char **date,
/freebsd-10-stable/sys/dev/iicbus/
H A Dds133x.c291 uint8_t date[7]; local
294 error = ds133x_read(dev, DS133X_DATE_REG, date, 7);
297 ct.sec = FROMBCD(date[0] & 0x7f);
298 ct.min = FROMBCD(date[1] & 0x7f);
299 ct.hour = ds133x_get_hours(date[2]);
300 ct.dow = FROMBCD(date[3] & 0x07) - 1;
301 ct.day = FROMBCD(date[4] & 0x3f);
302 ct.mon = FROMBCD(date[5] & 0x1f);
305 ct.year = 2000 + FROMBCD(date[6]);
307 ct.year = 1900 + FROMBCD(date[
321 uint8_t date[7]; local
[all...]
/freebsd-10-stable/gnu/usr.bin/rcs/lib/
H A Drcstime.c44 time2date(unixtime,date)
46 char date[datesize];
49 VOID sprintf(date,
71 faterror("unknown date/time: %s", source);
76 * Parse a free-format date in SOURCE, convert it
94 /* Convert an RCS internal format date to time_t. */
125 date2str(date, datebuf)
126 char const date[datesize];
129 register char const *p = date;
136 + (date[
[all...]
H A Drcsrev.c123 /* Given a pointer s to a dotted number (date or revision number),
257 normalizeyear(date, year)
258 char const *date;
261 if (isdigit(date[0]) && isdigit(date[1]) && !isdigit(date[2])) {
264 year[2] = date[0];
265 year[3] = date[1];
269 return date;
274 cantfindbranch(revno, date, autho
862 char date[20]; local
[all...]
/freebsd-10-stable/usr.sbin/fifolog/fifolog_writer/
H A DMakefile13 date | ./${PROG} -z 0 /tmp/fifolog.0
/freebsd-10-stable/usr.bin/calendar/
H A Devents.c41 event_add(int year, int month, int day, char *date, int var, char *txt, argument
50 * - Copy the human readable and language specific date
59 e->date = strdup(date);
60 if (e->date == NULL)
116 (void)fprintf(fp, "%s%c%s%s%s%s\n", e->date,

Completed in 151 milliseconds

1234567891011>>