Lines Matching defs:num
96 /* Checks if there is at least |num| bytes left in the input ring-buffer
99 BrotliBitReader* const br, size_t num) {
100 return TO_BROTLI_BOOL(br->avail_in >= num);
332 |num| may not be larger than BrotliGetRemainingBytes. The bit reader must be
335 BrotliBitReader* br, size_t num) {
336 while (BrotliGetAvailableBits(br) >= 8 && num > 0) {
340 --num;
342 memcpy(dest, br->next_in, num);
343 br->avail_in -= num;
344 br->next_in += num;