HomeSort by: relevance | last modified time | path
    Searched refs:BROTLI_BOOL (Results 1 - 25 of 40) sorted by relevancy

1 2

  /xsrc/external/mit/brotli/dist/c/enc/
params.h 39 BROTLI_BOOL disable_literal_context_modeling;
40 BROTLI_BOOL large_window;
compress_fragment_two_pass.h 42 BROTLI_BOOL is_last,
static_dict.h 31 BROTLI_INTERNAL BROTLI_BOOL BrotliFindAllStaticDictionaryMatches(
utf8_util.h 24 BROTLI_INTERNAL BROTLI_BOOL BrotliIsMostlyUTF8(
brotli_bit_stream.h 46 uint8_t prev_byte, uint8_t prev_byte2, BROTLI_BOOL is_last,
57 BROTLI_BOOL is_last, const BrotliEncoderParams* params,
67 BROTLI_BOOL is_last, const BrotliEncoderParams* params,
76 BROTLI_BOOL is_final_block, const uint8_t* BROTLI_RESTRICT input,
compress_fragment.h 48 BROTLI_BOOL is_last,
cluster.c 22 static BROTLI_INLINE BROTLI_BOOL HistogramPairIsLess(
entropy_encode.h 34 BROTLI_INTERNAL BROTLI_BOOL BrotliSetDepth(
81 typedef BROTLI_BOOL (*HuffmanTreeComparator)(
hash.h 40 BROTLI_BOOL is_prepared_;
136 static BROTLI_INLINE BROTLI_BOOL TestStaticDictionaryItem(
179 HasherSearchResult* out, BROTLI_BOOL shallow) {
189 BROTLI_BOOL item_matches = TestStaticDictionaryItem(
407 BROTLI_BOOL one_shot, const size_t input_size) {
422 size_t input_size, BROTLI_BOOL is_last) {
423 BROTLI_BOOL one_shot = (position == 0 && is_last);
468 BROTLI_BOOL is_last) {
utf8_util.c 68 BROTLI_BOOL BrotliIsMostlyUTF8(
entropy_encode.c 23 BROTLI_BOOL BrotliSetDepth(
48 static BROTLI_INLINE BROTLI_BOOL SortHuffmanTree(
376 BROTLI_BOOL* use_rle_for_non_zero,
377 BROTLI_BOOL* use_rle_for_zero) {
412 BROTLI_BOOL use_rle_for_non_zero = BROTLI_FALSE;
413 BROTLI_BOOL use_rle_for_zero = BROTLI_FALSE;
static_dict.c 42 static BROTLI_INLINE BROTLI_BOOL IsMatch(const BrotliDictionary* dictionary,
77 BROTLI_BOOL BrotliFindAllStaticDictionaryMatches(
80 BROTLI_BOOL has_found_match = BROTLI_FALSE;
83 BROTLI_BOOL end = !offset;
279 const BROTLI_BOOL is_all_caps =
326 BROTLI_BOOL is_space = TO_BROTLI_BOOL(data[0] == ' ');
328 BROTLI_BOOL end = !offset;
379 const BROTLI_BOOL is_all_caps =
423 BROTLI_BOOL end = !offset;
452 BROTLI_BOOL end = !offset
    [all...]
encode.c 127 BROTLI_BOOL is_last_block_emitted_;
128 BROTLI_BOOL is_initialized_;
146 BROTLI_BOOL BrotliEncoderSetParameter(
264 static void EncodeWindowBits(int lgwin, BROTLI_BOOL large_window,
402 static BROTLI_BOOL ShouldUseComplexStaticContextMap(const uint8_t* input,
513 static BROTLI_BOOL ShouldCompress(
558 const BROTLI_BOOL is_last,
688 static BROTLI_BOOL EnsureInitialized(BrotliEncoderState* s) {
907 static BROTLI_BOOL UpdateLastProcessedPos(BrotliEncoderState* s) {
960 static BROTLI_BOOL EncodeData
    [all...]
memory.h 31 BROTLI_BOOL is_oom;
hash_composite_inc.h 39 BROTLI_BOOL fresh;
58 HashComposite* BROTLI_RESTRICT self, BROTLI_BOOL one_shot,
73 const BrotliEncoderParams* params, BROTLI_BOOL one_shot,
hash_to_binary_tree_inc.h 68 (HashToBinaryTree* BROTLI_RESTRICT self, BROTLI_BOOL one_shot,
82 const BrotliEncoderParams* params, BROTLI_BOOL one_shot,
121 const BROTLI_BOOL should_reroot_tree =
  /xsrc/external/mit/brotli/dist/c/include/brotli/
encode.h 245 BROTLI_ENC_API BROTLI_BOOL BrotliEncoderSetParameter(
312 BROTLI_ENC_API BROTLI_BOOL BrotliEncoderCompress(
380 BROTLI_ENC_API BROTLI_BOOL BrotliEncoderCompressStream(
393 BROTLI_ENC_API BROTLI_BOOL BrotliEncoderIsFinished(BrotliEncoderState* state);
402 BROTLI_ENC_API BROTLI_BOOL BrotliEncoderHasMoreOutput(
types.h 33 * ::BROTLI_BOOL is a "documentation" type: actually it is @c int, but in API it
36 * ::BROTLI_BOOL values passed to Brotli should either be ::BROTLI_TRUE or
39 * ::BROTLI_BOOL values returned by Brotli should not be tested for equality
49 #define BROTLI_BOOL int
54 /** @c bool to ::BROTLI_BOOL conversion macros. */
decode.h 154 BROTLI_DEC_API BROTLI_BOOL BrotliDecoderSetParameter(
257 BROTLI_DEC_API BROTLI_BOOL BrotliDecoderHasMoreOutput(
301 BROTLI_DEC_API BROTLI_BOOL BrotliDecoderIsUsed(const BrotliDecoderState* state);
311 BROTLI_DEC_API BROTLI_BOOL BrotliDecoderIsFinished(
  /xsrc/external/mit/brotli/dist/c/tools/
brotli.c 95 BROTLI_BOOL force_overwrite;
96 BROTLI_BOOL junk_source;
97 BROTLI_BOOL copy_stat;
98 BROTLI_BOOL write_to_stdout;
99 BROTLI_BOOL test_integrity;
100 BROTLI_BOOL decompress;
101 BROTLI_BOOL large_window;
114 BROTLI_BOOL iterator_error;
138 static BROTLI_BOOL ParseInt(const char* s, int low, int high, int* result) {
185 BROTLI_BOOL command_set = BROTLI_FALSE
    [all...]
  /xsrc/external/mit/brotli/dist/c/dec/
bit_reader.c 34 BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br) {
57 BROTLI_BOOL BrotliSafeReadBits32Slow(BrotliBitReader* const br,
bit_reader.h 58 BROTLI_INTERNAL BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br);
63 BROTLI_INTERNAL BROTLI_NOINLINE BROTLI_BOOL BrotliSafeReadBits32Slow(
98 static BROTLI_INLINE BROTLI_BOOL BrotliCheckInputAmount(
165 static BROTLI_INLINE BROTLI_BOOL BrotliPullByte(BrotliBitReader* const br) {
206 static BROTLI_INLINE BROTLI_BOOL BrotliSafeGetBits(
291 static BROTLI_INLINE BROTLI_BOOL BrotliSafeReadBits(
304 static BROTLI_INLINE BROTLI_BOOL BrotliSafeReadBits32(
322 static BROTLI_INLINE BROTLI_BOOL BrotliJumpToByteBoundary(BrotliBitReader* br) {
state.h 344 BROTLI_INTERNAL BROTLI_BOOL BrotliDecoderStateInit(BrotliDecoderState* s,
350 BROTLI_INTERNAL BROTLI_BOOL BrotliDecoderHuffmanTreeGroupInit(
decode.c 61 BROTLI_BOOL BrotliDecoderSetParameter(
137 BROTLI_BOOL large_window = s->large_window;
375 static BROTLI_NOINLINE BROTLI_BOOL SafeDecodeSymbol(
415 static BROTLI_INLINE BROTLI_BOOL SafeReadSymbol(
647 BROTLI_BOOL get_byte = BROTLI_FALSE;
884 static BROTLI_INLINE BROTLI_BOOL SafeReadBlockLength(
1055 BROTLI_BOOL skip_preamble = (code != 0xFFFF);
1120 static BROTLI_INLINE BROTLI_BOOL DecodeBlockTypeAndLength(
1197 static BROTLI_INLINE BROTLI_BOOL DecodeLiteralBlockSwitchInternal(
1210 static BROTLI_BOOL BROTLI_NOINLINE SafeDecodeLiteralBlockSwitch
    [all...]
  /xsrc/external/mit/brotli/dist/python/
_brotli.cc 90 static BROTLI_BOOL compress_stream(BrotliEncoderState* enc, BrotliEncoderOperation op,
93 BROTLI_BOOL ok = BROTLI_TRUE;
227 BROTLI_BOOL ok = BROTLI_TRUE;
230 ok = (BROTLI_BOOL)PyArg_ParseTuple(args, "y*:process", &input);
232 ok = (BROTLI_BOOL)PyArg_ParseTuple(args, "s*:process", &input);
274 BROTLI_BOOL ok = BROTLI_TRUE;
314 BROTLI_BOOL ok = BROTLI_TRUE;
395 static BROTLI_BOOL decompress_stream(BrotliDecoderState* dec,
398 BROTLI_BOOL ok = BROTLI_TRUE;
496 BROTLI_BOOL ok = BROTLI_TRUE
    [all...]

Completed in 43 milliseconds

1 2