Lines Matching defs:l32
128 dns_rdata_l32_t *l32 = source;
133 REQUIRE(l32->common.rdtype == type);
134 REQUIRE(l32->common.rdclass == rdclass);
139 RETERR(uint16_tobuffer(l32->pref, target));
140 n = ntohl(l32->l32.s_addr);
147 dns_rdata_l32_t *l32 = target;
156 l32->common.rdclass = rdata->rdclass;
157 l32->common.rdtype = rdata->type;
158 ISC_LINK_INIT(&l32->common, link);
161 l32->pref = uint16_fromregion(®ion);
163 l32->l32.s_addr = htonl(n);
169 dns_rdata_l32_t *l32 = source;
172 REQUIRE(l32->common.rdtype == 105);