/external/brotli/csharp/org/brotli/dec/ |
D | Transform.cs | 6 namespace Org.Brotli.Dec 34 …Org.Brotli.Dec.Transform[] Transforms = new Org.Brotli.Dec.Transform[] { new Org.Brotli.Dec.Transf… 35 …Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.… 36 …Org.Brotli.Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotli.Dec.Transform(string.Empty, … 37 …Org.Brotli.Dec.Transform("s ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec… 38 …Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " and "), new Or… 39 …Org.Brotli.Dec.WordTransformType.OmitLast1, string.Empty), new Org.Brotli.Dec.Transform(", ", Org.… 40 …Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotl… 41 …Org.Brotli.Dec.Transform("e ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec… 42 …Org.Brotli.Dec.WordTransformType.Identity, "."), new Org.Brotli.Dec.Transform(string.Empty, Org.Br… [all …]
|
D | Decode.cs | 6 namespace Org.Brotli.Dec 45 private static int DecodeVarLenUnsignedByte(Org.Brotli.Dec.BitReader br) in DecodeVarLenUnsignedByte() 47 if (Org.Brotli.Dec.BitReader.ReadBits(br, 1) != 0) in DecodeVarLenUnsignedByte() 49 int n = Org.Brotli.Dec.BitReader.ReadBits(br, 3); in DecodeVarLenUnsignedByte() 56 return Org.Brotli.Dec.BitReader.ReadBits(br, n) + (1 << n); in DecodeVarLenUnsignedByte() 62 private static void DecodeMetaBlockLength(Org.Brotli.Dec.BitReader br, Org.Brotli.Dec.State state) in DecodeMetaBlockLength() 64 state.inputEnd = Org.Brotli.Dec.BitReader.ReadBits(br, 1) == 1; in DecodeMetaBlockLength() 68 if (state.inputEnd && Org.Brotli.Dec.BitReader.ReadBits(br, 1) != 0) in DecodeMetaBlockLength() 72 int sizeNibbles = Org.Brotli.Dec.BitReader.ReadBits(br, 2) + 4; in DecodeMetaBlockLength() 76 if (Org.Brotli.Dec.BitReader.ReadBits(br, 1) != 0) in DecodeMetaBlockLength() [all …]
|
D | State.cs | 6 namespace Org.Brotli.Dec 10 internal int runningState = Org.Brotli.Dec.RunningState.Uninitialized; 14 internal readonly Org.Brotli.Dec.BitReader br = new Org.Brotli.Dec.BitReader(); 18 internal readonly int[] blockTypeTrees = new int[3 * Org.Brotli.Dec.Huffman.HuffmanMaxTableSize]; 20 internal readonly int[] blockLenTrees = new int[3 * Org.Brotli.Dec.Huffman.HuffmanMaxTableSize]; 30 internal readonly Org.Brotli.Dec.HuffmanTreeGroup hGroup0 = new Org.Brotli.Dec.HuffmanTreeGroup(); 32 internal readonly Org.Brotli.Dec.HuffmanTreeGroup hGroup1 = new Org.Brotli.Dec.HuffmanTreeGroup(); 34 internal readonly Org.Brotli.Dec.HuffmanTreeGroup hGroup2 = new Org.Brotli.Dec.HuffmanTreeGroup(); 116 private static int DecodeWindowBits(Org.Brotli.Dec.BitReader br) in DecodeWindowBits() 118 if (Org.Brotli.Dec.BitReader.ReadBits(br, 1) == 0) in DecodeWindowBits() [all …]
|
D | BitReader.cs | 6 namespace Org.Brotli.Dec 29 private readonly Org.Brotli.Dec.IntReader intReader = new Org.Brotli.Dec.IntReader(); 55 internal static void ReadMoreInput(Org.Brotli.Dec.BitReader br) in ReadMoreInput() 68 throw new Org.Brotli.Dec.BrotliRuntimeException("No more input"); in ReadMoreInput() 92 throw new Org.Brotli.Dec.BrotliRuntimeException("Failed to read input", e); in ReadMoreInput() 94 Org.Brotli.Dec.IntReader.Convert(br.intReader, bytesRead >> 2); in ReadMoreInput() 97 internal static void CheckHealth(Org.Brotli.Dec.BitReader br, bool endOfStream) in CheckHealth() 106 throw new Org.Brotli.Dec.BrotliRuntimeException("Read after end"); in CheckHealth() 110 throw new Org.Brotli.Dec.BrotliRuntimeException("Unused bytes after end"); in CheckHealth() 115 internal static void FillBitWindow(Org.Brotli.Dec.BitReader br) in FillBitWindow() [all …]
|
D | DecodeTest.cs | 6 namespace Org.Brotli.Dec 21 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input); in Decompress() 58 …Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input, Org.Bro… in DecompressWithDictionary() 75 byte[] expectedBytes = Org.Brotli.Dec.Transform.ReadUniBytes(expected); in CheckDecodeResourceWithDictionary() 76 byte[] compressedBytes = Org.Brotli.Dec.Transform.ReadUniBytes(compressed); in CheckDecodeResourceWithDictionary() 77 byte[] dictionaryBytes = Org.Brotli.Dec.Transform.ReadUniBytes(dictionary); in CheckDecodeResourceWithDictionary() 85 byte[] expectedBytes = Org.Brotli.Dec.Transform.ReadUniBytes(expected); in CheckDecodeResource() 86 byte[] compressedBytes = Org.Brotli.Dec.Transform.ReadUniBytes(compressed); in CheckDecodeResource() 164 new Org.Brotli.Dec.Context(); in TestUtils() 165 new Org.Brotli.Dec.Decode(); in TestUtils() [all …]
|
D | TransformTest.cs | 6 namespace Org.Brotli.Dec 36 …Org.Brotli.Dec.Transform transform = new Org.Brotli.Dec.Transform("[", Org.Brotli.Dec.WordTransfor… in TestTrimAll() 37 Org.Brotli.Dec.Transform.TransformDictionaryWord(output, 0, input, 0, input.Length, transform); in TestTrimAll() 49 …Org.Brotli.Dec.Transform transform = new Org.Brotli.Dec.Transform("[", Org.Brotli.Dec.WordTransfor… in TestCapitalize() 50 Org.Brotli.Dec.Transform.TransformDictionaryWord(output, 0, input, 0, input.Length, transform); in TestCapitalize() 65 for (int i = 0; i < Org.Brotli.Dec.Transform.Transforms.Length; ++i) in TestAllTransforms() 67 …offset += Org.Brotli.Dec.Transform.TransformDictionaryWord(output, offset, testWord, 0, testWord.L… in TestAllTransforms()
|
D | BitReaderTest.cs | 6 namespace Org.Brotli.Dec 18 Org.Brotli.Dec.BitReader reader = new Org.Brotli.Dec.BitReader(); in TestReadAfterEos() 19 Org.Brotli.Dec.BitReader.Init(reader, new System.IO.MemoryStream(new byte[1])); in TestReadAfterEos() 20 Org.Brotli.Dec.BitReader.ReadBits(reader, 9); in TestReadAfterEos() 23 Org.Brotli.Dec.BitReader.CheckHealth(reader, false); in TestReadAfterEos() 25 catch (Org.Brotli.Dec.BrotliRuntimeException) in TestReadAfterEos()
|
D | HuffmanTreeGroup.cs | 6 namespace Org.Brotli.Dec 28 internal static void Init(Org.Brotli.Dec.HuffmanTreeGroup group, int alphabetSize, int n) in Init() 31 group.codes = new int[n * Org.Brotli.Dec.Huffman.HuffmanMaxTableSize]; in Init() 38 internal static void Decode(Org.Brotli.Dec.HuffmanTreeGroup group, Org.Brotli.Dec.BitReader br) in Decode() 45 Org.Brotli.Dec.Decode.ReadHuffmanCode(group.alphabetSize, group.codes, next, br); in Decode() 46 next += Org.Brotli.Dec.Huffman.HuffmanMaxTableSize; in Decode()
|
D | BrotliInputStream.cs | 6 namespace Org.Brotli.Dec 27 private readonly Org.Brotli.Dec.State state = new Org.Brotli.Dec.State(); 104 Org.Brotli.Dec.State.SetInput(state, source); in BrotliInputStream() 106 catch (Org.Brotli.Dec.BrotliRuntimeException ex) in BrotliInputStream() 112 Org.Brotli.Dec.Decode.SetCustomDictionary(state, customDictionary); in BrotliInputStream() 120 Org.Brotli.Dec.State.Close(state); in Close() 178 Org.Brotli.Dec.Decode.Decompress(state); in Read() 185 catch (Org.Brotli.Dec.BrotliRuntimeException ex) in Read()
|
D | Dictionary.cs | 6 namespace Org.Brotli.Dec 61 …] chunks = new string[] { Org.Brotli.Dec.Dictionary.DataHolder0.GetData(), Org.Brotli.Dec.Dictiona… in DataHolder() 84 return Org.Brotli.Dec.Dictionary.DataHolder.Data; in GetData()
|
D | IntReader.cs | 6 namespace Org.Brotli.Dec 15 internal static void Init(Org.Brotli.Dec.IntReader ir, byte[] byteBuffer, int[] intBuffer) in Init() 27 internal static void Convert(Org.Brotli.Dec.IntReader ir, int intLen) in Convert()
|
D | SynthTest.cs | 6 namespace Org.Brotli.Dec 21 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input); in Decompress() 37 byte[] expected = Org.Brotli.Dec.Transform.ReadUniBytes(expectedOutput); in CheckSynth()
|
D | DictionaryTest.cs | 6 namespace Org.Brotli.Dec 33 NUnit.Framework.Assert.AreEqual(37084801881332636L, Crc64(Org.Brotli.Dec.Dictionary.GetData())); in TestGetData()
|
D | Context.cs | 6 namespace Org.Brotli.Dec
|
D | Prefix.cs | 6 namespace Org.Brotli.Dec
|
D | RunningState.cs | 6 namespace Org.Brotli.Dec
|
D | BrotliRuntimeException.cs | 6 namespace Org.Brotli.Dec
|
D | WordTransformType.cs | 6 namespace Org.Brotli.Dec
|
/external/pdfium/third_party/lcms/ |
D | 0000-cmserr-changes.patch | 136 -void* _cmsDupDefaultFn(cmsContext ContextID, const void* Org, cmsUInt32Number size) 137 +void* CMSEXPORT _cmsDupMem(cmsContext ContextID, const void* Org, cmsUInt32Number size) 145 - if (mem != NULL && Org != NULL) 146 - memmove(mem, Org, size); 150 + memmove(p, Org, size); 279 -void* CMSEXPORT _cmsDupMem(cmsContext ContextID, const void* Org, cmsUInt32Number size) 282 - return ptr ->DupPtr(ContextID, Org, size);
|
/external/libopus/ |
D | COPYING | 1 Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic, 37 Xiph.Org Foundation:
|
/external/libogg/doc/ |
D | rfc5334.txt | 66 format defined by the Xiph.Org Foundation for public use. Refer to 351 The Xiph.Org Foundation has defined the specification, 427 Change controller: The Xiph.Org Foundation. 486 Change controller: The Xiph.Org Foundation. 545 Change controller: The Xiph.Org Foundation. 605 [libogg] Xiph.Org Foundation, "The libogg API", June 2000, 608 [Ogg] Xiph.Org Foundation, "Ogg bitstream documentation: Ogg 644 [Theora] Xiph.Org Foundation, "Theora Specification", 650 [Vorbis] Xiph.Org Foundation, "Vorbis I Specification", July 2004, 682 Xiph.Org Foundation [all …]
|
/external/libogg/ |
D | AUTHORS | 3 and the rest of the Xiph.Org Foundation.
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | 8bcd6e857cd38d7836ee14eb94cb7940.000001dd.honggfuzz.cov | 2 Useq-Agent: Wget/�.15 Vlimen.wikipedia.Org:80)
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | 8bcd6e857cd38d7836ee14eb94cb7940.000001dd.honggfuzz.cov | 2 Useq-Agent: Wget/�.15 Vlimen.wikipedia.Org:80)
|
/external/libvpx/libvpx/tools/ |
D | gen_authors.sh | 13 The Xiph.Org Foundation
|