Lines Matching refs:from
39 const uint8_t* next_in; /* the byte we're reading from */
67 BrotliBitReader* const from, BrotliBitReaderState* to) {
68 to->val_ = from->val_;
69 to->bit_pos_ = from->bit_pos_;
70 to->next_in = from->next_in;
71 to->avail_in = from->avail_in;
75 BrotliBitReader* const to, BrotliBitReaderState* from) {
76 to->val_ = from->val_;
77 to->bit_pos_ = from->bit_pos_;
78 to->next_in = from->next_in;
79 to->avail_in = from->avail_in;
87 /* Returns amount of unread bytes the bit reader still has buffered from the
196 /* Returns the specified number of bits from |br| without advancing bit
236 /* Reads the specified number of bits from |br| and advances the bit pos.
246 /* Reads the specified number of bits from |br| and advances the bit pos.
248 Up to 24 bits are allowed to be requested from this method. */
290 Up to 24 bits are allowed to be requested from this method. */