• Home
  • Raw
  • Download

Lines Matching refs:BROTLI_FALSE

144     if (s[i] < '0' || s[i] > '9') return BROTLI_FALSE;  in ParseInt()
147 if (i == 0) return BROTLI_FALSE; in ParseInt()
148 if (i > 1 && s[0] == '0') return BROTLI_FALSE; in ParseInt()
149 if (s[i] != 0) return BROTLI_FALSE; in ParseInt()
150 if (value < low || value > high) return BROTLI_FALSE; in ParseInt()
185 BROTLI_BOOL command_set = BROTLI_FALSE; in ParseParams()
186 BROTLI_BOOL quality_set = BROTLI_FALSE; in ParseParams()
187 BROTLI_BOOL output_set = BROTLI_FALSE; in ParseParams()
188 BROTLI_BOOL keep_set = BROTLI_FALSE; in ParseParams()
189 BROTLI_BOOL lgwin_set = BROTLI_FALSE; in ParseParams()
190 BROTLI_BOOL suffix_set = BROTLI_FALSE; in ParseParams()
191 BROTLI_BOOL after_dash_dash = BROTLI_FALSE; in ParseParams()
282 params->copy_stat = BROTLI_FALSE; in ParseParams()
400 params->junk_source = BROTLI_FALSE; in ParseParams()
406 params->copy_stat = BROTLI_FALSE; in ParseParams()
600 return BROTLI_FALSE; in OpenInputFile()
618 return BROTLI_FALSE; in OpenOutputFile()
624 return BROTLI_FALSE; in OpenOutputFile()
690 if (context->iterator > 1) return BROTLI_FALSE; in NextFile()
704 if (context->iterator >= context->argc) return BROTLI_FALSE; in NextFile()
735 return BROTLI_FALSE; in NextFile()
742 return BROTLI_FALSE; in NextFile()
772 is_ok = BROTLI_FALSE; in CloseFiles()
787 is_ok = BROTLI_FALSE; in CloseFiles()
814 return feof(context->fin) ? BROTLI_FALSE : BROTLI_TRUE; in HasMoreInput()
825 return BROTLI_FALSE; in ProvideInput()
841 return BROTLI_FALSE; in WriteOutput()
847 if (!WriteOutput(context)) return BROTLI_FALSE; in ProvideOutput()
854 if (!WriteOutput(context)) return BROTLI_FALSE; in FlushOutput()
886 return BROTLI_FALSE; in DecompressFile()
888 if (!ProvideInput(context)) return BROTLI_FALSE; in DecompressFile()
890 if (!ProvideOutput(context)) return BROTLI_FALSE; in DecompressFile()
892 if (!FlushOutput(context)) return BROTLI_FALSE; in DecompressFile()
898 return BROTLI_FALSE; in DecompressFile()
909 return BROTLI_FALSE; in DecompressFile()
923 return BROTLI_FALSE; in DecompressFiles()
933 is_ok = BROTLI_FALSE; in DecompressFiles()
937 if (!CloseFiles(context, is_ok)) is_ok = BROTLI_FALSE; in DecompressFiles()
938 if (!is_ok) return BROTLI_FALSE; in DecompressFiles()
944 BROTLI_BOOL is_eof = BROTLI_FALSE; in CompressFile()
948 if (!ProvideInput(context)) return BROTLI_FALSE; in CompressFile()
959 return BROTLI_FALSE; in CompressFile()
963 if (!ProvideOutput(context)) return BROTLI_FALSE; in CompressFile()
967 if (!FlushOutput(context)) return BROTLI_FALSE; in CompressFile()
984 return BROTLI_FALSE; in CompressFiles()
1019 is_ok = BROTLI_FALSE; in CompressFiles()
1023 if (!CloseFiles(context, is_ok)) is_ok = BROTLI_FALSE; in CompressFiles()
1024 if (!is_ok) return BROTLI_FALSE; in CompressFiles()
1038 context.force_overwrite = BROTLI_FALSE; in main()
1039 context.junk_source = BROTLI_FALSE; in main()
1041 context.test_integrity = BROTLI_FALSE; in main()
1042 context.write_to_stdout = BROTLI_FALSE; in main()
1043 context.decompress = BROTLI_FALSE; in main()
1044 context.large_window = BROTLI_FALSE; in main()
1056 context.iterator_error = BROTLI_FALSE; in main()
1074 is_ok = BROTLI_FALSE; in main()
1109 if (context.iterator_error) is_ok = BROTLI_FALSE; in main()