Searched refs:zlen (Results 1 - 11 of 11) sorted by relevance

/netbsd-current/external/mpl/bind/dist/bin/named/
H A Dbuiltin.c137 size_t zlen, nlen, j, len; local
151 zlen = zone->length;
153 if ((zlen + nlen) > 74U || zlen < 10U || (nlen % 2) != 0U) {
199 switch (zlen) {
212 if (nlen + zlen != 74U) {
229 if (nlen + zlen != 74U) {
246 if (nlen + zlen != 74U) {
263 if (nlen + zlen != 74U) {
280 if (nlen + zlen !
[all...]
/netbsd-current/external/bsd/ntp/dist/lib/isc/
H A Dnetaddr.c134 int zlen; local
167 zlen = 0;
169 zlen = snprintf(zbuf, sizeof(zbuf), "%%%u", netaddr->zone);
170 if (zlen < 0)
172 INSIST((unsigned int)zlen < sizeof(zbuf));
175 if (alen + zlen > isc_buffer_availablelength(target))
179 isc_buffer_putmem(target, (unsigned char *)zbuf, zlen);
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/
H A Dnetaddr.c136 int zlen; local
171 zlen = 0;
173 zlen = snprintf(zbuf, sizeof(zbuf), "%%%u", netaddr->zone);
174 if (zlen < 0) {
177 INSIST((unsigned int)zlen < sizeof(zbuf));
180 if (alen + zlen > isc_buffer_availablelength(target)) {
185 isc_buffer_putmem(target, (unsigned char *)zbuf, (unsigned int)zlen);
/netbsd-current/external/mpl/bind/dist/lib/isc/
H A Dnetaddr.c134 int zlen; local
167 zlen = 0;
169 zlen = snprintf(zbuf, sizeof(zbuf), "%%%u", netaddr->zone);
170 if (zlen < 0) {
173 INSIST((unsigned int)zlen < sizeof(zbuf));
176 if (alen + zlen > isc_buffer_availablelength(target)) {
181 isc_buffer_putmem(target, (unsigned char *)zbuf, (unsigned int)zlen);
/netbsd-current/external/mpl/bind/dist/contrib/dlz/modules/mysqldyn/
H A Ddlz_mysqldyn_mod.c531 size_t nlen, zlen; local
541 zlen = strlen(zone);
543 if (nlen < zlen) {
546 } else if (nlen == zlen || strcasecmp(name, zone) == 0) {
551 p = name + nlen - zlen;
553 (zone[zlen - 1] != '.' || strncasecmp(p, zone, zlen - 1) != 0))
559 strncpy(new, name, nlen - zlen);
560 new[nlen - zlen - 1] = '\0';
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/bn/
H A Dbn_gf2m.c413 int zlen, i, j, k, ret = 0; local
428 zlen = a->top + b->top + 4;
429 if (!bn_wexpand(s, zlen))
431 s->top = zlen;
433 for (i = 0; i < zlen; i++)
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/bn/
H A Dbn_gf2m.c413 int zlen, i, j, k, ret = 0; local
428 zlen = a->top + b->top + 4;
429 if (!bn_wexpand(s, zlen))
431 s->top = zlen;
433 for (i = 0; i < zlen; i++)
/netbsd-current/external/bsd/unbound/dist/smallapp/
H A Dunbound-anchor.c1406 long zlen; local
1408 zlen = BIO_get_mem_data(zone, &z);
1409 if(!zlen || !z) return 0;
1411 if(zlen >= (long)sizeof(buf)) return 0;
1412 memmove(buf, z, (size_t)zlen);
1413 buf[zlen] = 0;
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/
H A Ddemangle.d2728 uint zlen, zpos;
2736 zlen = (ch & 0x7) + 1;
2737 zpos = ((ch >> 3) & 7) + 1; // + zlen;
2740 s ~= s[$ - zpos .. $ - zpos + zlen];
2747 zlen = (ch2 & 0x7f) | ((ch & 0x38) << 4);
2754 s ~= s[$ - zpos .. $ - zpos + zlen];
/netbsd-current/sys/uvm/
H A Duvm_bio.c1030 vsize_t zlen = PAGE_SIZE - endoff; local
1032 off, zlen, ubc_zerorange_process, NULL);
/netbsd-current/external/bsd/nsd/dist/
H A Ddifffile.c1645 size_t zlen = strlen(zone); local
1651 zlen + 1 + plen + 1, NULL)) {
1658 memcpy(p, zone, zlen+1);
1659 memmove((char*)p+zlen+1, pattern, plen+1);

Completed in 136 milliseconds