Searched refs:d_first (Results 1 - 17 of 17) sorted by relevance

/freebsd-current/usr.bin/find/
H A Dls.c83 static int d_first = -1; local
87 if (d_first < 0)
88 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
96 format = d_first ? "%e %b %R " : "%b %e %R ";
99 format = d_first ? "%e %b %Y " : "%b %e %Y ";
/freebsd-current/usr.bin/finger/
H A Dextern.h38 extern int d_first;
H A Dlprint.c101 if (d_first < 0)
102 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
171 d_first ? "%a %e %b %R (%Z)" : "%a %b %e %R (%Z)",
204 d_first ? "%a %e %b %R %Y (%Z)" :
209 d_first ? "%a %e %b %R (%Z)" :
227 d_first ? "%a %e %b %R %Y (%Z)" :
233 d_first ? "%a %e %b %R %Y (%Z)" :
240 d_first ? "%a %e %b %R %Y (%Z)" :
H A Dsprint.c61 if (d_first < 0)
62 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
127 d_first ? "%e %b" : "%b %e", lc);
H A Dfinger.c80 int d_first = -1; variable
/freebsd-current/bin/pax/
H A Dgen_subs.c61 static int d_first = -1; variable
85 if (d_first < 0)
86 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
97 timefrmt = d_first ? OLDFRMTD : OLDFRMTM;
99 timefrmt = d_first ? CURFRMTD : CURFRMTM;
146 if (d_first < 0)
147 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
150 timefrmt = d_first ? OLDFRMTD : OLDFRMTM;
152 timefrmt = d_first ? CURFRMTD : CURFRMTM;
/freebsd-current/usr.bin/calendar/
H A Devents.c203 static int d_first; local
205 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
217 (void)strftime(dbuf, sizeof(dbuf), d_first ? "%e %b" : "%b %e", &tm);
/freebsd-current/usr.bin/who/
H A Dwho.c167 static int d_first = -1; local
171 if (d_first < 0)
172 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
194 strftime(buf, sizeof(buf), d_first ? "%e %b %R" : "%b %e %R", tm);
/freebsd-current/usr.sbin/ac/
H A Dac.c286 static int d_first = -1; local
288 if (d_first < 0)
289 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
292 d_first ? "%e %b total" : "%b %e total",
/freebsd-current/usr.bin/rwho/
H A Drwho.c86 int d_first; local
92 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
182 strftime(cbuf, sizeof(cbuf), d_first ? "%e %b %R" : "%b %e %R",
/freebsd-current/bin/ls/
H A Dprint.c461 static int d_first = -1; local
463 if (d_first < 0)
464 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
473 format = d_first ? "%e %b %T %Y" : "%b %e %T %Y";
476 format = d_first ? "%e %b %R" : "%b %e %R";
479 format = d_first ? "%e %b %Y" : "%b %e %Y";
/freebsd-current/usr.bin/last/
H A Dlast.c86 static int d_first; variable
119 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
348 (void) strftime(ct, sizeof(ct), d_first ?
/freebsd-current/usr.bin/systat/
H A Dvmstat.c279 static int d_first = -1; local
281 if (d_first < 0)
282 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
287 d_first ? "%e %b %T" : "%b %e %T", tp);
/freebsd-current/usr.bin/ncal/
H A Dncal.c546 static int d_first = -1; local
548 if (d_first < 0)
549 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
566 strftime(buf, sizeof(buf), d_first ? "%e %B %Y" : "%B %e %Y", &tm);
/freebsd-current/usr.bin/pr/
H A Dpr.c1592 int d_first; local
1845 d_first = (*nl_langinfo(D_MD_ORDER) == 'd');
1846 timefrmt = strdup(d_first ? TIMEFMTD : TIMEFMTM);
/freebsd-current/contrib/sqlite3/
H A Dshell.c2293 DIRENT d_first; /* DIRENT constructed based on "_findfirst". */ member in struct:DIR
2417 dirp->d_first.d_attributes = data.attrib;
2418 strncpy(dirp->d_first.d_name, data.name, NAME_MAX);
2419 dirp->d_first.d_name[NAME_MAX] = '\0';
2434 if( dirp->d_first.d_ino==0 ){
2435 dirp->d_first.d_ino++;
2438 return &dirp->d_first;
2469 if( dirp->d_first.d_ino==0 ){
2470 dirp->d_first.d_ino++;
2473 entry->d_ino = dirp->d_first
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h1937 OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F) {
1938 return std::transform(adl_begin(Range), adl_end(Range), d_first, F);

Completed in 384 milliseconds