Home
last modified time | relevance | path

Searched refs:Org (Results 1 – 25 of 41) sorted by relevance

12

/external/brotli/csharp/org/brotli/dec/
DTransform.cs6 namespace Org.Brotli.Dec
34Org.Brotli.Dec.Transform[] Transforms = new Org.Brotli.Dec.Transform[] { new Org.Brotli.Dec.Transf…
35Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.…
36Org.Brotli.Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotli.Dec.Transform(string.Empty,
37Org.Brotli.Dec.Transform("s ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec…
38Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " and "), new Or…
39Org.Brotli.Dec.WordTransformType.OmitLast1, string.Empty), new Org.Brotli.Dec.Transform(", ", Org.…
40Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotl…
41Org.Brotli.Dec.Transform("e ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec…
42Org.Brotli.Dec.WordTransformType.Identity, "."), new Org.Brotli.Dec.Transform(string.Empty, Org.Br…
[all …]
DDecode.cs6 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 …]
DState.cs6 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 …]
DBitReader.cs6 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 …]
DDecodeTest.cs6 namespace Org.Brotli.Dec
21 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input); in Decompress()
58Org.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 …]
DTransformTest.cs6 namespace Org.Brotli.Dec
36Org.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()
49Org.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()
DBitReaderTest.cs6 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()
DHuffmanTreeGroup.cs6 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()
DBrotliInputStream.cs6 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()
DDictionary.cs6 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()
DIntReader.cs6 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()
DSynthTest.cs6 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()
DDictionaryTest.cs6 namespace Org.Brotli.Dec
33 NUnit.Framework.Assert.AreEqual(37084801881332636L, Crc64(Org.Brotli.Dec.Dictionary.GetData())); in TestGetData()
DContext.cs6 namespace Org.Brotli.Dec
DPrefix.cs6 namespace Org.Brotli.Dec
DRunningState.cs6 namespace Org.Brotli.Dec
DBrotliRuntimeException.cs6 namespace Org.Brotli.Dec
DWordTransformType.cs6 namespace Org.Brotli.Dec
/external/pdfium/third_party/lcms/
D0000-cmserr-changes.patch136 -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/
DCOPYING1 Copyright 2001-2011 Xiph.Org, Skype Limited, Octasic,
37 Xiph.Org Foundation:
/external/libogg/doc/
Drfc5334.txt66 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/
DAUTHORS3 and the rest of the Xiph.Org Foundation.
/external/honggfuzz/examples/apache-httpd/corpus_http1/
D8bcd6e857cd38d7836ee14eb94cb7940.000001dd.honggfuzz.cov2 Useq-Agent: Wget/�.15 Vlimen.wikipedia.Org:80)
/external/honggfuzz/examples/apache-httpd/corpus_http2/
D8bcd6e857cd38d7836ee14eb94cb7940.000001dd.honggfuzz.cov2 Useq-Agent: Wget/�.15 Vlimen.wikipedia.Org:80)
/external/libvpx/libvpx/tools/
Dgen_authors.sh13 The Xiph.Org Foundation

12