Home
last modified time | relevance | path

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

/Zephyr-latest/subsys/net/lib/http/
Dhttp_huffman.c335 uint8_t bits_in_byte_left = 8; in http_hpack_huffman_decode() local
347 if (bits_in_byte_left <= bits_needed) { in http_hpack_huffman_decode()
349 bits <<= bits_in_byte_left; in http_hpack_huffman_decode()
351 LSB_MASK(bits_in_byte_left); in http_hpack_huffman_decode()
352 bits_needed -= bits_in_byte_left; in http_hpack_huffman_decode()
353 bits_in_byte_left = 0; in http_hpack_huffman_decode()
358 (bits_in_byte_left - bits_needed)) & in http_hpack_huffman_decode()
360 bits_in_byte_left -= bits_needed; in http_hpack_huffman_decode()
371 if (bits_in_byte_left == 0) { in http_hpack_huffman_decode()
374 bits_in_byte_left = 8; in http_hpack_huffman_decode()