Searched defs:l1 (Results 1 - 7 of 7) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/rdata/generic/
H A Deui48_108.c28 unsigned int l0, l1, l2, l3, l4, l5; local
42 &l0, &l1, &l2, &l3, &l4, &l5);
43 if (n != 6 || l0 > 255U || l1 > 255U || l2 > 255U || l3 > 255U ||
48 eui48[1] = l1;
H A Deui64_109.c28 unsigned int l0, l1, l2, l3, l4, l5, l6, l7; local
42 &l0, &l1, &l2, &l3, &l4, &l5, &l6, &l7);
43 if (n != 8 || l0 > 255U || l1 > 255U || l2 > 255U || l3 > 255U ||
48 eui64[1] = l1;
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dlist_test.c184 atf_list_t l1, l2; local
186 RE(atf_list_init(&l1));
189 atf_list_append_list(&l1, &l2);
190 ATF_CHECK_EQ(atf_list_size(&l1), 0);
192 atf_list_fini(&l1);
196 atf_list_t l1, l2; local
199 RE(atf_list_init(&l1));
200 RE(atf_list_append(&l1, &item, false));
203 atf_list_append_list(&l1, &l2);
204 ATF_CHECK_EQ(atf_list_size(&l1),
211 atf_list_t l1, l2; local
226 atf_list_t l1, l2; local
244 atf_list_t l1, l2; local
[all...]
/bind-9.6-ESV-R11/lib/isccc/
H A Dsexpr.c256 isccc_sexpr_t *last, *elt, *l1; local
259 l1 = *l1p;
260 REQUIRE(l1 == NULL || l1->type == ISCCC_SEXPRTYPE_DOTTEDPAIR);
265 if (l1 == NULL) {
269 for (last = l1; CDR(last) != NULL; last = CDR(last))
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dutils_test.c318 const char *l1 = "First line with % formatting % characters %"; local
322 atf_utils_create_file("test.txt", "%s\n%s\n%s", l1, l2, l3);
330 ATF_REQUIRE_STREQ(l1, line);
/bind-9.6-ESV-R11/lib/dns/
H A Dname.c553 unsigned int l1, l2, l, count1, count2, count, nlabels; local
590 l1 = name1->labels;
592 if (l2 > l1) {
593 l = l1;
594 ldiff = 0 - (l2 - l1);
597 ldiff = l1 - l2;
602 l1--;
604 label1 = &name1->ndata[offsets1[l1]];
762 unsigned int l1, l2, l, count1, count2, count; local
777 l1
[all...]
H A Drdata.c1408 int l1, l2; local
1419 l1 = dns_name_countlabels(name);
1422 if (l1 == l2)
1426 dns_name_getlabelsequence(name, l1 - l2, l2, target);
1430 dns_name_getlabelsequence(name, 0, l1 - l2, target);

Completed in 36 milliseconds