Home
last modified time | relevance | path

Searched refs:Dec (Results 1 - 25 of 41) sorted by relevance

12

/third_party/skia/third_party/externals/brotli/csharp/org/brotli/dec/
H A DTransform.cs6 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
[all...]
H A 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 in DecodeMetaBlockLength()
[all...]
H A 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
[all...]
H A 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 in CheckHealth()
[all...]
H A 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.Brotli.Dec.BrotliInputStream.DefaultInternalBufferSize, dictionary); 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 in CheckDecodeResource()
[all...]
H A DTransformTest.cs6 namespace Org.Brotli.Dec
36 Org.Brotli.Dec.Transform transform = new Org.Brotli.Dec.Transform("[", Org.Brotli.Dec.WordTransformType.OmitFirst5, "]"); 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.WordTransformType.UppercaseAll, "]"); 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 in TestAllTransforms()
[all...]
H A 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()
H A 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()
H A 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()
H A DDictionary.cs6 namespace Org.Brotli.Dec
61 string[] chunks = new string[] { Org.Brotli.Dec.Dictionary.DataHolder0.GetData(), Org.Brotli.Dec.Dictionary.DataHolder1.GetData(), Org.Brotli.Dec.Dictionary.DataHolder2.GetData() }; in DataHolder()
84 return Org.Brotli.Dec.Dictionary.DataHolder.Data; in GetData()
H A 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()
H A DDictionaryTest.cs6 namespace Org.Brotli.Dec
33 NUnit.Framework.Assert.AreEqual(37084801881332636L, Crc64(Org.Brotli.Dec.Dictionary.GetData())); in TestGetData()
H A DContext.cs6 namespace Org.Brotli.Dec
H A DPrefix.cs6 namespace Org.Brotli.Dec
H A DBrotliRuntimeException.cs6 namespace Org.Brotli.Dec
H A DRunningState.cs6 namespace Org.Brotli.Dec
H A DWordTransformType.cs6 namespace Org.Brotli.Dec
H A DUtils.cs6 namespace Org.Brotli.Dec
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dsubstitute_test.cc56 // Dec format in TEST()
59 absl::Dec(0), absl::Dec(1, absl::kSpacePad2), in TEST()
60 absl::Dec(0xf, absl::kSpacePad2), in TEST()
61 absl::Dec(int16_t{-1}, absl::kSpacePad5), in TEST()
62 absl::Dec(int16_t{-1}, absl::kZeroPad5), in TEST()
63 absl::Dec(0x123456789abcdef, absl::kZeroPad16))); in TEST()
H A Dstr_cat.h82 // `Dec` conversion and fill character to use. A `kZeroPad2` value, for example,
178 // Dec
181 // `Dec` stores a set of decimal string conversion parameters for use
182 // within `AlphaNum` string conversions. Dec is slower than the default
184 struct Dec { struct
191 explicit Dec(Int v, PadSpec spec = absl::kNoPad, in Dec() function
241 AlphaNum(Dec dec); // NOLINT(runtime/explicit)
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dmdate-sh134 Dec) month=December; nummonth=12;;
178 Dec) month=December; nummonth=12;;
202 Dec) nummonthtod=12;;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
H A DARMLowOverheadLoops.cpp128 MachineInstr *Dec = nullptr; member
172 return Start && Dec && End; in FoundAllComponents()
194 if (Dec) dbgs() << "ARM Loops: Found Loop Dec: " << *Dec; in dump()
199 else if (!(Start && Dec && End)) in dump()
625 LoLoop.Dec = &MI; in ProcessLoop()
644 if (!LoLoop.Dec || LoLoop.End || LoLoop.Revert) in ProcessLoop()
975 LoLoop.Dec->eraseFromParent(); in Expand()
1001 bool FlagsAlreadySet = RevertLoopDec(LoLoop.Dec, tru in Expand()
[all...]
/third_party/tzdata/
H A Dziguard.awk202 && $0 ~ /[\t ](1942 Dec 14|1960|1970|1974 Dec 22)$/)) {
/third_party/zlib/watcom/
H A Dwatcom_l.mak3 # Last updated: 28-Dec-2005
/third_party/node/deps/v8/tools/
H A Dbigint-tester.py193 class Dec(UnaryOp): class
282 "dec": Dec,

Completed in 14 milliseconds

12