Symbol: Byte
arch/x86/math-emu/fpu_entry.c
546
static int valid_prefix(u_char *Byte, u_char __user **fpu_eip,
arch/x86/math-emu/fpu_entry.c
605
*Byte = byte;
arch/x86/math-emu/fpu_entry.c
609
*Byte = byte;
arch/x86/math-emu/fpu_entry.c
615
*Byte = byte; /* Needed for error message. */
arch/x86/math-emu/fpu_entry.c
99
static int valid_prefix(u_char *Byte, u_char __user ** fpu_eip,
include/linux/zlib.h
85
const Byte *next_in; /* next input byte */
include/linux/zlib.h
89
Byte *next_out; /* next output byte should be put there */
include/linux/zutil.h
47
typedef uLong (*check_func) (uLong check, const Byte *buf,
include/linux/zutil.h
79
const Byte *buf,
lib/zlib_deflate/deflate.c
111
Byte *window_memory;
lib/zlib_deflate/deflate.c
233
mem->window_memory = (Byte *) PTR_ALIGN(next, PAGE_SIZE);
lib/zlib_deflate/deflate.c
235
mem->window_memory = (Byte *) next;
lib/zlib_deflate/deflate.c
258
s->window = (Byte *) mem->window_memory;
lib/zlib_deflate/deflate.c
273
s->method = (Byte)method;
lib/zlib_deflate/deflate.c
321
put_byte(s, (Byte)(b >> 8));
lib/zlib_deflate/deflate.c
322
put_byte(s, (Byte)(b & 0xff));
lib/zlib_deflate/deflate.c
502
Byte *buf,
lib/zlib_deflate/deflate.c
568
register Byte *scan = s->window + s->strstart; /* current string */
lib/zlib_deflate/deflate.c
569
register Byte *match; /* matched string */
lib/zlib_deflate/deflate.c
585
register Byte *strend = s->window + s->strstart + MAX_MATCH - 1;
lib/zlib_deflate/deflate.c
589
register Byte *strend = s->window + s->strstart + MAX_MATCH;
lib/zlib_deflate/deflate.c
590
register Byte scan_end1 = scan[best_len-1];
lib/zlib_deflate/deflate.c
591
register Byte scan_end = scan[best_len];
lib/zlib_deflate/deflate.c
78
static int read_buf (z_streamp strm, Byte *buf, unsigned size);
lib/zlib_deflate/deftree.c
1028
s->data_type = (Byte)(bin_freq > (ascii_freq >> 2) ? Z_BINARY : Z_ASCII);
lib/zlib_deflate/defutil.h
245
(2 * (1 << (windowBits)) * sizeof(Byte) + PAGE_SIZE)
lib/zlib_deflate/defutil.h
248
(2 * (1 << (windowBits)) * sizeof(Byte))
lib/zlib_deflate/defutil.h
321
put_byte(s, (Byte)s->bi_buf);
lib/zlib_deflate/defutil.h
335
put_byte(s, (Byte)s->bi_buf);
lib/zlib_deflate/defutil.h
76
Byte *pending_buf; /* output still pending */
lib/zlib_deflate/defutil.h
78
Byte *pending_out; /* next pending byte to output to the stream */
lib/zlib_deflate/defutil.h
81
Byte data_type; /* UNKNOWN, BINARY or ASCII */
lib/zlib_deflate/defutil.h
82
Byte method; /* STORED (for zip only) or DEFLATED */
lib/zlib_deflate/defutil.h
91
Byte *window;
lib/zlib_dfltcc/dfltcc_deflate.c
237
*strm->next_out = (Byte)state->bi_buf;
lib/zlib_dfltcc/dfltcc_util.h
32
Byte **op1,
lib/zlib_dfltcc/dfltcc_util.h
34
const Byte **op2,
lib/zlib_dfltcc/dfltcc_util.h
39
Byte *t2 = op1 ? *op1 : NULL;
lib/zlib_dfltcc/dfltcc_util.h
42
const Byte *t4 = op2 ? *op2 : NULL;
lib/zlib_dfltcc/dfltcc_util.h
46
register Byte *r2 __asm__("r2") = t2;
lib/zlib_dfltcc/dfltcc_util.h
48
register const Byte *r4 __asm__("r4") = t4;
lib/zlib_inflate/inflate.c
788
Byte *saved_no = z->next_out;