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

/freebsd-10.1-release/sys/dev/fb/
H A Dsplash_pcx.c68 int zlen; member in struct:__anon8517
193 pcx_info.zlen = size - (128 + 1 + 768);
208 if (pcx_info.zlen < 1)
237 for (j = 0; j < pcx_info.bpsl && i < pcx_info.zlen; ++i) {
240 if (i >= pcx_info.zlen)
/freebsd-10.1-release/contrib/ntp/lib/isc/
H A Dnetaddr.c132 int zlen; local
165 zlen = 0;
167 zlen = snprintf(zbuf, sizeof(zbuf), "%%%u", netaddr->zone);
168 if (zlen < 0)
170 INSIST((unsigned int)zlen < sizeof(zbuf));
173 if (alen + zlen > isc_buffer_availablelength(target))
177 isc_buffer_putmem(target, (unsigned char *)zbuf, zlen);
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_delta/
H A Dsvndiff.c558 unsigned long zlen = len;
562 zerr = uncompress((unsigned char *)out->data, &zlen, in, inLen);
570 if (zlen != len)
575 out->data[zlen] = 0;
576 out->len = zlen;
557 unsigned long zlen = len; local
/freebsd-10.1-release/crypto/openssl/crypto/bn/
H A Dbn_gf2m.c493 int zlen, i, j, k, ret = 0; local
508 zlen = a->top + b->top + 4;
509 if (!bn_wexpand(s, zlen))
511 s->top = zlen;
513 for (i = 0; i < zlen; i++)
/freebsd-10.1-release/contrib/unbound/smallapp/
H A Dunbound-anchor.c1384 long zlen; local
1386 zlen = BIO_get_mem_data(zone, &z);
1387 if(!zlen || !z) return 0;
1389 if(zlen >= (long)sizeof(buf)) return 0;
1390 memmove(buf, z, (size_t)zlen);
1391 buf[zlen] = 0;

Completed in 111 milliseconds