Home
last modified time | relevance | path

Searched refs:w_size (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/net/ppp/
H A Dppp_deflate.c26 int w_size; member
88 int w_size; in z_comp_alloc() local
96 w_size = DEFLATE_SIZE(options[2]); in z_comp_alloc()
97 if (w_size < DEFLATE_MIN_SIZE || w_size > DEFLATE_MAX_SIZE) in z_comp_alloc()
105 state->w_size = w_size; in z_comp_alloc()
106 state->strm.workspace = vmalloc(zlib_deflate_workspacesize(-w_size, 8)); in z_comp_alloc()
111 DEFLATE_METHOD_VAL, -w_size, 8, Z_DEFAULT_STRATEGY) in z_comp_alloc()
145 DEFLATE_SIZE(options[2]) != state->w_size || in z_comp_init()
303 int w_size; in z_decomp_alloc() local
311 w_size = DEFLATE_SIZE(options[2]); in z_decomp_alloc()
[all …]
/linux/lib/zlib_deflate/
H A Ddeflate.c250 s->w_size = 1 << s->w_bits; in zlib_deflateInit2()
251 s->w_mask = s->w_size - 1; in zlib_deflateInit2()
531 s->window_size = (ulg)2L*s->w_size; in lm_init()
747 uInt wsize = s->w_size; in fill_window()
880 Assert(s->strstart < s->w_size+MAX_DIST(s) || in deflate_stored()
881 s->block_start >= (long)s->w_size, "slide too late"); in deflate_stored()
H A Ddefutil.h87 uInt w_size; /* LZ77 window size (32K by default) */ member
268 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
/linux/drivers/staging/greybus/
H A Daudio_topology.c1014 struct gb_audio_widget *w, int *w_size) in gbaudio_tplg_create_widget() argument
1038 *w_size = sizeof(struct gb_audio_widget); in gbaudio_tplg_create_widget()
1081 *w_size += csize; in gbaudio_tplg_create_widget()
1215 int i, ret, w_size; in gbaudio_tplg_process_widgets() local
1229 curr, &w_size); in gbaudio_tplg_process_widgets()
1245 curr = (void *)curr + w_size; in gbaudio_tplg_process_widgets()
/linux/drivers/media/platform/nuvoton/
H A Dnpcm-video.c242 unsigned int w_size = ECE_TILE_W, h_size = ECE_TILE_H; in npcm_video_ece_enc_rect() local
255 w_size = r_w % ECE_TILE_W; in npcm_video_ece_enc_rect()
262 temp = FIELD_PREP(ECE_RECT_DIMEN_WLTR, w_size - 1) | in npcm_video_ece_enc_rect()
/linux/drivers/spi/
H A Dspi.c4173 int w_size; in __spi_validate() local
4236 w_size = 1; in __spi_validate()
4238 w_size = 2; in __spi_validate()
4240 w_size = 4; in __spi_validate()
4243 if (xfer->len % w_size) in __spi_validate()