HomeSort by relevance Sort by last modified time
    Searched defs:Dec (Results 1 - 25 of 30) sorted by null

1 2

  /external/brotli/csharp/org/brotli/dec/
BrotliRuntimeException.cs 6 namespace Org.Brotli.Dec
BitReaderTest.cs 6 namespace Org.Brotli.Dec
18 Org.Brotli.Dec.BitReader reader = new Org.Brotli.Dec.BitReader();
19 Org.Brotli.Dec.BitReader.Init(reader, new System.IO.MemoryStream(new byte[1]));
20 Org.Brotli.Dec.BitReader.ReadBits(reader, 9);
23 Org.Brotli.Dec.BitReader.CheckHealth(reader, false);
25 catch (Org.Brotli.Dec.BrotliRuntimeException)
Context.cs 6 namespace Org.Brotli.Dec
DictionaryTest.cs 6 namespace Org.Brotli.Dec
33 NUnit.Framework.Assert.AreEqual(37084801881332636L, Crc64(Org.Brotli.Dec.Dictionary.GetData()));
Utils.cs 6 namespace Org.Brotli.Dec
Huffman.cs 6 namespace Org.Brotli.Dec
HuffmanTreeGroup.cs 6 namespace Org.Brotli.Dec
28 internal static void Init(Org.Brotli.Dec.HuffmanTreeGroup group, int alphabetSize, int n)
31 group.codes = new int[n * Org.Brotli.Dec.Huffman.HuffmanMaxTableSize];
38 internal static void Decode(Org.Brotli.Dec.HuffmanTreeGroup group, Org.Brotli.Dec.BitReader br)
45 Org.Brotli.Dec.Decode.ReadHuffmanCode(group.alphabetSize, group.codes, next, br);
46 next += Org.Brotli.Dec.Huffman.HuffmanMaxTableSize;
IntReader.cs 6 namespace Org.Brotli.Dec
15 internal static void Init(Org.Brotli.Dec.IntReader ir, byte[] byteBuffer, int[] intBuffer)
27 internal static void Convert(Org.Brotli.Dec.IntReader ir, int intLen)
Transform.cs 6 namespace Org.Brotli.Dec
34 internal static readonly Org.Brotli.Dec.Transform[] Transforms = new Org.Brotli.Dec.Transform[] { new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, string.Empty), new Org.Brotli.Dec.Transform(string.Empty,
35 Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.OmitFirst1, string.Empty), new Org.Brotli (…)
    [all...]
TransformTest.cs 6 namespace Org.Brotli.Dec
36 Org.Brotli.Dec.Transform transform = new Org.Brotli.Dec.Transform("[", Org.Brotli.Dec.WordTransformType.OmitFirst5, "]");
37 Org.Brotli.Dec.Transform.TransformDictionaryWord(output, 0, input, 0, input.Length, transform);
49 Org.Brotli.Dec.Transform transform = new Org.Brotli.Dec.Transform("[", Org.Brotli.Dec.WordTransformType.UppercaseAll, "]");
50 Org.Brotli.Dec.Transform.TransformDictionaryWord(output, 0, input, 0, input.Length, transform);
65 for (int i = 0; i < Org.Brotli.Dec.Transform.Transforms.Length; ++i)
    [all...]
Dictionary.cs 6 namespace Org.Brotli.Dec
    [all...]
Prefix.cs 6 namespace Org.Brotli.Dec
DecodeTest.cs 6 namespace Org.Brotli.Dec
21 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input);
58 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input, Org.Brotli.Dec.BrotliInputStream.DefaultInternalBufferSize, dictionary);
75 byte[] expectedBytes = Org.Brotli.Dec.Transform.ReadUniBytes(expected);
76 byte[] compressedBytes = Org.Brotli.Dec.Transform.ReadUniBytes(compressed);
77 byte[] dictionaryBytes = Org.Brotli.Dec.Transform.ReadUniBytes(dictionary);
85 byte[] expectedBytes = Org.Brotli.Dec.Transform.ReadUniBytes(expected);
    [all...]
