Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/media/platform/samsung/s5p-jpeg/
Djpeg-core.c761 static int get_byte(struct s5p_jpeg_buffer *buf);
789 components = get_byte(&jpeg_buffer); in exynos4_jpeg_parse_decode_h_tbl()
793 c = get_byte(&jpeg_buffer); in exynos4_jpeg_parse_decode_h_tbl()
796 x = get_byte(&jpeg_buffer); in exynos4_jpeg_parse_decode_h_tbl()
823 c = get_byte(&jpeg_buffer); in exynos4_jpeg_parse_huff_tbl()
830 c = get_byte(&jpeg_buffer); in exynos4_jpeg_parse_huff_tbl()
844 c = get_byte(&jpeg_buffer); in exynos4_jpeg_parse_huff_tbl()
877 components = get_byte(&jpeg_buffer); in exynos4_jpeg_parse_decode_q_tbl()
884 c = get_byte(&jpeg_buffer); in exynos4_jpeg_parse_decode_q_tbl()
888 x = get_byte(&jpeg_buffer); in exynos4_jpeg_parse_decode_q_tbl()
[all …]
/linux-6.12.1/arch/alpha/boot/
Dmisc.c61 #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf()) macro
/linux-6.12.1/arch/nios2/boot/compressed/
Dmisc.c52 #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf()) macro
/linux-6.12.1/drivers/media/platform/renesas/
Drcar_jpu.c571 static int get_byte(struct jpeg_buffer *buf) in get_byte() function
618 c = get_byte(&jpeg_buffer); in jpu_parse_hdr()
632 get_byte(&jpeg_buffer) != 3) /* YCbCr only */ in jpu_parse_hdr()
636 return get_byte(&jpeg_buffer); in jpu_parse_hdr()
/linux-6.12.1/lib/
Dinflate.c233 #define NEXTBYTE() ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; })
1219 flags = (uch)get_byte(); in gunzip()