Searched refs:tm_sec (Results 1 - 21 of 21) sorted by relevance
/ast/src/lib/libast/comp/ |
H A D | strftime.c | 63 if (tm->tm_sec < 0 || tm->tm_sec > 60 || 71 if (tm->tm_sec >= 0 && tm->tm_sec <= 60) 72 tl.tm_sec = tm->tm_sec; 88 tl.tm_sec = tm->tm_sec;
|
H A D | mktime.c | 55 tm.tm_sec = ts->tm_sec; 65 ts->tm_sec = tm.tm_sec;
|
H A D | strptime.c | 56 tm.tm_sec = ts->tm_sec; 70 ts->tm_sec = tm.tm_sec;
|
H A D | getdate.c | 71 ts.tm_sec = tm->tm_sec;
|
/ast/src/lib/libast/tm/ |
H A D | tmfix.c | 58 if (w = !tm->tm_sec && !tm->tm_min && !tm->tm_mday && !tm->tm_year && !tm->tm_yday && !tm->tm_isdst) 70 tm->tm_sec -= (TMX_RESOLUTION - n) / TMX_RESOLUTION; 75 tm->tm_sec += n / TMX_RESOLUTION; 78 if ((n = tm->tm_sec) < 0) 81 tm->tm_sec = 60 - (-n) % 60; 86 tm->tm_sec %= 60;
|
H A D | tmxmake.c | 84 tm->tm_sec = n % 60 + leapsec; 91 tm->tm_sec = x % 60 + leapsec;
|
H A D | tmxtime.c | 79 t += sec = tm->tm_sec;
|
H A D | tmxdate.c | 139 tm->tm_sec += (int)(t / TMX_RESOLUTION); 318 tm->tm_sec += (365L*24L*60L*60L) * p / q; 354 tm->tm_sec += (3042L*24L*60L*60L) * p / q / 100L; 361 tm->tm_sec += (60L) * p / q; 378 tm->tm_sec += (7L*24L*60L*60L) * p / q; 387 tm->tm_sec += (24L*60L*60L) * p / q; 396 tm->tm_sec += (60L*60L) * p / q; 414 tm->tm_sec += p; 559 tm->tm_sec = 0; 959 tm->tm_sec [all...] |
H A D | tmxscan.c | 114 tm->tm_sec = (set->sec >= 0) ? set->sec : 0; 119 tm->tm_sec = (set->sec >= 0) ? set->sec : 0; 122 tm->tm_sec = set->sec;
|
H A D | tminit.c | 419 if (tp->tm_sec != 60)
|
H A D | tmxfmt.c | 537 cp = number(cp, ep, (long)tm->tm_sec, 2, width, pad);
|
/ast/src/cmd/paxlib/zoo/ |
H A D | zoo.c | 244 tm.tm_sec = ((dostime ) & 0x1f) * 2; 246 tm.tm_sec += 15 * 60 * doszone; 248 tm.tm_sec += 15 * 60 * (doszone - 256);
|
/ast/src/lib/libast/include/ |
H A D | tm.h | 138 int tm_sec; member in struct:Tm_s
|
/ast/src/cmd/dsslib/time_t/ |
H A D | time_t.c | 443 r->value.number = state->tm.tm_sec; 510 state->tm.tm_sec = a->value.number;
|
/ast/src/cmd/pax/ |
H A D | pax-tnef.c | 146 tm.tm_sec = swapget(ap->swap, s + 10, 2);
|
/ast/src/cmd/paxlib/arj/ |
H A D | arj.c | 185 tm.tm_sec = ((dostime ) & 0x1f) * 2;
|
/ast/src/cmd/paxlib/lha/ |
H A D | lha.c | 170 tm.tm_sec = ((dostime ) & 0x1f) * 2;
|
/ast/src/cmd/paxlib/rar/ |
H A D | rar.c | 199 tm.tm_sec = ((dostime ) & 0x1f) * 2;
|
/ast/src/cmd/paxlib/zip/ |
H A D | zip.c | 259 tm.tm_sec = ((n<<1)&037);
|
/ast/src/lib/libtksh/tcl/ |
H A D | tclDate.c | 527 (time_t)tm->tm_hour, (time_t)tm->tm_min, (time_t)tm->tm_sec, 786 Start -= ((tm->tm_hour * 60L) + tm->tm_min * 60L) + tm->tm_sec;
|
/ast/src/cmd/at/ |
H A D | atd.c | 1197 tm->tm_sec = 0;
|
Completed in 37 milliseconds