RunningState.cs 6 namespace Org.Brotli.Dec
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);
106 catch (Org.Brotli.Dec.BrotliRuntimeException ex)
112 Org.Brotli.Dec.Decode.SetCustomDictionary(state, customDictionary);
120 Org.Brotli.Dec.State.Close(state);
178 Org.Brotli.Dec.Decode.Decompress(state);
185 catch (Org.Brotli.Dec.BrotliRuntimeException ex)
WordTransformType.cs 6 namespace Org.Brotli.Dec
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)
68 throw new Org.Brotli.Dec.BrotliRuntimeException("No more input");
92 throw new Org.Brotli.Dec.BrotliRuntimeException("Failed to read input", e);
94 Org.Brotli.Dec.IntReader.Convert(br.intReader, bytesRead >> 2);
97 internal static void CheckHealth(Org.Brotli.Dec.BitReader br, bool endOfStream)
106 throw new Org.Brotli.Dec.BrotliRuntimeException("Read after end");
110 throw new Org.Brotli.Dec.BrotliRuntimeException("Unused bytes after end");
    [all...]
Decode.cs 6 namespace Org.Brotli.Dec
45 private static int DecodeVarLenUnsignedByte(Org.Brotli.Dec.BitReader br)
47 if (Org.Brotli.Dec.BitReader.ReadBits(br, 1) != 0)
49 int n = Org.Brotli.Dec.BitReader.ReadBits(br, 3);
56 return Org.Brotli.Dec.BitReader.ReadBits(br, n) + (1 << n);
62 private static void DecodeMetaBlockLength(Org.Brotli.Dec.BitReader br, Org.Brotli.Dec.State state)
64 state.inputEnd = Org.Brotli.Dec.BitReader.ReadBits(br, 1) == 1;
68 if (state.inputEnd && Org.Brotli.Dec.BitReader.ReadBits(br, 1) != 0)
72 int sizeNibbles = Org.Brotli.Dec.BitReader.ReadBits(br, 2) + 4;
    [all...]
SynthTest.cs 6 namespace Org.Brotli.Dec
21 Org.Brotli.Dec.BrotliInputStream brotliInput = new Org.Brotli.Dec.BrotliInputStream(input);
37 byte[] expected = Org.Brotli.Dec.Transform.ReadUniBytes(expectedOutput);
    [all...]
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();
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DecClassObject.py 2 # This file is used to define each component of DEC file
53 # This class defined basic Dec object which is used by inheriting
61 ## Dec
63 # This class defined the structure used in Dec object
66 # @param Filename: Input value for Filename of Dec file, default is None
83 # @var KeyList: To store value for KeyList, a list for all Keys used in Dec
85 class Dec(DecObject):
117 # Load Dec file if filename is not None
128 ## Load Dec file
132 # @param Filename: Input value for filename of Dec file
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVDecorate.cpp 59 Dec(TheDec), Owner(nullptr) {
70 Dec(TheDec), Owner(nullptr) {
77 :SPIRVAnnotationGeneric(OC), Dec(DecorationRelaxedPrecision), Owner(nullptr){
82 return Dec;
99 Encoder << Target << Dec;
100 if ( Dec == DecorationLinkageAttributes )
115 Decoder >> Target >> Dec;
116 if(Dec == DecorationLinkageAttributes)
125 getEncoder(O) << Target << MemberNumber << Dec << Literals;
136 getDecoder(I) >> Target >> MemberNumber >> Dec >> Literals
    [all...]
SPIRVDecorate.h 83 return getCapability(Dec);
87 switch (Dec) {
103 Decoration Dec;
113 iterator insert(const value_type& Dec) {
114 auto ER = BaseType::equal_range(Dec);
116 SPIRVDBG(spvdbgs() << "[compare decorate] " << *Dec
118 if (**I == *Dec)
122 SPIRVDBG(spvdbgs() << "[add decorate] " << *Dec << '\n');
123 return BaseType::insert(Dec);
218 return std::make_pair(MemberNumber, Dec);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
DecParser.py 2 # This file is used to parse DEC file. It will consumed by DecParser
146 # In DEC spec, sections must have at least one statement except user
235 # Split comment and DEC content, concatenate lines if end of char is '\'
275 # (except [Userextensions] sections for Intel) of the INF or DEC file
748 ## Dec
750 # Top dec parser
752 class Dec(_DecBase, _DecComments):
794 # DEC file supported data types (one type per section)
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersNodeTest.cpp     [all...]

Completed in 316 milliseconds

1 2