Lines Matching refs:BROTLI_FALSE
133 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()
179 BROTLI_BOOL suffix_set = BROTLI_FALSE; in ParseParams()
180 BROTLI_BOOL after_dash_dash = BROTLI_FALSE; in ParseParams()
271 params->copy_stat = BROTLI_FALSE; in ParseParams()
389 params->junk_source = BROTLI_FALSE; in ParseParams()
395 params->copy_stat = BROTLI_FALSE; in ParseParams()
583 return BROTLI_FALSE; in OpenInputFile()
601 return BROTLI_FALSE; in OpenOutputFile()
607 return BROTLI_FALSE; in OpenOutputFile()
673 if (context->iterator > 1) return BROTLI_FALSE; in NextFile()
687 if (context->iterator >= context->argc) return BROTLI_FALSE; in NextFile()
718 return BROTLI_FALSE; in NextFile()
725 return BROTLI_FALSE; in NextFile()
755 is_ok = BROTLI_FALSE; in CloseFiles()
770 is_ok = BROTLI_FALSE; in CloseFiles()
793 return feof(context->fin) ? BROTLI_FALSE : BROTLI_TRUE; in HasMoreInput()
803 return BROTLI_FALSE; in ProvideInput()
818 return BROTLI_FALSE; in WriteOutput()
824 if (!WriteOutput(context)) return BROTLI_FALSE; in ProvideOutput()
831 if (!WriteOutput(context)) return BROTLI_FALSE; in FlushOutput()
844 return BROTLI_FALSE; in DecompressFile()
846 if (!ProvideInput(context)) return BROTLI_FALSE; in DecompressFile()
848 if (!ProvideOutput(context)) return BROTLI_FALSE; in DecompressFile()
850 if (!FlushOutput(context)) return BROTLI_FALSE; in DecompressFile()
854 return BROTLI_FALSE; in DecompressFile()
860 return BROTLI_FALSE; in DecompressFile()
874 return BROTLI_FALSE; in DecompressFiles()
884 is_ok = BROTLI_FALSE; in DecompressFiles()
888 if (!CloseFiles(context, is_ok)) is_ok = BROTLI_FALSE; in DecompressFiles()
889 if (!is_ok) return BROTLI_FALSE; in DecompressFiles()
895 BROTLI_BOOL is_eof = BROTLI_FALSE; in CompressFile()
899 if (!ProvideInput(context)) return BROTLI_FALSE; in CompressFile()
910 return BROTLI_FALSE; in CompressFile()
914 if (!ProvideOutput(context)) return BROTLI_FALSE; in CompressFile()
929 return BROTLI_FALSE; in CompressFiles()
964 is_ok = BROTLI_FALSE; in CompressFiles()
968 if (!CloseFiles(context, is_ok)) is_ok = BROTLI_FALSE; in CompressFiles()
969 if (!is_ok) return BROTLI_FALSE; in CompressFiles()
982 context.force_overwrite = BROTLI_FALSE; in main()
983 context.junk_source = BROTLI_FALSE; in main()
985 context.test_integrity = BROTLI_FALSE; in main()
986 context.verbose = BROTLI_FALSE; in main()
987 context.write_to_stdout = BROTLI_FALSE; in main()
988 context.decompress = BROTLI_FALSE; in main()
989 context.large_window = BROTLI_FALSE; in main()
1001 context.iterator_error = BROTLI_FALSE; in main()
1019 is_ok = BROTLI_FALSE; in main()
1054 if (context.iterator_error) is_ok = BROTLI_FALSE; in main()