Lines Matching defs:l32
120 dns_rdata_l32_t *l32 = source;
125 REQUIRE(l32->common.rdtype == type);
126 REQUIRE(l32->common.rdclass == rdclass);
131 RETERR(uint16_tobuffer(l32->pref, target));
132 n = ntohl(l32->l32.s_addr);
139 dns_rdata_l32_t *l32 = target;
148 l32->common.rdclass = rdata->rdclass;
149 l32->common.rdtype = rdata->type;
150 ISC_LINK_INIT(&l32->common, link);
153 l32->pref = uint16_fromregion(®ion);
155 l32->l32.s_addr = htonl(n);
161 dns_rdata_l32_t *l32 = source;
164 REQUIRE(l32->common.rdtype == dns_rdatatype_l32);