Lines Matching defs:l64
127 dns_rdata_l64_t *l64 = source;
131 REQUIRE(l64->common.rdtype == type);
132 REQUIRE(l64->common.rdclass == rdclass);
137 RETERR(uint16_tobuffer(l64->pref, target));
138 return (mem_tobuffer(target, l64->l64, sizeof(l64->l64)));
144 dns_rdata_l64_t *l64 = target;
152 l64->common.rdclass = rdata->rdclass;
153 l64->common.rdtype = rdata->type;
154 ISC_LINK_INIT(&l64->common, link);
157 l64->pref = uint16_fromregion(®ion);
158 memmove(l64->l64, region.base, region.length);
164 dns_rdata_l64_t *l64 = source;
167 REQUIRE(l64->common.rdtype == 106);