Home
last modified time | relevance | path

Searched refs:Dec (Results 1 – 25 of 414) sorted by relevance

12345678910>>...17

/external/brotli/csharp/org/brotli/dec/
DTransform.cs6 namespace Org.Brotli.Dec
34Dec.Transform[] Transforms = new Org.Brotli.Dec.Transform[] { new Org.Brotli.Dec.Transform(string.…
35Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.WordTransfo…
36Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.
37Dec.Transform("s ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(…
38Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " and "), new Org.Brotli.De…
39Dec.WordTransformType.OmitLast1, string.Empty), new Org.Brotli.Dec.Transform(", ", Org.Brotli.Dec.…
40Dec.Transform(" ", Org.Brotli.Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotli.Dec.Trans…
41Dec.Transform("e ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(…
42Dec.WordTransformType.Identity, "."), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.Wo…
[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()
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 …]
DTransformTest.cs6 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()
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 …new string[] { Org.Brotli.Dec.Dictionary.DataHolder0.GetData(), Org.Brotli.Dec.Dictionary.DataHold… 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()
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVDecorate.cpp59 Dec(TheDec), Owner(nullptr) { in SPIRVDecorateGeneric()
70 Dec(TheDec), Owner(nullptr) { in SPIRVDecorateGeneric()
77 :SPIRVAnnotationGeneric(OC), Dec(DecorationRelaxedPrecision), Owner(nullptr){ in SPIRVDecorateGeneric()
82 return Dec; in getDecorateKind()
99 Encoder << Target << Dec; in encode()
100 if ( Dec == DecorationLinkageAttributes ) in encode()
115 Decoder >> Target >> Dec; in decode()
116 if(Dec == DecorationLinkageAttributes) in decode()
125 getEncoder(O) << Target << MemberNumber << Dec << Literals; in encode()
136 getDecoder(I) >> Target >> MemberNumber >> Dec >> Literals; in decode()
[all …]
DSPIRVDecorate.h83 return getCapability(Dec); in getRequiredCapability()
87 switch (Dec) { in getRequiredSPIRVVersion()
103 Decoration Dec;
113 iterator insert(const value_type& Dec) { in insert() argument
114 auto ER = BaseType::equal_range(Dec); in insert()
116 SPIRVDBG(spvdbgs() << "[compare decorate] " << *Dec in insert()
118 if (**I == *Dec) in insert()
122 SPIRVDBG(spvdbgs() << "[add decorate] " << *Dec << '\n'); in insert()
123 return BaseType::insert(Dec); in insert()
218 return std::make_pair(MemberNumber, Dec); in getPair()
DSPIRVEntry.cpp258 SPIRVEntry::addDecorate(const SPIRVDecorate *Dec){ in addDecorate() argument
259 Decorates.insert(std::make_pair(Dec->getDecorateKind(), Dec)); in addDecorate()
260 Module->addDecorate(Dec); in addDecorate()
261 SPIRVDBG(spvdbgs() << "[addDecorate] " << *Dec << '\n';) in addDecorate()
275 SPIRVEntry::eraseDecorate(Decoration Dec){ in eraseDecorate() argument
276 Decorates.erase(Dec); in eraseDecorate()
302 SPIRVEntry::addMemberDecorate(const SPIRVMemberDecorate *Dec){ in addMemberDecorate() argument
303 assert(canHaveMemberDecorates() && MemberDecorates.find(Dec->getPair()) == in addMemberDecorate()
305 MemberDecorates[Dec->getPair()] = Dec; in addMemberDecorate()
306 Module->addDecorate(Dec); in addMemberDecorate()
[all …]
/external/python/cpython3/Modules/_ctypes/libffi/
Dmdate-sh134 Dec) month=December; nummonth=12;;
178 Dec) month=December; nummonth=12;;
202 Dec) nummonthtod=12;;
/external/python/cpython2/Modules/_ctypes/libffi/
Dmdate-sh134 Dec) month=December; nummonth=12;;
178 Dec) month=December; nummonth=12;;
202 Dec) nummonthtod=12;;
/external/libmicrohttpd/doc/
Dmdate-sh134 Dec) month=December; nummonth=12;;
178 Dec) month=December; nummonth=12;;
202 Dec) nummonthtod=12;;
/external/libmicrohttpd/
DChangeLog94 Mon Dec 22 16:33:18 CET 2014
97 Mon Dec 22 13:02:36 CET 2014
100 Sat Dec 20 00:35:40 CET 2014
105 Thu Dec 4 00:43:10 CET 2014
289 Tue Dec 24 12:27:39 CET 2013
293 Sun Dec 22 14:54:30 CET 2013
296 Sat Dec 21 17:26:08 CET 2013
302 Mon Dec 9 21:41:57 CET 2013
307 Sat Dec 7 00:44:49 CET 2013
311 Tue Dec 3 21:25:56 CET 2013
[all …]
/external/syslinux/
Dsyslinux.spec124 * Fri Dec 18 2009 H. Peter Anvin <hpa@zytor.com>
158 * Thu Dec 30 2004 H. Peter Anvin <hpa@zytor.com>
163 * Tue Dec 14 2004 H. Peter Anvin <hpa@zytor.com>
215 * Sat Dec 15 2001 H. Peter Anvin <hpa@zytor.com>
248 * Tue Dec 12 2000 Than Ngo <than@redhat.com>
/external/curl/tests/data/
Dtest112858 If-Modified-Since: Sun, 12 Dec 1999 12:00:00 GMT
63 If-Modified-Since: Sun, 12 Dec 1999 12:00:00 GMT
/external/sonic/debian/
Dchangelog55 -- Bill Cox <waywardgeek@gmail.com> Mon, 20 Dec 2010 15:31:40 -0500
61 -- Bill Cox <waywardgeek@gmail.com> Fri, 17 Dec 2010 15:39:53 -0500
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/
DCHANGELOG.txt4 Changes in version 2.0-rc3 (14 Dec 2008)
10 Changes in version 2.0-rc2 (12 Dec 2008)
88 Changes in version 1.0 final (11 Dec 2007)
/external/mockftpserver/tags/2.0/
DCHANGELOG.txt11 Changes in version 2.0-rc3 (14 Dec 2008)
17 Changes in version 2.0-rc2 (12 Dec 2008)
95 Changes in version 1.0 final (11 Dec 2007)

12345678910>>...17