| /external/zstd/lib/compress/ |
| D | zstd_ldm.h | 34 * Generates the sequences using the long distance match finder. 35 * Generates long range matching sequences in `sequences`, which parse a prefix 36 * of the source. `sequences` must be large enough to store every sequence, 43 * sequences. 46 ldmState_t* ldms, rawSeqStore_t* sequences, 52 * Compresses a block using the predefined sequences, along with a secondary 54 * secondary block compressor, and those sequences are interspersed with the 55 * predefined sequences. Returns the length of the last literals. 56 * Updates `rawSeqStore.pos` to indicate how many sequences have been consumed. 62 * sequences can be any size, and may be longer than the block. In the case that [all …]
|
| D | zstd_compress_sequences.c | 296 seqDef const* sequences, size_t nbSeq, int longOffsets) in ZSTD_encodeSequences_body() argument 314 BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]); in ZSTD_encodeSequences_body() 316 BIT_addBits(&blockStream, sequences[nbSeq-1].mlBase, ML_bits[mlCodeTable[nbSeq-1]]); in ZSTD_encodeSequences_body() 322 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase, extraBits); in ZSTD_encodeSequences_body() 325 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase >> extraBits, in ZSTD_encodeSequences_body() 328 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase, ofCodeTable[nbSeq-1]); in ZSTD_encodeSequences_body() 341 (unsigned)sequences[n].litLength, in ZSTD_encodeSequences_body() 342 (unsigned)sequences[n].mlBase + MINMATCH, in ZSTD_encodeSequences_body() 343 (unsigned)sequences[n].offBase); in ZSTD_encodeSequences_body() 352 BIT_addBits(&blockStream, sequences[n].litLength, llBits); in ZSTD_encodeSequences_body() [all …]
|
| D | zstd_compress_superblock.c | 129 static size_t ZSTD_seqDecompressedSize(seqStore_t const* seqStore, const seqDef* sequences, size_t … in ZSTD_seqDecompressedSize() argument 130 const seqDef* const sstart = sequences; in ZSTD_seqDecompressedSize() 131 const seqDef* const send = sequences + nbSeq; in ZSTD_seqDecompressedSize() 150 * Compresses sequences section for a sub-block. 154 * We set entropyWritten=1 when we succeed in compressing the sequences. 156 * @return : compressed size of sequences section of a sub-block 161 const seqDef* sequences, size_t nbSeq, in ZSTD_compressSubBlock_sequences() argument 176 /* Sequences Header */ in ZSTD_compressSubBlock_sequences() 212 sequences, nbSeq, in ZSTD_compressSubBlock_sequences() 237 * sequences section body size is less than 3 bytes. in ZSTD_compressSubBlock_sequences() [all …]
|
| /external/rust/crates/unicode-bidi/src/ |
| D | prepare.rs | 34 /// Compute the set of isolating run sequences. 40 /// Note: This function does *not* return the sequences in order by their first characters. 49 // Compute the set of isolating run sequences. in isolating_run_sequences() 51 let mut sequences = Vec::with_capacity(runs.len()); in isolating_run_sequences() localVariable 79 sequences.push(sequence); in isolating_run_sequences() 82 // Pop any remaning sequences off the stack. in isolating_run_sequences() 83 sequences.extend(stack.into_iter().rev().filter(|seq| !seq.is_empty())); in isolating_run_sequences() 87 sequences in isolating_run_sequences() 283 let mut sequences = isolating_run_sequences(para_level, classes, &Level::vec(levels)); in test_isolating_run_sequences() localVariable 284 sequences.sort_by(|a, b| a.runs[0].clone().cmp(b.runs[0].clone())); in test_isolating_run_sequences() [all …]
|
| /external/rust/crates/anes/src/ |
| D | lib.rs | 1 //! # ANSI Escape Sequences provider & parser 3 //! ## Sequences provider 5 //! The `anes` crate provides ANSI escape sequences you can use to control the terminal 10 //! trait. It means that these sequences can be used in macros like 14 //! Ask if you need more sequences or use the [`sequence!`](macro.sequence.html) macro to create 15 //! your own sequences. 20 //! Not all ANSI escape sequences are supported by all terminals. You can use the 47 //! ## Sequences parser 58 pub use self::sequences::{ 76 mod sequences; module
|
| /external/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/tensorflow/third_party/absl/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/webrtc/third_party/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/openscreen/third_party/abseil/src/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/libtextclassifier/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/angle/third_party/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/cronet/third_party/abseil-cpp/absl/strings/ |
| D | escaping.h | 41 // escape sequences (https://en.cppreference.com/w/cpp/language/escape) into 44 // The following unescape sequences can be handled: 46 // * ASCII escape sequences ('\n','\r','\\', etc.) to their ASCII equivalents 47 // * Octal escape sequences ('\nnn') to byte nnn. The unescaped value must 50 // * Hexadecimal escape sequences ('\xnn') to byte nn. While an arbitrary 54 // * Unicode escape sequences ('\unnnn' for exactly four hex digits or 81 // Escapes a 'src' string using C-style escapes sequences 83 // non-printable/non-whitespace bytes as octal sequences (e.g. "\377"). 94 // Escapes a 'src' string using C-style escape sequences, escaping 95 // other non-printable/non-whitespace bytes as hexadecimal sequences (e.g. [all …]
|
| /external/webrtc/common_video/h264/ |
| D | h264_common.cc | 26 std::vector<NaluIndex> sequences; in FindNaluIndices() local 28 return sequences; in FindNaluIndices() 44 auto it = sequences.rbegin(); in FindNaluIndices() 45 if (it != sequences.rend()) in FindNaluIndices() 48 sequences.push_back(index); in FindNaluIndices() 58 auto it = sequences.rbegin(); in FindNaluIndices() 59 if (it != sequences.rend()) in FindNaluIndices() 62 return sequences; in FindNaluIndices()
|
| /external/python/cpython2/Doc/library/ |
| D | difflib.rst | 17 This module provides classes and functions for comparing sequences. It 24 This is a flexible class for comparing pairs of sequences of any type, so long 30 idea is then applied recursively to the pieces of the sequences to the left and 32 sequences, but does tend to yield matches that "look right" to people. 37 complicated way on how many elements the sequences have in common; best case 53 This is a class for comparing sequences of lines of text, and producing 55 both to compare sequences of lines, and to compare sequences of characters 67 | ``' '`` | line common to both sequences | 74 the sequences contain tab characters. 190 sequences against which to match *word* (typically a list of strings). [all …]
|
| /external/python/cpython3/Doc/library/ |
| D | difflib.rst | 20 This module provides classes and functions for comparing sequences. It 29 This is a flexible class for comparing pairs of sequences of any type, so long 37 idea is then applied recursively to the pieces of the sequences to the left and 39 sequences, but does tend to yield matches that "look right" to people. 44 complicated way on how many elements the sequences have in common; best case 61 This is a class for comparing sequences of lines of text, and producing 63 both to compare sequences of lines, and to compare sequences of characters 75 | ``' '`` | line common to both sequences | 82 the sequences contain tab characters. 200 sequences against which to match *word* (typically a list of strings). [all …]
|
| /external/llvm/unittests/Support/ |
| D | ConvertUTFTest.cpp | 213 // 1-byte sequences in TEST() 221 // 2-byte sequences in TEST() 240 // 3-byte sequences in TEST() 268 // 4-byte sequences in TEST() 447 // Start bytes of 2-byte sequences (0xc0--0xdf). in TEST() 484 // Start bytes of 3-byte sequences (0xe0--0xef). in TEST() 506 // Start bytes of 4-byte sequences (0xf0--0xf7). in TEST() 521 // Start bytes of 5-byte sequences (0xf8--0xfb). in TEST() 533 // Start bytes of 6-byte sequences (0xfc--0xfd). in TEST() 583 // Sequences with one continuation byte missing in TEST() [all …]
|
| /external/llvm/lib/Target/Mips/ |
| D | MipsAnalyzeImmediate.h | 32 /// AddInstr - Add I to all instruction sequences in SeqLs. 35 /// GetInstSeqLsADDiu - Get instruction sequences which end with an ADDiu to 39 /// GetInstSeqLsORi - Get instrutcion sequences which end with an ORi to 43 /// GetInstSeqLsSLL - Get instruction sequences which end with a SLL to 47 /// GetInstSeqLs - Get instruction sequences to load immediate Imm.
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
| D | MipsAnalyzeImmediate.h | 34 /// AddInstr - Add I to all instruction sequences in SeqLs. 37 /// GetInstSeqLsADDiu - Get instruction sequences which end with an ADDiu to 41 /// GetInstSeqLsORi - Get instrutcion sequences which end with an ORi to 45 /// GetInstSeqLsSLL - Get instruction sequences which end with a SLL to 49 /// GetInstSeqLs - Get instruction sequences to load immediate Imm.
|
| /external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/debug/ |
| D | DebugSequenceOverheadBenchmark.kt | 36 val sequences = ArrayDeque<Sequence<Node>>() in generateRecursiveSequence() constant 37 sequences.addLast(initialIterator.asSequence()) in generateRecursiveSequence() 38 while (sequences.isNotEmpty()) { in generateRecursiveSequence() 39 val currentSequence = sequences.removeFirst() in generateRecursiveSequence() 43 sequences.addLast(children(node)) in generateRecursiveSequence()
|
| /external/guava/guava-tests/benchmark/com/google/common/hash/ |
| D | HashStringBenchmark.java | 39 // 1-byte UTF-8 sequences - "American" ASCII text in decode() 42 // Mostly 1-byte UTF-8 sequences, mixed with occasional 2-byte in decode() 43 // sequences - "Western European" text in decode() 49 // Mostly 2-byte UTF-8 sequences - "European" text in decode() 52 // Mostly 3-byte UTF-8 sequences - "Asian" text in decode() 55 // Mostly 4-byte UTF-8 sequences - "rare exotic" text in decode()
|
| /external/guava/android/guava-tests/benchmark/com/google/common/hash/ |
| D | HashStringBenchmark.java | 39 // 1-byte UTF-8 sequences - "American" ASCII text in decode() 42 // Mostly 1-byte UTF-8 sequences, mixed with occasional 2-byte in decode() 43 // sequences - "Western European" text in decode() 49 // Mostly 2-byte UTF-8 sequences - "European" text in decode() 52 // Mostly 3-byte UTF-8 sequences - "Asian" text in decode() 55 // Mostly 4-byte UTF-8 sequences - "rare exotic" text in decode()
|
| /external/caliper/examples/src/main/java/examples/ |
| D | Utf8Benchmark.java | 50 // 1-byte UTF-8 sequences - "American" ASCII text in decode() 53 // Mostly 1-byte UTF-8 sequences, mixed with occasional 2-byte in decode() 54 // sequences - "Western European" text in decode() 60 // Mostly 2-byte UTF-8 sequences - "European" text in decode() 63 // Mostly 3-byte UTF-8 sequences - "Asian" text in decode() 66 // Mostly 4-byte UTF-8 sequences - "rare exotic" text in decode()
|
| /external/cronet/third_party/boringssl/src/third_party/googletest/include/gtest/ |
| D | gtest-param-test.h | 205 // Range() returns generators providing sequences of values in a range. 215 // * The generated sequences never include end. For example, Range(1, 5) 224 // Elements in the resulting sequences will also have that type. 225 // * Condition start < end must be satisfied in order for resulting sequences 244 // - returns a generator producing sequences with elements from 247 // - returns a generator producing sequences with elements from 250 // - returns a generator producing sequences with elements from 319 // - returns a generator producing sequences with elements v1, v2, ..., vN. 343 // - returns a generator producing sequences with elements {false, true}. 363 // Combine() allows the user to combine two or more sequences to produce [all …]
|
| /external/cronet/third_party/googletest/src/googletest/include/gtest/ |
| D | gtest-param-test.h | 205 // Range() returns generators providing sequences of values in a range. 215 // * The generated sequences never include end. For example, Range(1, 5) 224 // Elements in the resulting sequences will also have that type. 225 // * Condition start < end must be satisfied in order for resulting sequences 244 // - returns a generator producing sequences with elements from 247 // - returns a generator producing sequences with elements from 250 // - returns a generator producing sequences with elements from 319 // - returns a generator producing sequences with elements v1, v2, ..., vN. 343 // - returns a generator producing sequences with elements {false, true}. 361 // Combine() allows the user to combine two or more sequences to produce [all …]
|