Home
last modified time | relevance | path

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

12345678910>>...23

/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()
DDictionaryTest.cs6 namespace Org.Brotli.Dec
33 NUnit.Framework.Assert.AreEqual(37084801881332636L, Crc64(Org.Brotli.Dec.Dictionary.GetData())); in TestGetData()
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()
/external/cldr/tools/java/org/unicode/cldr/util/data/
Dleapseconds44 Leap 1972 Dec 31 23:59:60 + S
45 Leap 1973 Dec 31 23:59:60 + S
46 Leap 1974 Dec 31 23:59:60 + S
47 Leap 1975 Dec 31 23:59:60 + S
48 Leap 1976 Dec 31 23:59:60 + S
49 Leap 1977 Dec 31 23:59:60 + S
50 Leap 1978 Dec 31 23:59:60 + S
51 Leap 1979 Dec 31 23:59:60 + S
56 Leap 1987 Dec 31 23:59:60 + S
57 Leap 1989 Dec 31 23:59:60 + S
[all …]
/external/pdfium/testing/resources/javascript/
Dutil_scand_expected.txt3 Alert: PASS: util.scand('mm/dd/yyyy', '12/20/2016').toUTCString() = Tue, 20 Dec 2016 21:48:50 GMT
4 Alert: PASS: util.scand('dd/mm/yyyy', '20/12/2016').toUTCString() = Tue, 20 Dec 2016 21:48:50 GMT
5 Alert: PASS: util.scand('yyyy/mm/dd', '2016/12/20').toUTCString() = Tue, 20 Dec 2016 21:48:50 GMT
6 Alert: PASS: util.scand('dd/mmm/yyyy', '20/Dec/2016').toUTCString() = Tue, 20 Dec 2016 21:48:50 GMT
7 Alert: PASS: util.scand('..dd:-:mmm/yyyy', '**20/*/Dec.2016').toUTCString() = Tue, 20 Dec 2016 21:4…
Dutil_scand.in38 const tuesday = "Tue, 20 Dec 2016 21:48:50 GMT";
45 expect("util.scand('dd/mmm/yyyy', '20/Dec/2016').toUTCString()", tuesday);
46 expect("util.scand('..dd:-:mmm/yyyy', '**20/*/Dec.2016').toUTCString()", tuesday);
/external/llvm-project/clang/include/clang/Analysis/Analyses/
DExprMutationAnalyzer.h29 bool isMutated(const Decl *Dec) { return findMutation(Dec) != nullptr; } in isMutated() argument
31 const Stmt *findMutation(const Decl *Dec);
36 bool isPointeeMutated(const Decl *Dec) { in isPointeeMutated() argument
37 return findPointeeMutation(Dec) != nullptr; in isPointeeMutated()
40 const Stmt *findPointeeMutation(const Decl *Dec);
49 const Stmt *tryEachDeclRef(const Decl *Dec, MutationFinder Finder);
/external/angle/third_party/abseil-cpp/absl/strings/
Dsubstitute_test.cc59 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()
/external/abseil-cpp/absl/strings/
Dsubstitute_test.cc59 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()
/external/libtextclassifier/abseil-cpp/absl/strings/
Dsubstitute_test.cc59 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()
/external/openscreen/third_party/abseil/src/absl/strings/
Dsubstitute_test.cc59 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()
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/
Dsubstitute_test.cc59 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()
/external/webrtc/third_party/abseil-cpp/absl/strings/
Dsubstitute_test.cc59 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()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/objectid/
DObjectId825BTest.java28 protected java.util.ArrayList<Dec> dec;
30 public java.util.ArrayList<Dec> getDec() { in getDec()
33 public void setDec(java.util.ArrayList<Dec> dec) { in setDec()
109 static class Dec extends AbstractCond { } class in ObjectId825BTest
/external/python/cpython2/Modules/_ctypes/libffi/
Dmdate-sh134 Dec) month=December; nummonth=12;;
178 Dec) month=December; nummonth=12;;
202 Dec) nummonthtod=12;;

12345678910>>...23