Home
last modified time | relevance | path

Searched refs:hbuf (Results 1 – 2 of 2) sorted by relevance

/rk3399_rockchip-uboot/drivers/net/
H A Denc28j60.c424 u8 hbuf[6]; in enc_receive() local
428 enc_rbuf(enc, 6, hbuf); in enc_receive()
429 enc->next_pointer = hbuf[0] | (hbuf[1] << 8); in enc_receive()
430 pkt_len = hbuf[2] | (hbuf[3] << 8); in enc_receive()
431 status = hbuf[4] | (hbuf[5] << 8); in enc_receive()
/rk3399_rockchip-uboot/lib/zlib/
H A Dinflate.c162 hbuf[0] = (unsigned char)(word); \
163 hbuf[1] = (unsigned char)((word) >> 8); \
164 check = crc32(check, hbuf, 2); \
169 hbuf[0] = (unsigned char)(word); \
170 hbuf[1] = (unsigned char)((word) >> 8); \
171 hbuf[2] = (unsigned char)((word) >> 16); \
172 hbuf[3] = (unsigned char)((word) >> 24); \
173 check = crc32(check, hbuf, 4); \
344 unsigned char hbuf[4]; /* buffer for gzip header crc calculation */ in inflate() local