Searched defs:rt (Results 1 - 3 of 3) sorted by relevance

/bind-9.11.3/lib/dns/rdata/generic/
H A Drt_21.c170 dns_rdata_rt_t *rt = source; local
175 REQUIRE(rt->common.rdtype == type);
176 REQUIRE(rt->common.rdclass == rdclass);
181 RETERR(uint16_tobuffer(rt->preference, target));
182 dns_name_toregion(&rt->host, &region);
189 dns_rdata_rt_t *rt = target; local
196 rt->common.rdclass = rdata->rdclass;
197 rt->common.rdtype = rdata->type;
198 ISC_LINK_INIT(&rt->common, link);
202 rt
214 dns_rdata_rt_t *rt = source; local
[all...]
/bind-9.11.3/bin/tests/virtual-time/
H A Dvtwrapper.c46 absolute_inflate(struct timeval *vt, struct timeval *rt) argument
50 rt->tv_sec = vt->tv_sec;
51 rt->tv_usec = vt->tv_usec;
57 rt->tv_sec -= epoch.tv_sec;
58 rt->tv_usec -= epoch.tv_usec;
59 while (rt->tv_usec < 0) {
60 rt->tv_sec -= 1;
61 rt->tv_usec += 1000000;
64 if (rt->tv_sec == 0)
67 d = (double) (rt
85 absolute_deflate(struct timeval *rt, struct timeval *vt) argument
124 interval_inflate(struct timeval *vt, struct timeval *rt) argument
150 interval_deflate(struct timeval *rt, struct timeval *vt) argument
[all...]
/bind-9.11.3/lib/isc/tests/
H A Drandom_test.c197 unsigned int rt = 0; local
204 while (rt >= cols || ((bits[i] >> rt) & 1) == 0) {
210 rt++;
211 if (rt < cols) {
228 if (((bits[j] >> rt) & 1) == 0)
234 rt++;

Completed in 13 milliseconds