Home
last modified time | relevance | path

Searched refs:l_buf (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/yocto/poky/meta/recipes-core/zlib/zlib/
H A DCVE-2018-25032.patch44 - /* We overlay pending_buf and d_buf+l_buf. This works since the average
107 - s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
149 - ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
198 - uchf *l_buf; /* buffer for literals or lengths */
207 - uInt last_lit; /* running index in l_buf */
210 - /* Buffer for distances. To simplify the code, d_buf and l_buf have
224 - s->l_buf[s->last_lit++] = cc; \
236 - s->l_buf[s->last_lit++] = len; \
275 - s->l_buf[s->last_lit++] = (uch)lc;
318 - unsigned lx = 0; /* running index in l_buf */
[all …]
/OK3568_Linux_fs/u-boot/lib/zlib/
H A Ddeflate.h214 uchf *l_buf; /* buffer for literals or lengths */ member
322 s->l_buf[s->last_lit++] = cc; \
330 s->l_buf[s->last_lit++] = len; \
H A Dtrees.c1032 s->l_buf[s->last_lit++] = (uch)lc;
1089 lc = s->l_buf[lx++];
H A Ddeflate.c301 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize;
973 ds->l_buf = ds->pending_buf + (1+sizeof(ush))*ds->lit_bufsize;
/OK3568_Linux_fs/kernel/lib/zlib_deflate/
H A Ddefutil.h192 uch *l_buf; /* buffer for literals or lengths */ member
H A Ddeftree.c922 s->l_buf[s->last_lit++] = (uch)lc;
978 lc = s->l_buf[lx++];
H A Ddeflate.c272 s->l_buf = s->pending_buf + (1+sizeof(ush))*s->lit_bufsize; in zlib_deflateInit2()