Searched refs:wsize (Results 1 - 9 of 9) sorted by relevance

/u-boot/lib/zstd/
H A Dzstd.c17 size_t wsize, len; local
21 wsize = zstd_dctx_workspace_bound();
22 workspace = malloc(wsize);
25 wsize);
29 ctx = zstd_init_dctx(workspace, wsize);
/u-boot/fs/squashfs/
H A Dsqfs_decompressor.c111 size_t wsize; local
114 wsize = zstd_dctx_workspace_bound();
116 ctx = zstd_init_dctx(ctxt->zstd_workspace, wsize);
/u-boot/lib/zlib/
H A Dinflate.h89 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
H A Dinffast.c63 unsigned wsize; /* window size or zero if not using window */ local
66 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
98 wsize = state->wsize;
188 from += wsize - op;
198 from += wsize + wnext - op;
H A Dinflate.c22 state->wsize = 0;
84 Update the window with the last wsize (normally 32K) bytes written before
113 if (state->wsize == 0) {
114 state->wsize = 1U << state->wbits;
119 /* copy state->wsize or less output bytes into the circular window */
121 if (copy >= state->wsize) {
122 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
124 state->whave = state->wsize;
127 dist = state->wsize
[all...]
H A Ddeflate.c1337 uInt wsize = s->w_size; local
1345 more = wsize;
1358 if (s->strstart >= wsize+MAX_DIST(s)) {
1360 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1361 s->match_start -= wsize;
1362 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
1363 s->block_start -= (long) wsize;
1375 *p = (Pos)(m >= wsize ? m-wsize
[all...]
/u-boot/arch/arm/mach-mvebu/
H A Dmbus.c184 u32 wsize; local
189 &enabled, &wbase, &wsize,
195 wend = wbase + wsize;
220 u32 wsize; local
224 &enabled, &wbase, &wsize,
230 if (base == wbase && size == wsize)
402 u32 wsize; local
407 &enabled, &wbase, &wsize,
/u-boot/fs/fat/
H A Dfat_write.c694 loff_t clustcount, wsize; local
715 wsize = min(bytesperclust - pos, size);
722 memcpy(tmpbuf_cluster + pos, buffer, wsize);
729 size -= wsize;
730 buffer += wsize;
731 *gotsize += wsize;
744 wsize = clustcount * bytesperclust;
753 size -= wsize;
754 buffer += wsize;
755 *gotsize += wsize;
937 loff_t offset, actsize, wsize; local
[all...]
/u-boot/drivers/mtd/
H A Dmtdconcat.c193 size_t size, wsize, retsize, old_iov_len; local
201 wsize = size; /* store for future use */
225 total_len -= wsize;

Completed in 182 milliseconds