Home
last modified time | relevance | path

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

/external/brotli/c/include/brotli/
Dencode.h229 typedef struct BrotliEncoderStateStruct BrotliEncoderState; typedef
246 BrotliEncoderState* state, BrotliEncoderParameter param, uint32_t value);
262 BROTLI_ENC_API BrotliEncoderState* BrotliEncoderCreateInstance(
270 BROTLI_ENC_API void BrotliEncoderDestroyInstance(BrotliEncoderState* state);
381 BrotliEncoderState* state, BrotliEncoderOperation op, size_t* available_in,
393 BROTLI_ENC_API BROTLI_BOOL BrotliEncoderIsFinished(BrotliEncoderState* state);
403 BrotliEncoderState* state);
434 BrotliEncoderState* state, size_t* size);
/external/brotli/c/enc/
Dencode.c131 static size_t InputBlockSize(BrotliEncoderState* s) { in InputBlockSize()
135 static uint64_t UnprocessedInputSize(BrotliEncoderState* s) { in UnprocessedInputSize()
139 static size_t RemainingInputBlockSize(BrotliEncoderState* s) { in RemainingInputBlockSize()
147 BrotliEncoderState* state, BrotliEncoderParameter p, uint32_t value) { in BrotliEncoderSetParameter()
210 static uint8_t* GetBrotliStorage(BrotliEncoderState* s, size_t size) { in GetBrotliStorage()
229 static int* GetHashTable(BrotliEncoderState* s, int quality, in GetHashTable()
688 static BROTLI_BOOL EnsureInitialized(BrotliEncoderState* s) { in EnsureInitialized()
757 static void BrotliEncoderInitState(BrotliEncoderState* s) { in BrotliEncoderInitState()
797 BrotliEncoderState* BrotliEncoderCreateInstance( in BrotliEncoderCreateInstance()
799 BrotliEncoderState* state = 0; in BrotliEncoderCreateInstance()
[all …]
/external/bsdiff/
Dbrotli_compressor.h36 BrotliEncoderState* brotli_encoder_state_;
/external/libwebsockets/lib/roles/http/compression/
Dprivate-lib-roles-http-compression.h46 BrotliEncoderState *br_en;
/external/brotli/go/cbrotli/
Dwriter.go65 state *C.BrotliEncoderState
/external/brotli/java/org/brotli/wrapper/enc/
Dencoder_jni.cc16 BrotliEncoderState* state;
/external/brotli/python/
D_brotli.cc90 static BROTLI_BOOL compress_stream(BrotliEncoderState* enc, BrotliEncoderOperation op, in compress_stream()
148 BrotliEncoderState* enc;
/external/brotli/c/tools/
Dbrotli.c943 static BROTLI_BOOL CompressFile(Context* context, BrotliEncoderState* s) { in CompressFile()
981 BrotliEncoderState* s = BrotliEncoderCreateInstance(NULL, NULL, NULL); in CompressFiles()