| /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 | 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 [all...] |
| zstd_compress_sequences.h | 45 seqDef const* sequences, size_t nbSeq, int longOffsets, int bmi2);
|
| zstd_ldm.c | 512 ldmState_t* ldmState, rawSeqStore_t* sequences, 531 assert(sequences->pos <= sequences->size); 532 assert(sequences->size <= sequences->capacity); 533 for (chunk = 0; chunk < nbChunks && sequences->size < sequences->capacity; ++chunk) { 540 size_t const prevSize = sequences->size; 562 * be split into two sequences. This condition holds when using 567 /* 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 | 145 rawSeq* seq; /* The start of the sequences */ 149 size_t size; /* The number of sequences. <= capacity. */ 156 size_t posInSrc; /* Number of bytes given by sequences provided so far */ 429 seqStore_t seqStore; /* sequences storage ptrs */ 431 rawSeq* ldmSequences; /* Storage for the ldm output sequences */ 433 rawSeqStore_t externSeqStore; /* Mutable reference to external sequences */ 533 * because it's the format it's stored in seqStore->sequences */ 664 assert((size_t)(seqStorePtr->sequences - seqStorePtr->sequencesStart) < seqStorePtr->maxNbSeq); 687 seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); 689 seqStorePtr->sequences[0].litLength = (U16)litLength [all...] |
| zstd_compress.c | 2223 /* reserve space for block-level external sequences */ 2255 /* sequences storage */ 2683 const seqDef* const sequences = seqStorePtr->sequencesStart; local 2687 U32 const nbSeq = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); 2692 U32 const llv = sequences[u].litLength; 2693 U32 const ofCode = ZSTD_highbit32(sequences[u].offBase); 2694 U32 const mlv = sequences[u].mlBase; 2732 * and size of the sequences statistics 2871 * compresses both literals and sequences 2890 const seqDef* const sequences = seqStorePtr->sequencesStart local [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"
|
| /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 | 1658 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local 1662 sequences[0].offset = 32; 1663 sequences[0].litLength = 32; 1664 sequences[0].matchLength = (1u << windowLog) - 32; 1665 sequences[0].rep = 0; 1669 sequences[i].offset = (1u << windowLog) - (FUZ_rand(&seed) % 8); 1670 sequences[i].litLength = FUZ_rand(&seed) & 7; 1671 sequences[i].matchLength = 10 - sequences[i].litLength; 1672 sequences[i].rep = 0 2176 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local 2224 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local 2256 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local 2312 ZSTD_Sequence* sequences = malloc(sizeof(ZSTD_Sequence) * kNbSequences); local [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...] |
| /src/external/bsd/zstd/dist/lib/common/ |
| zstd_internal.h | 296 seqDef* sequences; /* ptr to end of sequences */ member in struct:__anon8599 319 * Returns the ZSTD_sequenceLength for the given sequences. It handles the decoding of long sequences
|