Searched refs:uch (Results 1 - 14 of 14) sorted by relevance
/kernel/linux/linux-5.10/arch/alpha/boot/ |
H A D | misc.c | 38 typedef unsigned char uch; typedef 45 static uch *inbuf; /* input buffer */ 46 static uch *window; /* Sliding window buffer */ 87 static uch *output_data; 127 uch *in, *out, ch; in flush_window() 157 output_data = (uch *)output_start; in decompress_kernel() 158 input_data = (uch *)input_start; in decompress_kernel()
|
/kernel/linux/linux-6.6/arch/alpha/boot/ |
H A D | misc.c | 38 typedef unsigned char uch; typedef 45 static uch *inbuf; /* input buffer */ 46 static uch *window; /* Sliding window buffer */ 87 static uch *output_data; 125 uch *in, *out, ch; in flush_window() 155 output_data = (uch *)output_start; in decompress_kernel() 156 input_data = (uch *)input_start; in decompress_kernel()
|
/kernel/linux/linux-5.10/arch/nios2/boot/compressed/ |
H A D | misc.c | 29 typedef unsigned char uch; typedef 35 static uch *inbuf; /* input buffer */ 36 static uch window[WSIZE]; /* Sliding window buffer */ 77 static uch *output_data; 137 uch *in, *out, ch; in flush_window()
|
/kernel/linux/linux-6.6/arch/nios2/boot/compressed/ |
H A D | misc.c | 29 typedef unsigned char uch; typedef 35 static uch *inbuf; /* input buffer */ 36 static uch window[WSIZE]; /* Sliding window buffer */ 77 static uch *output_data; 137 uch *in, *out, ch; in flush_window()
|
/kernel/linux/linux-5.10/lib/ |
H A D | inflate.c | 140 uch e; /* number of extra bits or operation */ 141 uch b; /* number of bits in this code or subcode */ 166 to be usable as if it were declared "uch slide[32768];" or as just 167 "uch *slide;" and then malloc'ed in the latter case. The definition 233 #define NEXTBYTE() ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; }) 507 r.b = (uch)l; /* bits to dump before this table */ in huft_build() 508 r.e = (uch)(16 + j); /* bits in this table */ in huft_build() 518 r.b = (uch)(k - w); in huft_build() 523 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build() 529 r.e = (uch) in huft_build() [all...] |
/kernel/linux/linux-6.6/lib/ |
H A D | inflate.c | 140 uch e; /* number of extra bits or operation */ 141 uch b; /* number of bits in this code or subcode */ 166 to be usable as if it were declared "uch slide[32768];" or as just 167 "uch *slide;" and then malloc'ed in the latter case. The definition 233 #define NEXTBYTE() ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; }) 507 r.b = (uch)l; /* bits to dump before this table */ in huft_build() 508 r.e = (uch)(16 + j); /* bits in this table */ in huft_build() 518 r.b = (uch)(k - w); in huft_build() 523 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build() 529 r.e = (uch) in huft_build() [all...] |
/kernel/linux/linux-5.10/lib/zlib_deflate/ |
H A D | defutil.h | 188 uch depth[2*L_CODES+1]; 192 uch *l_buf; /* buffer for literals or lengths */ 289 put_byte(s, (uch)((w) & 0xff)); \ 290 put_byte(s, (uch)((ush)(w) >> 8)); \
|
H A D | deftree.c | 73 static const uch bl_order[BL_CODES] 95 static uch dist_code[512]; 101 static uch length_code[MAX_MATCH-MIN_MATCH+1]; 189 length_code[length++] = (uch)code; in tr_static_init() 197 length_code[length-1] = (uch)code; in tr_static_init() 204 dist_code[dist++] = (uch)code; in tr_static_init() 212 dist_code[256 + dist++] = (uch)code; in tr_static_init() 543 s->depth[node] = (uch) (max(s->depth[n], s->depth[m]) + 1); in build_tree() 922 s->l_buf[s->last_lit++] = (uch)lc;
|
H A D | deflate.c | 268 s->pending_buf = (uch *) overlay; in zlib_deflateInit2()
|
/kernel/linux/linux-6.6/lib/zlib_deflate/ |
H A D | defutil.h | 188 uch depth[2*L_CODES+1]; 192 uch *l_buf; /* buffer for literals or lengths */ 289 put_byte(s, (uch)((w) & 0xff)); \ 290 put_byte(s, (uch)((ush)(w) >> 8)); \
|
H A D | deftree.c | 73 static const uch bl_order[BL_CODES] 95 static uch dist_code[512]; 101 static uch length_code[MAX_MATCH-MIN_MATCH+1]; 189 length_code[length++] = (uch)code; in tr_static_init() 197 length_code[length-1] = (uch)code; in tr_static_init() 204 dist_code[dist++] = (uch)code; in tr_static_init() 212 dist_code[256 + dist++] = (uch)code; in tr_static_init() 543 s->depth[node] = (uch) (max(s->depth[n], s->depth[m]) + 1); in build_tree() 922 s->l_buf[s->last_lit++] = (uch)lc;
|
H A D | deflate.c | 268 s->pending_buf = (uch *) overlay; in zlib_deflateInit2()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | zutil.h | 20 typedef unsigned char uch; typedef
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | zutil.h | 20 typedef unsigned char uch; typedef
|
Completed in 20 milliseconds