Home
last modified time | relevance | path

Searched refs:zlen (Results 1 – 4 of 4) sorted by relevance

/dragonfly/sys/dev/video/fb/pcx/
H A Dsplash_pcx.c63 int bpp, planes, zlen; member
181 pcx_info.zlen = size - (128 + 1 + 768); in pcx_init()
196 if (pcx_info.zlen < 1) in pcx_draw()
225 for (j = 0; j < pcx_info.bpsl && i < pcx_info.zlen; ++i) { in pcx_draw()
228 if (i >= pcx_info.zlen) in pcx_draw()
/dragonfly/sys/kern/
H A Dkern_slaballoc.c1299 int zlen; /* length inclusive of terminating NUL */ in kstrdup_debug() local
1304 zlen = strlen(str) + 1; in kstrdup_debug()
1305 nstr = _kmalloc_debug(zlen, type, M_WAITOK, file, line); in kstrdup_debug()
1306 bcopy(str, nstr, zlen); in kstrdup_debug()
1319 int zlen; /* length inclusive of terminating NUL */ in kstrndup_debug() local
1324 zlen = strnlen(str, maxlen) + 1; in kstrndup_debug()
1325 nstr = _kmalloc_debug(zlen, type, M_WAITOK, file, line); in kstrndup_debug()
1326 bcopy(str, nstr, zlen); in kstrndup_debug()
1327 nstr[zlen - 1] = '\0'; in kstrndup_debug()
/dragonfly/crypto/libressl/crypto/bn/
H A Dbn_gf2m.c489 int zlen, i, j, k, ret = 0; in BN_GF2m_mod_mul_arr() local
504 zlen = a->top + b->top + 4; in BN_GF2m_mod_mul_arr()
505 if (!bn_wexpand(s, zlen)) in BN_GF2m_mod_mul_arr()
507 s->top = zlen; in BN_GF2m_mod_mul_arr()
509 for (i = 0; i < zlen; i++) in BN_GF2m_mod_mul_arr()
/dragonfly/bin/sh/
H A Dexpand.c896 size_t len, zpos, zlen; in reprocess() local
918 zlen = strlen(buf + zpos); in reprocess()
920 zpos += zlen + 1; in reprocess()
923 if (flag & EXP_SPLIT && (quoted || (zlen > 0 && zpos < len))) in reprocess()