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

/linux-master/arch/nios2/boot/compressed/
H A Dmisc.c52 #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf()) macro
/linux-master/arch/alpha/boot/
H A Dmisc.c61 #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf()) macro
/linux-master/drivers/media/platform/samsung/s5p-jpeg/
H A Djpeg-core.c761 static int get_byte(struct s5p_jpeg_buffer *buf);
786 components = get_byte(&jpeg_buffer);
790 c = get_byte(&jpeg_buffer);
793 x = get_byte(&jpeg_buffer);
820 c = get_byte(&jpeg_buffer);
827 c = get_byte(&jpeg_buffer);
841 c = get_byte(&jpeg_buffer);
874 components = get_byte(&jpeg_buffer);
881 c = get_byte(&jpeg_buffer);
885 x = get_byte(
1040 static int get_byte(struct s5p_jpeg_buffer *buf) function
[all...]
/linux-master/drivers/staging/ks7010/
H A Dks_hostif.c37 static inline u8 get_byte(struct ks_wlan_private *priv) function
51 data = (get_byte(priv) & 0xff);
52 data |= ((get_byte(priv) << 8) & 0xff00);
60 data = (get_byte(priv) & 0xff);
61 data |= ((get_byte(priv) << 8) & 0x0000ff00);
62 data |= ((get_byte(priv) << 16) & 0x00ff0000);
63 data |= ((get_byte(priv) << 24) & 0xff000000);
925 rssi = get_byte(priv);
926 signal = get_byte(priv);
927 get_byte(pri
[all...]
/linux-master/drivers/media/platform/renesas/
H A Drcar_jpu.c571 static int get_byte(struct jpeg_buffer *buf) function
618 c = get_byte(&jpeg_buffer);
632 get_byte(&jpeg_buffer) != 3) /* YCbCr only */
636 return get_byte(&jpeg_buffer);
/linux-master/lib/
H A Dinflate.c233 #define NEXTBYTE() ({ int v = get_byte(); if (v < 0) goto underrun; (uch)v; })
1219 flags = (uch)get_byte();

Completed in 294 milliseconds