Home
last modified time | relevance | path

Searched refs:available_in (Results 1 - 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/brotli/python/
H A D_brotli.cc96 size_t available_in = input_length; in compress_stream() local
103 &available_in, &next_in, in compress_stream()
114 if (available_in || BrotliEncoderHasMoreOutput(enc)) { in compress_stream()
401 size_t available_in = input_length; in decompress_stream() local
409 &available_in, &next_in, in decompress_stream()
417 ok = result != BROTLI_DECODER_RESULT_ERROR && !available_in; in decompress_stream()
641 size_t available_in; in brotli_decompress() local
666 available_in = input.len; in brotli_decompress()
669 result = BrotliDecoderDecompressStream(state, &available_in, &next_in, in brotli_decompress()
675 ok = result == BROTLI_DECODER_RESULT_SUCCESS && !available_in; in brotli_decompress()
[all...]
/third_party/node/deps/brotli/c/enc/
H A Dencode.c1506 size_t available_in = input_size; in BrotliEncoderCompress() local
1520 &available_in, &next_in, &available_out, &next_out, &total_out); in BrotliEncoderCompress()
1598 BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in, in BrotliEncoderCompressStreamFast()
1603 BROTLI_MIN(size_t, *available_in, block_size_limit)); in BrotliEncoderCompressStreamFast()
1649 (*available_in != 0 || op != BROTLI_OPERATION_PROCESS)) { in BrotliEncoderCompressStreamFast()
1650 size_t block_size = BROTLI_MIN(size_t, block_size_limit, *available_in); in BrotliEncoderCompressStreamFast()
1652 (*available_in == block_size) && (op == BROTLI_OPERATION_FINISH); in BrotliEncoderCompressStreamFast()
1654 (*available_in == block_size) && (op == BROTLI_OPERATION_FLUSH); in BrotliEncoderCompressStreamFast()
1691 *available_in -= block_size; in BrotliEncoderCompressStreamFast()
1722 BrotliEncoderState* s, size_t* available_in, cons in ProcessMetadata()
1597 BrotliEncoderCompressStreamFast( BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in, const uint8_t** next_in, size_t* available_out, uint8_t** next_out, size_t* total_out) BrotliEncoderCompressStreamFast() argument
1721 ProcessMetadata( BrotliEncoderState* s, size_t* available_in, const uint8_t** next_in, size_t* available_out, uint8_t** next_out, size_t* total_out) ProcessMetadata() argument
1789 UpdateSizeHint(BrotliEncoderState* s, size_t available_in) UpdateSizeHint() argument
1804 BrotliEncoderCompressStream( BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in, const uint8_t** next_in, size_t* available_out,uint8_t** next_out, size_t* total_out) BrotliEncoderCompressStream() argument
[all...]
/third_party/skia/third_party/externals/brotli/c/enc/
H A Dencode.c1506 size_t available_in = input_size; in BrotliEncoderCompress() local
1520 &available_in, &next_in, &available_out, &next_out, &total_out); in BrotliEncoderCompress()
1598 BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in, in BrotliEncoderCompressStreamFast()
1603 BROTLI_MIN(size_t, *available_in, block_size_limit)); in BrotliEncoderCompressStreamFast()
1649 (*available_in != 0 || op != BROTLI_OPERATION_PROCESS)) { in BrotliEncoderCompressStreamFast()
1650 size_t block_size = BROTLI_MIN(size_t, block_size_limit, *available_in); in BrotliEncoderCompressStreamFast()
1652 (*available_in == block_size) && (op == BROTLI_OPERATION_FINISH); in BrotliEncoderCompressStreamFast()
1654 (*available_in == block_size) && (op == BROTLI_OPERATION_FLUSH); in BrotliEncoderCompressStreamFast()
1691 *available_in -= block_size; in BrotliEncoderCompressStreamFast()
1722 BrotliEncoderState* s, size_t* available_in, cons in ProcessMetadata()
1597 BrotliEncoderCompressStreamFast( BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in, const uint8_t** next_in, size_t* available_out, uint8_t** next_out, size_t* total_out) BrotliEncoderCompressStreamFast() argument
1721 ProcessMetadata( BrotliEncoderState* s, size_t* available_in, const uint8_t** next_in, size_t* available_out, uint8_t** next_out, size_t* total_out) ProcessMetadata() argument
1789 UpdateSizeHint(BrotliEncoderState* s, size_t available_in) UpdateSizeHint() argument
1804 BrotliEncoderCompressStream( BrotliEncoderState* s, BrotliEncoderOperation op, size_t* available_in, const uint8_t** next_in, size_t* available_out,uint8_t** next_out, size_t* total_out) BrotliEncoderCompressStream() argument
[all...]
/third_party/skia/third_party/externals/brotli/research/
H A Dbrotli_decoder.c48 size_t available_in; in main() local
70 available_in = fread(ctx.input_buffer, 1, BUFFER_SIZE, ctx.fin); in main()
82 ctx.decoder, &available_in, &next_in, &available_out, &next_out, 0); in main()
H A Dfind_opt_references.cc45 size_t available_in; in ReadInput() local
48 available_in = fread(storage + last_pos, 1, kFileBufferSize, fin); in ReadInput()
49 last_pos += available_in; in ReadInput()
50 } while (available_in != 0); in ReadInput()
/third_party/skia/third_party/externals/brotli/c/tools/
H A Dbrotli.c125 size_t available_in; member
803 context->available_in = 0; in InitializeBuffers()
818 context->available_in = in ProvideInput()
820 context->total_in += context->available_in; in ProvideInput()
894 (context->available_in != 0) || (fgetc(context->fin) != EOF); in DecompressFile()
912 result = BrotliDecoderDecompressStream(s, &context->available_in, in DecompressFile()
947 if (context->available_in == 0 && !is_eof) { in CompressFile()
954 &context->available_in, &context->next_in, in CompressFile()
/third_party/node/deps/brotli/c/dec/
H A Ddecode.c2041 size_t available_in = encoded_size; in BrotliDecoderDecompress() local
2049 &s, &available_in, &next_in, &available_out, &next_out, &total_out); in BrotliDecoderDecompress()
2070 BrotliDecoderState* s, size_t* available_in, const uint8_t** next_in, in BrotliDecoderDecompressStream()
2088 br->avail_in = *available_in; in BrotliDecoderDecompressStream()
2119 br->avail_in = *available_in; in BrotliDecoderDecompressStream()
2122 } else if (*available_in != 0) { in BrotliDecoderDecompressStream()
2130 (*available_in)--; in BrotliDecoderDecompressStream()
2139 *available_in = br->avail_in; in BrotliDecoderDecompressStream()
2140 while (*available_in) { in BrotliDecoderDecompressStream()
2144 (*available_in) in BrotliDecoderDecompressStream()
2069 BrotliDecoderDecompressStream( BrotliDecoderState* s, size_t* available_in, const uint8_t** next_in, size_t* available_out, uint8_t** next_out, size_t* total_out) BrotliDecoderDecompressStream() argument
[all...]
/third_party/skia/third_party/externals/brotli/c/dec/
H A Ddecode.c2041 size_t available_in = encoded_size; in BrotliDecoderDecompress() local
2049 &s, &available_in, &next_in, &available_out, &next_out, &total_out); in BrotliDecoderDecompress()
2070 BrotliDecoderState* s, size_t* available_in, const uint8_t** next_in, in BrotliDecoderDecompressStream()
2088 br->avail_in = *available_in; in BrotliDecoderDecompressStream()
2119 br->avail_in = *available_in; in BrotliDecoderDecompressStream()
2122 } else if (*available_in != 0) { in BrotliDecoderDecompressStream()
2130 (*available_in)--; in BrotliDecoderDecompressStream()
2139 *available_in = br->avail_in; in BrotliDecoderDecompressStream()
2140 while (*available_in) { in BrotliDecoderDecompressStream()
2144 (*available_in) in BrotliDecoderDecompressStream()
2069 BrotliDecoderDecompressStream( BrotliDecoderState* s, size_t* available_in, const uint8_t** next_in, size_t* available_out, uint8_t** next_out, size_t* total_out) BrotliDecoderDecompressStream() argument
[all...]
/third_party/node/deps/brotli/c/include/brotli/
H A Dencode.h79 * ::BROTLI_OPERATION_FLUSH operation until @p available_in becomes @c 0, and
96 * ::BROTLI_OPERATION_FINISH operation until @p available_in becomes @c 0, and
321 * The values @p *available_in and @p *available_out must specify the number of
325 * After each call, @p *available_in will be decremented by the amount of input
369 * @param[in, out] available_in @b in: amount of available input; \n
381 BrotliEncoderState* state, BrotliEncoderOperation op, size_t* available_in,
H A Ddecode.h211 * The values @p *available_in and @p *available_out must specify the number of
215 * After each call, @p *available_in will be decremented by the amount of input
224 * @note Input is never overconsumed, so @p next_in and @p available_in could be
228 * @param[in, out] available_in @b in: amount of available input; \n
247 BrotliDecoderState* state, size_t* available_in, const uint8_t** next_in,
/third_party/skia/third_party/externals/brotli/c/include/brotli/
H A Dencode.h79 * ::BROTLI_OPERATION_FLUSH operation until @p available_in becomes @c 0, and
96 * ::BROTLI_OPERATION_FINISH operation until @p available_in becomes @c 0, and
321 * The values @p *available_in and @p *available_out must specify the number of
325 * After each call, @p *available_in will be decremented by the amount of input
369 * @param[in, out] available_in @b in: amount of available input; \n
381 BrotliEncoderState* state, BrotliEncoderOperation op, size_t* available_in,
H A Ddecode.h211 * The values @p *available_in and @p *available_out must specify the number of
215 * After each call, @p *available_in will be decremented by the amount of input
224 * @note Input is never overconsumed, so @p next_in and @p available_in could be
228 * @param[in, out] available_in @b in: amount of available input; \n
247 BrotliDecoderState* state, size_t* available_in, const uint8_t** next_in,

Completed in 18 milliseconds