Lines Matching defs:output

862      Even without erasing, the output would be valid (but nondeterministic).
869 table become corrupt, this check makes sure that the output is
950 the new output meta-block, or to zero if no new output meta-block has been
952 If |*out_size| is positive, |*output| points to the start of the output
953 data. If |is_last| or |force_flush| is BROTLI_TRUE, an output meta-block is
955 to 7 bits of the last byte of output. To force encoder to dump the remaining
962 const BROTLI_BOOL force_flush, size_t* out_size, uint8_t** output) {
1034 *output = &storage[0];
1170 *output = &storage[0];
1176 /* Dumps remaining output bits and metadata header to |header|.
1436 |output| should point at region with at least BrotliEncoderMaxCompressedSize
1440 const uint8_t* input, size_t input_size, uint8_t* output) {
1445 output[0] = 6;
1448 output[result++] = 0x21; /* window bits = 10, is_last = false */
1449 output[result++] = 0x03; /* empty metadata, padding */
1458 output[result++] = (uint8_t)bits;
1459 output[result++] = (uint8_t)(bits >> 8);
1460 output[result++] = (uint8_t)(bits >> 16);
1461 if (nibbles == 2) output[result++] = (uint8_t)(bits >> 24);
1462 memcpy(&output[result], &input[offset], chunk_size);
1467 output[result++] = 3;
1563 /* Injects padding bits or pushes compressed data to output.
1644 /* Compress block only when internal output buffer is empty, stream is not
1755 /* Exit workflow only when there is no more input and no more output.
1763 /* Directly copy input to output. */
1863 /* Compress data only when internal output buffer is empty, stream is not