Searched refs:uch (Results 1 - 9 of 9) sorted by relevance
/linux-4.1.27/arch/mn10300/boot/compressed/ |
H A D | misc.c | 81 typedef unsigned char uch; typedef 88 static uch *inbuf; /* input buffer */ 89 static uch window[WSIZE]; /* sliding window buffer */ 152 static uch *output_data; 165 static uch *high_buffer_start /* = (uch *)(((ulg)&end) + HEAP_SIZE)*/; 263 uch *in, *out, ch; flush_window_low() 281 uch *in, ch; flush_window_high() 334 uch *low_buffer_start; 336 uch *high_buffer_start; 342 high_buffer_start = (uch *)(((ulg) &end) + HEAP_SIZE); setup_output_buffer_if_we_run_high() 354 high_buffer_start = (uch *)(0x100000 + LOW_BUFFER_SIZE); setup_output_buffer_if_we_run_high()
|
/linux-4.1.27/arch/alpha/boot/ |
H A D | misc.c | 37 typedef unsigned char uch; typedef 44 static uch *inbuf; /* input buffer */ 45 static uch *window; /* Sliding window buffer */ 86 static uch *output_data; 126 uch *in, *out, ch; flush_window() 156 output_data = (uch *)output_start; decompress_kernel() 157 input_data = (uch *)input_start; decompress_kernel()
|
/linux-4.1.27/arch/nios2/boot/compressed/ |
H A D | misc.c | 42 typedef unsigned char uch; typedef 48 static uch *inbuf; /* input buffer */ 49 static uch window[WSIZE]; /* Sliding window buffer */ 90 static uch *output_data; 150 uch *in, *out, ch; flush_window()
|
/linux-4.1.27/arch/cris/boot/compressed/ |
H A D | misc.c | 47 typedef unsigned char uch; typedef 54 static uch *inbuf; /* input buffer */ 55 static uch window[WSIZE]; /* Sliding window buffer */ 114 static uch *output_data; 203 uch *in, *out, ch; flush_window()
|
/linux-4.1.27/include/linux/ |
H A D | zutil.h | 20 typedef unsigned char uch; typedef
|
/linux-4.1.27/lib/ |
H A D | inflate.c | 139 uch e; /* number of extra bits or operation */ 140 uch b; /* number of bits in this code or subcode */ 165 to be usable as if it were declared "uch slide[32768];" or as just 166 "uch *slide;" and then malloc'ed in the latter case. The definition 232 #define NEXTBYTE() ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; }) 506 r.b = (uch)l; /* bits to dump before this table */ huft_build() 507 r.e = (uch)(16 + j); /* bits in this table */ huft_build() 517 r.b = (uch)(k - w); huft_build() 522 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ huft_build() 528 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ huft_build() 628 slide[w++] = (uch)t->v.n; inflate_codes() 738 slide[w++] = (uch)b; inflate_stored() 1195 uch flags; 1218 flags = (uch)get_byte();
|
/linux-4.1.27/lib/zlib_deflate/ |
H A D | deftree.c | 72 static const uch bl_order[BL_CODES] 99 static uch dist_code[512]; 105 static uch length_code[MAX_MATCH-MIN_MATCH+1]; 243 length_code[length++] = (uch)code; tr_static_init() 251 length_code[length-1] = (uch)code; tr_static_init() 258 dist_code[dist++] = (uch)code; tr_static_init() 266 dist_code[256 + dist++] = (uch)code; tr_static_init() 597 s->depth[node] = (uch) (max(s->depth[n], s->depth[m]) + 1); build_tree() 976 s->l_buf[s->last_lit++] = (uch)lc; zlib_tr_tally()
|
H A D | defutil.h | 186 uch depth[2*L_CODES+1]; 190 uch *l_buf; /* buffer for literals or lengths */ 291 put_byte(s, (uch)((w) & 0xff)); \ 292 put_byte(s, (uch)((ush)(w) >> 8)); \
|
H A D | deflate.c | 239 s->pending_buf = (uch *) overlay; zlib_deflateInit2()
|
Completed in 236 milliseconds