Searched refs:uch (Results 1 – 9 of 9) sorted by relevance
/linux-2.6.39/arch/alpha/boot/ |
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; in flush_window() 156 output_data = (uch *)output_start; in decompress_kernel() 157 input_data = (uch *)input_start; in decompress_kernel()
|
/linux-2.6.39/arch/mn10300/boot/compressed/ |
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; in flush_window_low() 281 uch *in, ch; in flush_window_high() 334 uch *low_buffer_start; 336 uch *high_buffer_start; 342 high_buffer_start = (uch *)(((ulg) &end) + HEAP_SIZE); in setup_output_buffer_if_we_run_high() [all …]
|
/linux-2.6.39/arch/h8300/boot/compressed/ |
D | misc.c | 25 typedef unsigned char uch; typedef 32 static uch *inbuf; /* input buffer */ 33 static uch window[WSIZE]; /* Sliding window buffer */ 75 static uch *output_data; 143 uch *in, *out, ch; in flush_window()
|
/linux-2.6.39/lib/ |
D | inflate.c | 139 uch e; /* number of extra bits or operation */ 140 uch b; /* number of bits in this code or subcode */ 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 */ in huft_build() 507 r.e = (uch)(16 + j); /* bits in this table */ in huft_build() 517 r.b = (uch)(k - w); in huft_build() 522 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build() 528 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ in huft_build() 628 slide[w++] = (uch)t->v.n; in inflate_codes() 738 slide[w++] = (uch)b; in inflate_stored() [all …]
|
/linux-2.6.39/arch/cris/boot/compressed/ |
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; in flush_window()
|
/linux-2.6.39/lib/zlib_deflate/ |
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)); \
|
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; in tr_static_init() 251 length_code[length-1] = (uch)code; in tr_static_init() 258 dist_code[dist++] = (uch)code; in tr_static_init() 266 dist_code[256 + dist++] = (uch)code; in tr_static_init() 597 s->depth[node] = (uch) (max(s->depth[n], s->depth[m]) + 1); in build_tree() 976 s->l_buf[s->last_lit++] = (uch)lc;
|
D | deflate.c | 239 s->pending_buf = (uch *) overlay; in zlib_deflateInit2() 609 ds->pending_buf = (uch *) overlay;
|
/linux-2.6.39/include/linux/ |
D | zutil.h | 20 typedef unsigned char uch; typedef
|