Home
last modified time | relevance | path

Searched refs:BROTLI_FALSE (Results 1 – 24 of 24) sorted by relevance

/external/brotli/c/tools/
Dbrotli.c133 if (s[i] < '0' || s[i] > '9') return BROTLI_FALSE; in ParseInt()
136 if (i == 0) return BROTLI_FALSE; in ParseInt()
137 if (i > 1 && s[0] == '0') return BROTLI_FALSE; in ParseInt()
138 if (s[i] != 0) return BROTLI_FALSE; in ParseInt()
139 if (value < low || value > high) return BROTLI_FALSE; in ParseInt()
174 BROTLI_BOOL command_set = BROTLI_FALSE; in ParseParams()
175 BROTLI_BOOL quality_set = BROTLI_FALSE; in ParseParams()
176 BROTLI_BOOL output_set = BROTLI_FALSE; in ParseParams()
177 BROTLI_BOOL keep_set = BROTLI_FALSE; in ParseParams()
178 BROTLI_BOOL lgwin_set = BROTLI_FALSE; in ParseParams()
[all …]
/external/brotli/c/enc/
Dencode.c137 if (state->is_initialized_) return BROTLI_FALSE; in BrotliEncoderSetParameter()
157 if ((value != 0) && (value != 1)) return BROTLI_FALSE; in BrotliEncoderSetParameter()
177 default: return BROTLI_FALSE; in BrotliEncoderSetParameter()
409 return BROTLI_FALSE; in ShouldUseComplexStaticContextMap()
456 return BROTLI_FALSE; in ShouldUseComplexStaticContextMap()
500 if (bytes <= 2) return BROTLI_FALSE; in ShouldCompress()
516 return BROTLI_FALSE; in ShouldCompress()
676 if (BROTLI_IS_OOM(&s->memory_manager_)) return BROTLI_FALSE; in EnsureInitialized()
711 params->large_window = BROTLI_FALSE; in BrotliEncoderInitParams()
716 params->disable_literal_context_modeling = BROTLI_FALSE; in BrotliEncoderInitParams()
[all …]
Dhash.h165 return BROTLI_FALSE; in TestStaticDictionaryItem()
171 return BROTLI_FALSE; in TestStaticDictionaryItem()
181 return BROTLI_FALSE; in TestStaticDictionaryItem()
185 return BROTLI_FALSE; in TestStaticDictionaryItem()
408 GetHasherCommon(handle)->is_prepared_ = BROTLI_FALSE; in HasherReset()
Dhash_composite_inc.h62 common_a->is_prepared_ = BROTLI_FALSE; in FN()
71 common_b->is_prepared_ = BROTLI_FALSE; in FN()
Dstatic_dict.c45 return BROTLI_FALSE; in IsMatch()
67 if ((dict[i] ^ 32) != data[i]) return BROTLI_FALSE; in IsMatch()
69 if (dict[i] != data[i]) return BROTLI_FALSE; in IsMatch()
80 BROTLI_BOOL has_found_match = BROTLI_FALSE; in BrotliFindAllStaticDictionaryMatches()
Dentropy_encode.c31 if (level > max_depth) return BROTLI_FALSE; in BrotliSetDepth()
410 BROTLI_BOOL use_rle_for_non_zero = BROTLI_FALSE; in BrotliWriteHuffmanTree()
411 BROTLI_BOOL use_rle_for_zero = BROTLI_FALSE; in BrotliWriteHuffmanTree()
Dmetablock.c92 BROTLI_BOOL equal_params = BROTLI_FALSE; in ComputeDistanceCost()
113 return BROTLI_FALSE; in ComputeDistanceCost()
165 check_orig = BROTLI_FALSE; in BrotliBuildMetaBlock()
515 ContextBlockSplitterFinishBlock(self, m, /* is_final = */ BROTLI_FALSE); in ContextBlockSplitterAddSymbol()
Dquality.h63 params->large_window = BROTLI_FALSE; in SanitizeParams()
Dmemory.c43 m->is_oom = BROTLI_FALSE; in BrotliInitMemoryManager()
Dcommand.h143 GetLengthCode(insertlen, 4, BROTLI_FALSE, &self->cmd_prefix_); in InitInsertCommand()
Dmetablock_inc.h179 FN(BlockSplitterFinishBlock)(self, /* is_final = */ BROTLI_FALSE); in FN()
Dhash_rolling_inc.h142 FN(Prepare)(handle, BROTLI_FALSE, available, in FN()
Dhash_longest_match64_inc.h263 max_distance, out, BROTLI_FALSE); in FN()
Dhash_forgetful_chain_inc.h246 max_distance, out, BROTLI_FALSE); in FN()
Dhash_longest_match_inc.h255 max_distance, out, BROTLI_FALSE); in FN()
Dcluster_inc.h18 BROTLI_BOOL is_good_pair = BROTLI_FALSE;
Dbackward_references_hq.c176 SetCost(histogram_cmd, BROTLI_NUM_COMMAND_SYMBOLS, BROTLI_FALSE, in ZopfliCostModelSetFromCommands()
178 SetCost(histogram_dist, self->distance_histogram_size, BROTLI_FALSE, in ZopfliCostModelSetFromCommands()
Dcompress_fragment_two_pass.c64 return BROTLI_FALSE; in IsMatch()
Dcompress_fragment.c398 return BROTLI_FALSE; in ShouldUseUncompressedMode()
/external/brotli/c/dec/
Ddecode.c62 if (state->state != BROTLI_STATE_UNINITED) return BROTLI_FALSE; in BrotliDecoderSetParameter()
72 default: return BROTLI_FALSE; in BrotliDecoderSetParameter()
137 s->large_window = BROTLI_FALSE; in DecodeWindowBits()
382 return BROTLI_FALSE; /* No valid bits at all. */ in SafeDecodeSymbol()
392 return BROTLI_FALSE; /* Not enough bits for the first level. */ in SafeDecodeSymbol()
396 return BROTLI_FALSE; /* Not enough bits to move to the second level. */ in SafeDecodeSymbol()
404 return BROTLI_FALSE; /* Not enough bits for the second level. */ in SafeDecodeSymbol()
640 BROTLI_BOOL get_byte = BROTLI_FALSE; in SafeReadSymbolCodeLengths()
648 get_byte = BROTLI_FALSE; in SafeReadSymbolCodeLengths()
882 return BROTLI_FALSE; in SafeReadBlockLength()
[all …]
Dbit_reader.h166 return BROTLI_FALSE; in BrotliPullByte()
209 return BROTLI_FALSE; in BrotliSafeGetBits()
271 return BROTLI_FALSE; in BrotliSafeReadBits()
Dbit_reader.c33 return BROTLI_FALSE; in BrotliWarmupBitReader()
/external/brotli/c/include/brotli/
Dtypes.h53 #define BROTLI_FALSE 0 macro
55 #define TO_BROTLI_BOOL(X) (!!(X) ? BROTLI_TRUE : BROTLI_FALSE)
/external/brotli/python/
D_brotli.cc239 ok = BROTLI_FALSE; in brotli_Compressor_process()
277 ok = BROTLI_FALSE; in brotli_Compressor_flush()
317 ok = BROTLI_FALSE; in brotli_Compressor_finish()
508 ok = BROTLI_FALSE; in brotli_Decompressor_process()
545 ok = BROTLI_FALSE; in brotli_Decompressor_is_finished()