7 references to FALSE
System.IO.Compression.Brotli (7)
System\IO\Compression\dec\BrotliDecoder.cs (2)
62
if (Interop.Brotli.BrotliDecoderIsFinished(_state) != Interop.BOOL.
FALSE
)
120
bool success = Interop.Brotli.BrotliDecoderDecompress((nuint)source.Length, inBytes, &availableOutput, outBytes) != Interop.BOOL.
FALSE
;
System\IO\Compression\enc\BrotliEncoder.cs (5)
81
if (Interop.Brotli.BrotliEncoderSetParameter(_state, BrotliEncoderParameter.Quality, (uint)quality) == Interop.BOOL.
FALSE
)
99
if (Interop.Brotli.BrotliEncoderSetParameter(_state, BrotliEncoderParameter.LGWin, (uint)window) == Interop.BOOL.
FALSE
)
161
if (Interop.Brotli.BrotliEncoderCompressStream(_state, operation, ref availableInput, &inBytes, ref availableOutput, &outBytes, out _) == Interop.BOOL.
FALSE
)
173
if ((int)availableOutput == destination.Length && Interop.Brotli.BrotliEncoderHasMoreOutput(_state) == Interop.BOOL.
FALSE
&& availableInput == 0)
218
bool success = Interop.Brotli.BrotliEncoderCompress(quality, window, /*BrotliEncoderMode*/ 0, (nuint)source.Length, inBytes, &availableOutput, outBytes) != Interop.BOOL.
FALSE
;