Home
last modified time | relevance | path

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

/linux-4.1.27/arch/alpha/boot/
Dmisc.c60 #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf()) macro
/linux-4.1.27/arch/nios2/boot/compressed/
Dmisc.c65 #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf()) macro
/linux-4.1.27/drivers/media/platform/s5p-jpeg/
Djpeg-core.c860 static int get_byte(struct s5p_jpeg_buffer *buf) in get_byte() function
873 byte = get_byte(buf); in get_word_be()
877 byte = get_byte(buf); in get_word_be()
890 get_byte(buf); in skip()
908 c = get_byte(&jpeg_buffer); in s5p_jpeg_parse_hdr()
914 c = get_byte(&jpeg_buffer); in s5p_jpeg_parse_hdr()
926 if (get_byte(&jpeg_buffer) == -1) in s5p_jpeg_parse_hdr()
932 components = get_byte(&jpeg_buffer); in s5p_jpeg_parse_hdr()
941 subsampling = get_byte(&jpeg_buffer); in s5p_jpeg_parse_hdr()
/linux-4.1.27/arch/cris/boot/compressed/
Dmisc.c73 #define get_byte() (inbuf[inptr++]) macro
/linux-4.1.27/arch/mn10300/boot/compressed/
Dmisc.c126 static inline unsigned char get_byte(void) in get_byte() function
/linux-4.1.27/lib/
Dinflate.c232 #define NEXTBYTE() ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; })
1218 flags = (uch)get_byte(); in gunzip()