| /src/external/bsd/zstd/dist/contrib/match_finders/ |
| zstd_edist.h | 25 * sequences to identify the regions within two files where they differ. 61 * Will populate the provided ZSTD_Sequence buffer with sequences 64 * @return : the number of sequences found */ 65 size_t ZSTD_eDist_genSequences(ZSTD_Sequence* sequences,
|
| zstd_edist.c | 440 static size_t ZSTD_eDist_convertMatchesToSequences(ZSTD_Sequence* sequences, 454 sequences[nbSequences].offset = offset; 455 sequences[nbSequences].litLength = litLength; 456 sequences[nbSequences].matchLength = matchLength; 529 size_t ZSTD_eDist_genSequences(ZSTD_Sequence* sequences, 552 nbSequences = ZSTD_eDist_convertMatchesToSequences(sequences, &state);
|
| README.md | 18 * sequences to identify the regions within two files where they differ.
|
| /src/external/bsd/zstd/dist/lib/compress/ |
| zstd_compress_sequences.c | 296 SeqDef const* sequences, size_t nbSeq, int longOffsets) 314 BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]); 316 BIT_addBits(&blockStream, sequences[nbSeq-1].mlBase, ML_bits[mlCodeTable[nbSeq-1]]); 322 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase, extraBits); 325 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase >> extraBits, 328 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase, ofCodeTable[nbSeq-1]); 341 (unsigned)sequences[n].litLength, 342 (unsigned)sequences[n].mlBase + MINMATCH, 343 (unsigned)sequences[n].offBase); 352 BIT_addBits(&blockStream, sequences[n].litLength, llBits) [all...] |
| zstd_ldm.h | 30 * Generates the sequences using the long distance match finder. 31 * Generates long range matching sequences in `sequences`, which parse a prefix 32 * of the source. `sequences` must be large enough to store every sequence, 39 * sequences. 42 ldmState_t* ldms, RawSeqStore_t* sequences, 48 * Compresses a block using the predefined sequences, along with a secondary 50 * secondary block compressor, and those sequences are interspersed with the 51 * predefined sequences. Returns the length of the last literals. 52 * Updates `rawSeqStore.pos` to indicate how many sequences have been consumed [all...] |
| zstd_compress_sequences.h | 46 SeqDef const* sequences, size_t nbSeq, int longOffsets, int bmi2);
|
| zstd_ldm.c | 527 ldmState_t* ldmState, RawSeqStore_t* sequences, 546 assert(sequences->pos <= sequences->size); 547 assert(sequences->size <= sequences->capacity); 548 for (chunk = 0; chunk < nbChunks && sequences->size < sequences->capacity; ++chunk) { 555 size_t const prevSize = sequences->size; 577 * be split into two sequences. This condition holds when using 582 /* 3. Generate the sequences for the chunk, and get newLeftoverSize. * [all...] |
| zstd_compress_superblock.c | 130 const SeqDef* sequences, size_t nbSeqs, 137 const ZSTD_SequenceLength seqLen = ZSTD_getSequenceLength(seqStore, sequences+n); 141 DEBUGLOG(5, "ZSTD_seqDecompressedSize: %u sequences from %p: %u literals + %u matchlength", 142 (unsigned)nbSeqs, (const void*)sequences, 153 * Compresses sequences section for a sub-block. 157 * We set entropyWritten=1 when we succeed in compressing the sequences. 159 * @return : compressed size of sequences section of a sub-block 165 const SeqDef* sequences, size_t nbSeq, 180 /* Sequences Header */ 216 sequences, nbSeq [all...] |
| zstd_compress_internal.h | 83 * Sequences * 100 SeqDef* sequences; /* ptr to end of sequences */ member in struct:__anon59 123 * Returns the ZSTD_SequenceLength for the given sequences. It handles the decoding of long sequences 206 rawSeq* seq; /* The start of the sequences */ 210 size_t size; /* The number of sequences. <= capacity. */ 401 * @postBlockSplitter executes split analysis after sequences are produced, 403 * @preBlockSplitter_level splits before knowing sequences, 495 SeqStore_t seqStore; /* sequences storage ptrs * [all...] |
| /src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| xgettext-csharp-3 | 26 // Octal escape sequences are not recognized, except for \0. 28 // Escape sequences in strings. 38 // In verbatim string literals, no escape sequences are recognized. 117 #. Octal escape sequences are not recognized, except for \0. 122 #. Escape sequences in strings. 146 #. In verbatim string literals, no escape sequences are recognized.
|
| /src/usr.bin/make/unit-tests/ |
| deptgt-makeflags.mk | 31 # quotes and escape sequences from the backslash. 57 # Escape sequences like \n are interpreted. 84 # Now do the same for the other escape sequences; see Substring_Words.
|
| varmod-subst.mk | 11 WORDS= sequences of letters 26 .if ${WORDS:S,f,*,1} != "sequences o* letters" 48 .if ${WORDS:S,^of,with,} != "sequences with letters" 59 .if ${WORDS:S,f$,r,} != "sequences or letters" 70 .if ${WORDS:S,of$,,} != "sequences letters" 81 .if ${WORDS:S,^of$,,} != "sequences letters"
|
| varmod-defined.mk | 40 # Any other backslash sequences are preserved.
|
| /src/external/bsd/zstd/dist/doc/educational_decoder/ |
| zstd_decompress.c | 333 /// sequences. The high-level functions roughly follow the outline of the 355 // Decode the sequences part of a block 357 sequence_command_t **const sequences); 359 // Execute the decoded sequences on the literals block 363 const sequence_command_t *const sequences, 675 // Part 2: decode the sequences block 676 sequence_command_t *sequences = NULL; local 678 decode_sequences(ctx, in, &sequences); 681 execute_sequences(ctx, out, literals, literals_size, sequences, 684 free(sequences); [all...] |
| /src/external/bsd/zstd/dist/tests/ |
| zstreamtest.c | 1659 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local 1663 sequences[0].offset = 32; 1664 sequences[0].litLength = 32; 1665 sequences[0].matchLength = (1u << windowLog) - 32; 1666 sequences[0].rep = 0; 1670 sequences[i].offset = (1u << windowLog) - (FUZ_rand(&seed) % 8); 1671 sequences[i].litLength = FUZ_rand(&seed) & 7; 1672 sequences[i].matchLength = 10 - sequences[i].litLength; 1673 sequences[i].rep = 0 2177 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local 2225 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local 2257 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local 2313 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local [all...] |
| decodecorpus.c | 688 * number of sequences we can have */ 731 /* including i+1 != numSequences because the last sequences has to adhere to predetermined contentSize */ 845 const SeqDef* const sequences = seqStorePtr->sequencesStart; local 856 /* Sequences Header */ 970 /* Encoding Sequences */ 984 BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]); 986 BIT_addBits(&blockStream, sequences[nbSeq-1].mlBase, ML_bits[mlCodeTable[nbSeq-1]]); 988 BIT_addBits(&blockStream, sequences[nbSeq-1].offBase, ofCodeTable[nbSeq-1]); 1006 BIT_addBits(&blockStream, sequences[n].litLength, llBits); 1008 BIT_addBits(&blockStream, sequences[n].mlBase, mlBits) [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/aarch64/ |
| crtn.S | 35 # sequences here, it is just not worth it. Instead keep things
|
| /src/external/gpl3/gcc/dist/libgcc/config/arm/ |
| crtn.S | 48 # sequences here, it is just not worth it. Instead keep things
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/aarch64/ |
| crtn.S | 39 # sequences here, it is just not worth it. Instead keep things
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/arm/ |
| crtn.S | 48 # sequences here, it is just not worth it. Instead keep things
|
| /src/external/gpl3/binutils/dist/bfd/ |
| dwarf2.c | 1819 struct line_sequence* sequences; member in struct:line_info_table 1913 struct line_sequence* seq = table->sequences; 1973 seq->prev_sequence = table->sequences; 1976 table->sequences = seq; 2375 /* Compare function for line sequences. */ 2452 /* Sort the line sequences for quick lookup. */ 2458 struct line_sequence *sequences; local 2467 /* Allocate space for an array of sequences. */ 2469 sequences = (struct line_sequence *) bfd_alloc (table->abfd, amt); 2470 if (sequences == NULL [all...] |
| /src/external/gpl3/binutils.old/dist/bfd/ |
| dwarf2.c | 1819 struct line_sequence* sequences; member in struct:line_info_table 1913 struct line_sequence* seq = table->sequences; 1973 seq->prev_sequence = table->sequences; 1976 table->sequences = seq; 2375 /* Compare function for line sequences. */ 2452 /* Sort the line sequences for quick lookup. */ 2458 struct line_sequence *sequences; local 2467 /* Allocate space for an array of sequences. */ 2469 sequences = (struct line_sequence *) bfd_alloc (table->abfd, amt); 2470 if (sequences == NULL [all...] |
| /src/external/gpl3/gdb.old/dist/bfd/ |
| dwarf2.c | 1819 struct line_sequence* sequences; member in struct:line_info_table 1913 struct line_sequence* seq = table->sequences; 1973 seq->prev_sequence = table->sequences; 1976 table->sequences = seq; 2375 /* Compare function for line sequences. */ 2452 /* Sort the line sequences for quick lookup. */ 2458 struct line_sequence *sequences; local 2467 /* Allocate space for an array of sequences. */ 2469 sequences = (struct line_sequence *) bfd_alloc (table->abfd, amt); 2470 if (sequences == NULL [all...] |
| /src/external/gpl3/gdb/dist/bfd/ |
| dwarf2.c | 1819 struct line_sequence* sequences; member in struct:line_info_table 1913 struct line_sequence* seq = table->sequences; 1973 seq->prev_sequence = table->sequences; 1976 table->sequences = seq; 2375 /* Compare function for line sequences. */ 2452 /* Sort the line sequences for quick lookup. */ 2458 struct line_sequence *sequences; local 2467 /* Allocate space for an array of sequences. */ 2469 sequences = (struct line_sequence *) bfd_alloc (table->abfd, amt); 2470 if (sequences == NULL [all...] |
| /src/external/bsd/zstd/dist/lib/decompress/ |
| zstd_decompress_block.c | 724 "extraneous data present in the Sequences section"); 830 * should be fast for a single long sequence, but can be slow for several short sequences. 903 * to be optimized for many small sequences, since those fall into ZSTD_execSequence(). 1516 /* If there are more sequences, they will need to read literals from litExtraBuffer; copy over the remainder from dst and update litPtr and litEnd */ 1519 DEBUGLOG(6, "There are %i sequences left, and %zu/%zu literals left in buffer", nbSeq, leftoverLit, sequence.litLength); 1632 /* Regen sequences */ 1750 /* Regen sequences */ 1755 seq_t sequences[STORED_SEQS]; local 1776 sequences[seqNb] = sequence; 1783 if (dctx->litBufferLocation == ZSTD_split && litPtr + sequences[(seqNb - ADVANCED_SEQS) & STORED_SEQS_MASK].litLength > dctx->litBufferEnd) [all...] |