Home
last modified time | relevance | path

Searched refs:ltemp (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/bsd/ntp/dist/util/
H A Dkern.c127 long ltemp, mtemp; in hardupdate() local
142 ltemp = time_tolerance << SHIFT_KF; in hardupdate()
143 if (time_freq > ltemp) in hardupdate()
144 time_freq = ltemp; in hardupdate()
145 else if (time_freq < -ltemp) in hardupdate()
146 time_freq = -ltemp; in hardupdate()
157 int ltemp, time_update; in hardclock() local
162 ltemp = -time_phase >> SHIFT_SCALE; in hardclock()
163 time_phase += ltemp << SHIFT_SCALE; in hardclock()
164 time_update -= ltemp; in hardclock()
[all …]
/netbsd-src/external/mpl/dhcp/dist/server/
H A Dfailover.c2526 struct lease *ltemp = NULL; in dhcp_failover_pool_dobalance() local
2619 ltemp = LEASE_GET_NEXTP(lq, lp); in dhcp_failover_pool_dobalance()
2620 if (ltemp != NULL) in dhcp_failover_pool_dobalance()
2621 lease_reference(&next, ltemp, MDL); in dhcp_failover_pool_dobalance()
2714 struct lease *ltemp; in dhcp_failover_pool_check() local
2731 ltemp = LEASE_GET_FIRST(pool->free); in dhcp_failover_pool_check()
2732 if(ltemp && ltemp->ends < cur_time) in dhcp_failover_pool_check()
2733 est1 = cur_time - ltemp->ends; in dhcp_failover_pool_check()
2737 ltemp = LEASE_GET_FIRST(pool->backup); in dhcp_failover_pool_check()
2738 if(ltemp && ltemp->ends < cur_time) in dhcp_failover_pool_check()
[all …]
H A Dmdb.c1924 struct lease *ltemp = NULL; local
1984 ltemp = LEASE_GET_NEXTP(lptr[i], lease);
1985 if (ltemp)
1986 lease_reference(&next, ltemp, MDL);
3007 struct lease *lc = NULL, *ln = NULL, *ltemp = NULL; local
3186 ltemp = LEASE_GET_NEXTP(lptr[i], lc);
3187 if (ltemp != NULL) {
3188 lease_reference(&ln, ltemp, MDL);
/netbsd-src/external/bsd/ntp/dist/ntpdc/
H A Dntpdc_ops.c2844 u_int32 ltemp; in clkbug() local
2885 ltemp = ntohl(cl->values[i]); in clkbug()
2886 ltemp &= 0xffffffff; /* HMS: This does nothing now */ in clkbug()
2890 (void) fprintf(fp, "%12ld", (u_long)ltemp); in clkbug()
2892 (void) fprintf(fp, "%12lu", (u_long)ltemp); in clkbug()
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cxxcom/
H A Dpftn.c3095 NODE *ltemp, *rtemp; in cxop() local
3109 ltemp = tempnode(0, l->n_type, l->n_df, l->n_ap); in cxop()
3110 l = buildtree(ASSIGN, ccopy(ltemp), l); in cxop()
3119 real_l = structref(ccopy(ltemp), STREF, real); in cxop()
3121 imag_l = structref(ltemp, STREF, imag); in cxop()
/netbsd-src/external/bsd/pcc/dist/pcc/cc/ccom/
H A Dpftn.c3160 NODE *ltemp, *rtemp; in cxop() local
3178 ltemp = tempnode(0, l->n_type, l->n_df, l->n_ap); in cxop()
3179 l = buildtree(ASSIGN, ccopy(ltemp), l); in cxop()
3191 real_l = structref(ccopy(ltemp), STREF, real); in cxop()
3192 imag_l = structref(ltemp, STREF, imag); in cxop()
/netbsd-src/external/bsd/ntp/dist/
H A DCommitLog-4.1.0989 * ntpd/ntp_crypto.c (make_keylist): ltemp might be smaller than
990 sys_automax - check peer->kpoll, too. Other ltemp cleanup.