Searched refs:newt (Results 1 - 7 of 7) sorted by relevance

/freebsd-current/contrib/tzcode/
H A Dzdump.c621 time_t newt = cutlotime; local
622 if (my_localtime_rz(tz, &newt, &newtm) != NULL)
623 showextrema(tz, argv[i], t, NULL, newt);
638 time_t newt = ((t < absolute_max_time - SECSPERDAY / 2 local
642 struct tm *newtmp = localtime_rz(tz, &newt, &newtm);
645 || (ab && (delta(&newtm, &tm) != newt - t
648 newt = hunt(tz, t, newt, false);
649 newtmp = localtime_rz(tz, &newt, &newtm);
652 showtrans("%Y-%m-%d\t%L\t%Q", newtmp, newt,
667 time_t newt = absolute_max_time; local
[all...]
H A Dlocaltime.c1624 time_t newt; local
1639 newt = t + seconds + SECSPERREPEAT;
1641 newt = t - seconds - SECSPERREPEAT;
1643 if (newt < sp->ats[0] ||
1644 newt > sp->ats[sp->timecnt - 1])
1646 result = localsub(sp, &newt, setname, tmp);
2167 time_t newt; local
2329 newt = (t + sp->ttis[j].tt_utoff
2331 if (! funcp(sp, &newt, offset, &mytm))
2340 t = newt;
[all...]
/freebsd-current/contrib/lua/src/
H A Dltable.c556 Table newt; /* to keep the new hash part */ local
559 /* create new hash part with appropriate size into 'newt' */
560 setnodevector(L, &newt, nhsize);
563 exchangehashpart(t, &newt); /* and new hash */
570 exchangehashpart(t, &newt); /* and hash (in case of errors) */
575 freehash(L, &newt); /* release new hash part */
579 exchangehashpart(t, &newt); /* 't' has the new hash ('newt' has the old) */
585 reinsert(L, &newt, t); /* 'newt' no
[all...]
/freebsd-current/contrib/wpa/src/utils/
H A Dedit.c41 static struct termios prevt, newt; variable in typeref:struct:
1130 newt = prevt;
1131 newt.c_lflag &= ~(ICANON | ECHO);
1132 tcsetattr(STDIN_FILENO, TCSANOW, &newt);
/freebsd-current/sys/netgraph/
H A Dng_car.c624 struct bintime newt, deltat; local
628 getbinuptime(&newt);
631 deltat = newt;
636 h->lastRefill = newt;
681 h->lastRefill = newt;
/freebsd-current/contrib/one-true-awk/
H A Drun.c1753 char *newt = (char *) malloc(strlen(s)); /* for building new string; reuse for each field */ local
1755 char *fr = newt;
1776 if (is_number(newt, &result))
1777 setsymtab(num, newt, result, STR|NUM, (Array *) ap->sval);
1779 setsymtab(num, newt, 0.0, STR, (Array *) ap->sval);
1783 free(newt);
/freebsd-current/sys/cam/ata/
H A Data_xpt.c1992 int nowt, newt = 0; local
1997 newt = (ata->flags & CTS_ATA_FLAGS_TAG_ENB) != 0;
1999 newt = (scsi->flags & CTS_SCSI_FLAGS_TAG_ENB) != 0;
2001 if (newt && !nowt) {
2011 } else if (nowt && !newt)

Completed in 274 milliseconds