Searched defs:ats (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Ddist.c202 char ats[NCHARS + 1], spaces[NCHARS + 1]; local
215 (void) memset(ats, '@', nats);
216 ats[nats] = 0;
224 mdb_printf("%*s |%s%s %lld\n", width, range, ats, spaces, count);
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dlocaltime.c113 time_t *ats; member in struct:state
209 sp->ats = (time_t *)calloc((unsigned)sp->timecnt,
211 if (sp->ats == NULL)
254 if (sp->ats) {
255 free((char *)sp->ats);
256 sp->ats = 0;
381 sp->ats[i] = detzcode(p);
815 atp = sp->ats;
919 sp->ats[i] +=
1045 if (sp->timecnt == 0 || t < sp->ats[
[all...]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_consume.c629 const char *ats = "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"; local
632 assert(strlen(ats) == len && strlen(spaces) == len);
651 return (dt_printf(dtp, fp, "|%s%s %-9lld\n", ats + len - depth,
660 ats + len - depth, (long long)val / normal));
671 ats = &ats[len];
679 ats + len - depth, len, "", (long long)val / normal));
682 ats + len - depth, spaces + depth,
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dlocaltime.c286 time_t ats[TZ_MAX_TIMES]; /* Trans. times */ member in struct:state
290 int last_ats_idx; /* last ats index */
1098 if (t < lclzonep->ats[0] || t >= lclzonep->ats[hi]) {
1110 } else if (t < lclzonep->ats[0]) { /* zoneinfo... */
1121 t >= lclzonep->ats[lidx] &&
1122 t < lclzonep->ats[lidx + 1]) {
1131 if (t == lclzonep->ats[tidx])
1133 else if (t < lclzonep->ats[tidx])
1519 if (cnt - (cp - bufp) < (long)(sp->timecnt * 4 + /* ats */
[all...]
/illumos-gate/usr/src/cmd/zic/
H A Dzic.c1473 zic_t ats[TZ_MAX_TIMES]; local
1515 ats[i] = attypes[i].at;
1563 if (ats[i] >= trans[j]) {
1564 ats[i] = tadd(ats[i], corr[j]);
1567 puttzcode((long)ats[i], fp);
1582 if (timecnt == 0 || trans[i] < ats[0]) {
1591 while (j < timecnt && trans[i] >= ats[j])

Completed in 92 milliseconds