Home
last modified time | relevance | path

Searched full:sequences (Results 1 – 25 of 872) sorted by relevance

12345678910>>...35

/freebsd/contrib/mandoc/
H A Dmandoc_escape.322 .Nd parse roff escape sequences
76 Some escape sequences allow arbitrary characters
93 escape sequences that require in-place expansion, in particular
117 in turn contain other escape sequences,
127 need to skip escape sequences while scanning the input, see the files
149 to purge escape sequences from text.
157 For escape sequences taking an argument, the pointer
162 For escape sequences not taking an argument,
175 For sequences taking an argument, the function
220 Such ASCII character escape sequences can be rendered using the function
[all …]
H A Dmchars_alloc.3106 escape sequences.
129 escape sequences.
161 escape sequences.
194 escape sequences.
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_ldm.h34 * 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 …]
H A Dzstd_compress_sequences.c273 seqDef const* sequences, size_t nbSeq, int longOffsets) in ZSTD_encodeSequences_body() argument
291 BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]); in ZSTD_encodeSequences_body()
293 BIT_addBits(&blockStream, sequences[nbSeq-1].matchLength, ML_bits[mlCodeTable[nbSeq-1]]); in ZSTD_encodeSequences_body()
299 BIT_addBits(&blockStream, sequences[nbSeq-1].offset, extraBits); in ZSTD_encodeSequences_body()
302 BIT_addBits(&blockStream, sequences[nbSeq-1].offset >> extraBits, in ZSTD_encodeSequences_body()
305 BIT_addBits(&blockStream, sequences[nbSeq-1].offset, ofCodeTable[nbSeq-1]); in ZSTD_encodeSequences_body()
318 (unsigned)sequences[n].litLength, in ZSTD_encodeSequences_body()
319 (unsigned)sequences[n].matchLength + MINMATCH, in ZSTD_encodeSequences_body()
320 (unsigned)sequences[n].offset); in ZSTD_encodeSequences_body()
329 BIT_addBits(&blockStream, sequences[n].litLength, llBits); in ZSTD_encodeSequences_body()
[all …]
H A Dzstd_ldm.c430 ldmState_t* ldmState, rawSeqStore_t* sequences, in ZSTD_ldm_generateSequences() argument
449 assert(sequences->pos <= sequences->size); in ZSTD_ldm_generateSequences()
450 assert(sequences->size <= sequences->capacity); in ZSTD_ldm_generateSequences()
451 for (chunk = 0; chunk < nbChunks && sequences->size < sequences->capacity; ++chunk) { in ZSTD_ldm_generateSequences()
458 size_t const prevSize = sequences->size; in ZSTD_ldm_generateSequences()
480 * be split into two sequences. This condition holds when using in ZSTD_ldm_generateSequences()
485 /* 3. Generate the sequences for the chunk, and get newLeftoverSize. */ in ZSTD_ldm_generateSequences()
487 ldmState, sequences, params, chunkStart, chunkSize); in ZSTD_ldm_generateSequences()
495 if (prevSize < sequences->size) { in ZSTD_ldm_generateSequences()
496 sequences->seq[prevSize].litLength += (U32)leftoverSize; in ZSTD_ldm_generateSequences()
[all …]
H A Dzstd_compress_superblock.c160 * Builds entropy for the super-block sequences.
184 size_t const nbSeq = seqStorePtr->sequences - seqStorePtr->sequencesStart; in ZSTD_buildSuperBlockEntropy_sequences()
407 static size_t ZSTD_seqDecompressedSize(seqStore_t const* seqStore, const seqDef* sequences, size_t … in ZSTD_seqDecompressedSize() argument
408 const seqDef* const sstart = sequences; in ZSTD_seqDecompressedSize()
409 const seqDef* const send = sequences + nbSeq; in ZSTD_seqDecompressedSize()
427 * Compresses sequences section for a sub-block.
431 * We set entropyWritten=1 when we succeed in compressing the sequences.
433 * @return : compressed size of sequences section of a sub-block
438 const seqDef* sequences, size_t nbSeq, in ZSTD_compressSubBlock_sequences() argument
453 /* Sequences Header */ in ZSTD_compressSubBlock_sequences()
[all …]
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_ldm.h34 * 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 …]
H A Dzstd_compress_sequences.c296 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 …]
H A Dzstd_compress_superblock.c129 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 …]
H A Dzstd_ldm.c506 ldmState_t* ldmState, rawSeqStore_t* sequences, in ZSTD_ldm_generateSequences() argument
525 assert(sequences->pos <= sequences->size); in ZSTD_ldm_generateSequences()
526 assert(sequences->size <= sequences->capacity); in ZSTD_ldm_generateSequences()
527 for (chunk = 0; chunk < nbChunks && sequences->size < sequences->capacity; ++chunk) { in ZSTD_ldm_generateSequences()
534 size_t const prevSize = sequences->size; in ZSTD_ldm_generateSequences()
556 * be split into two sequences. This condition holds when using in ZSTD_ldm_generateSequences()
561 /* 3. Generate the sequences for the chunk, and get newLeftoverSize. */ in ZSTD_ldm_generateSequences()
563 ldmState, sequences, params, chunkStart, chunkSize); in ZSTD_ldm_generateSequences()
571 if (prevSize < sequences->size) { in ZSTD_ldm_generateSequences()
572 sequences->seq[prevSize].litLength += (U32)leftoverSize; in ZSTD_ldm_generateSequences()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAnalyzeImmediate.h34 /// 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.
/freebsd/usr.bin/col/
H A Dcol.169 Force unknown control sequences to be passed through unchanged.
72 will filter out any control sequences from the input other than those
80 understands both the escape sequences of the form escape-digit
86 The control sequences for carriage motion and their ASCII values
123 All unrecognized control characters and escape sequences are
/freebsd/usr.bin/env/
H A Denv.1135 option recognizes some special character escape sequences and
243 sequences which represent some action to take.
244 The character escape sequences are in backslash notation.
289 The sequences for <single-quote> and backslash are the only sequences
291 The other sequences have no special meaning inside a single-quoted
293 All escape sequences are recognized inside of a double-quoted string.
312 Those values will not be checked for any of the escape sequences as
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest-param-test.h205 // 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 …]
/freebsd/sys/dev/isci/scil/
H A Dsati_translator_sequence.h61 * various sequences of commands that occur in this translator.
74 // SCSI Primary Command (SPC) sequences.
102 //Log Sense Sequences
108 // SCSI Block Command (SBC) sequences.
135 // SCSI Task Requests sequences
303 * This field is utilized for sequences requiring data translation.
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/
H A DSequenceToOffsetTable.h1 //===-- SequenceToOffsetTable.h - Compress similar sequences ----*- C++ -*-===//
10 // sequences as one big array. Use the same memory when a sequence is a suffix
41 /// SequenceToOffsetTable - Collect a number of terminated sequences of T.
42 /// Compute the layout of a table that contains all the sequences, possibly by
61 // Keep sequences ordered according to SeqLess so suffixes are easy to find.
65 // Sequences added so far, with suffixes removed.
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64A53Fix835769.cpp9 // It works around it by inserting a nop instruction in code sequences that
204 // List of terminating instructions in matching sequences in runOnBasicBlock()
205 std::vector<MachineInstr*> Sequences; in runOnBasicBlock() local
227 Sequences.push_back(CurrInstr); in runOnBasicBlock()
235 LLVM_DEBUG(dbgs() << "Scan complete, " << Sequences.size() in runOnBasicBlock()
238 // Then update the basic block, inserting nops between the detected sequences. in runOnBasicBlock()
239 for (auto &MI : Sequences) { in runOnBasicBlock()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dedit_distance.h11 /// sequences, with each element of each sequence being analogous to a character
24 /// Determine the edit distance between two sequences.
30 /// \param Map A Functor to apply to each item of the sequences before
43 /// the given sequences into the other. If zero, the sequences are identical.
/freebsd/sys/contrib/dev/athk/
H A Ddfs_pri_detector.c297 list_add(&new_ps->head, &pde->sequences); in pseq_handler_create_sequences()
302 /* check new ts and add to all matching existing sequences */
308 list_for_each_entry_safe(ps, ps2, &pde->sequences, head) { in pseq_handler_add_to_existing_seqs()
340 if (list_empty(&pde->sequences)) in pseq_handler_check_detection()
343 list_for_each_entry(ps, &pde->sequences, head) { in pseq_handler_check_detection()
357 /* free pulse queue and sequences list and give objects back to pools */
362 list_for_each_entry_safe(ps, ps0, &pde->sequences, head) { in pri_detector_reset()
428 INIT_LIST_HEAD(&de->sequences); in pri_detector_init()
H A Ddfs_pri_detector.h53 * @sequences: list_head holding potential pulse sequences
69 struct list_head sequences; member
/freebsd/lib/libdpv/
H A Ddpv.3495 does not display the first character after a series of escaped escape-sequences
508 with color escape sequences anyway,
515 is set and NULL and either not use color escape sequences at that time or use
519 forcing interpretation of color sequences.
522 which renders the color escape sequences as plain text.
525 embedded "\\Z" sequences
/freebsd/usr.bin/seq/
H A Dseq.138 .Nd print sequences of numbers
97 can contain character escape sequences in backslash notation as
108 can contain character escape sequences in backslash notation as
119 can contain character escape sequences in backslash notation as
/freebsd/usr.bin/dpv/
H A Ddpv.1410 does not display the first character after a series of escaped escape-sequences
423 with color escape sequences anyway,
430 is set and NULL and either not use color escape sequences at that time or use
438 forcing interpretation of color sequences.
441 which renders the color escape sequences as plain text.
444 embedded "\\Z" sequences
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCloneDetection.cpp38 // If both sequences reside in different declarations, they can never contain in contains()
94 Sequences.push_back(StmtSequence(D->getBody(), D)); in analyzeCodeBody()
108 /// Returns true if and only if all sequences in \p OtherGroup are
112 // We have less sequences in the current group than we have in the other, in containsGroup()
333 /// Returns true if both sequences are clones of each other.
351 std::vector<CloneDetector::CloneGroup> &Sequences) { in constrain() argument
355 for (CloneDetector::CloneGroup &Group : Sequences) { in constrain()
406 // Sequences is the output parameter, so we copy our result into it. in constrain()
407 Sequences = Result; in constrain()
411 std::vector<CloneDetector::CloneGroup> &Sequences) { in constrain() argument
[all …]
/freebsd/lib/libfigpar/
H A Dstring_m.c149 * Expands escape sequences in a buffer pointed to by `source'. This function
150 * steps through each character, and converts escape sequences such as "\n",
157 * any escape sequences were converted but the amount of memory allocated does
160 * Interpreted sequences are:
173 * All other sequences are unescaped (ie. '\"' and '\#').

12345678910>>...35