Home
last modified time | relevance | path

Searched refs:sequences (Results 1 – 25 of 186) sorted by relevance

12345678

/freebsd-12-stable/sys/contrib/zstd/lib/compress/
Dzstd_ldm.c465 ldmState_t* ldmState, rawSeqStore_t* sequences, in ZSTD_ldm_generateSequences() argument
484 assert(sequences->pos <= sequences->size); in ZSTD_ldm_generateSequences()
485 assert(sequences->size <= sequences->capacity); in ZSTD_ldm_generateSequences()
486 for (chunk = 0; chunk < nbChunks && sequences->size < sequences->capacity; ++chunk) { in ZSTD_ldm_generateSequences()
493 size_t const prevSize = sequences->size; in ZSTD_ldm_generateSequences()
514 ldmState, sequences, params, chunkStart, chunkSize); in ZSTD_ldm_generateSequences()
522 if (prevSize < sequences->size) { in ZSTD_ldm_generateSequences()
523 sequences->seq[prevSize].litLength += (U32)leftoverSize; in ZSTD_ldm_generateSequences()
Dzstd_compress_internal.h300 seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); in ZSTD_storeSeq()
302 seqStorePtr->sequences[0].litLength = (U16)litLength; in ZSTD_storeSeq()
305 seqStorePtr->sequences[0].offset = offsetCode + 1; in ZSTD_storeSeq()
311 seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); in ZSTD_storeSeq()
313 seqStorePtr->sequences[0].matchLength = (U16)mlBase; in ZSTD_storeSeq()
315 seqStorePtr->sequences++; in ZSTD_storeSeq()
Dzstd_compress.c1448 const seqDef* const sequences = seqStorePtr->sequencesStart; in ZSTD_seqToCodes() local
1452 U32 const nbSeq = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); in ZSTD_seqToCodes()
1455 U32 const llv = sequences[u].litLength; in ZSTD_seqToCodes()
1456 U32 const mlv = sequences[u].matchLength; in ZSTD_seqToCodes()
1458 ofCodeTable[u] = (BYTE)ZSTD_highbit32(sequences[u].offset); in ZSTD_seqToCodes()
1560 seqDef const* sequences, size_t nbSeq, int longOffsets) in ZSTD_encodeSequences_body() argument
1573 BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]); in ZSTD_encodeSequences_body()
1575 BIT_addBits(&blockStream, sequences[nbSeq-1].matchLength, ML_bits[mlCodeTable[nbSeq-1]]); in ZSTD_encodeSequences_body()
1581 BIT_addBits(&blockStream, sequences[nbSeq-1].offset, extraBits); in ZSTD_encodeSequences_body()
1584 BIT_addBits(&blockStream, sequences[nbSeq-1].offset >> extraBits, in ZSTD_encodeSequences_body()
[all …]
Dzstd_ldm.h41 ldmState_t* ldms, rawSeqStore_t* sequences,
/freebsd-12-stable/contrib/googletest/googletest/include/gtest/
Dgtest-param-test.h.pump211 // Range() returns generators providing sequences of values in a range.
221 // * The generated sequences never include end. For example, Range(1, 5)
230 // Elements in the resulting sequences will also have that type.
231 // * Condition start < end must be satisfied in order for resulting sequences
250 // - returns a generator producing sequences with elements from
253 // - returns a generator producing sequences with elements from
256 // - returns a generator producing sequences with elements from
326 // - returns a generator producing sequences with elements v1, v2, ..., vN.
355 // - returns a generator producing sequences with elements {false, true}.
376 // Combine() allows the user to combine two or more sequences to produce
[all …]
/freebsd-12-stable/sys/teken/libteken/
DMakefile33 teken_state.h: ${SRCDIR}/gensequences ${SRCDIR}/sequences
34 awk -f ${SRCDIR}/gensequences ${SRCDIR}/sequences > ${.TARGET}
/freebsd-12-stable/sys/contrib/zstd/doc/educational_decoder/
Dzstd_decompress.c347 sequence_command_t **const sequences);
353 const sequence_command_t *const sequences,
708 sequence_command_t *sequences = NULL; in decompress_block() local
710 decode_sequences(ctx, in, &sequences); in decompress_block()
713 execute_sequences(ctx, out, literals, literals_size, sequences, in decompress_block()
716 free(sequences); in decompress_block()
1028 sequence_command_t *const sequences,
1037 sequence_command_t **const sequences) { in decode_sequences() argument
1055 *sequences = NULL; in decode_sequences()
1068 *sequences = malloc(num_sequences * sizeof(sequence_command_t)); in decode_sequences()
[all …]
/freebsd-12-stable/contrib/tcp_wrappers/
DBanners.Makefile12 # sequences as described in the hosts_access.5 manual page (`nroff -man'
13 # format). The sequences will be expanded while the banner message is
/freebsd-12-stable/contrib/gcc/config/mips/
Dpredicates.md177 (1) The move expanders should split complex load sequences into
181 (2) The target of pre-reload load sequences should not be used
187 complex load sequences, we would want to be able to split the
188 sequences before reload as well, so that the pre-reload scheduler
/freebsd-12-stable/contrib/file/magic/Magdir/
Dmodem19 # maximal 7 0-bits for pixel sequences or 11 0-bits for EOL in G3
45 # maximal 7 0-bits for pixel sequences or 11 0-bits for EOL in G3
Dbioinformatics24 >0x04 lelong >1 \b, with %d reference sequences
47 >>&(0x04) lelong >0 \b, with %d reference sequences
55 >0x04 lelong >0 \b, with %d reference sequences
/freebsd-12-stable/contrib/less/
DNEWS156 * Fix erroneous binary file warning when UTF-8 file contains ANSI SGR sequences.
263 * Fix bugs handling SGR sequences in Win32.
371 * Color escape sequences are now supported in WIN32 build.
375 * Fix search bug when using -R and text contains ANSI color escape sequences.
398 * Support CSI escape sequences, like SGR escape sequences.
406 * Fix crash when searching text containing certain invalid UTF-8 sequences.
442 * Don't warn that file is binary if it merely contains ANSI color sequences
572 * Searching works better with ANSI (SGR) escape sequences.
573 ANSI color escape sequences are now supported in the MS-DOS (DJGPP) version.
653 normal text and ANSI color escape sequences.
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Symbol/
DLineTable.cpp25 std::vector<std::unique_ptr<LineSequence>> &&sequences) in LineTable() argument
28 llvm::stable_sort(sequences, less_than_bp); in LineTable()
29 for (const auto &sequence : sequences) { in LineTable()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-strings/
DOpts.td13 defm bytes : Eq<"bytes", "Print sequences of the specified length">;
/freebsd-12-stable/crypto/openssl/doc/man3/
DASN1_STRING_print_ex.pod47 interprets UTF8 sequences.
63 format first. If the terminal supports the display of UTF8 sequences then this
/freebsd-12-stable/sys/teken/
Dsequences26 # $FreeBSD: stable/12/sys/teken/sequences 334316 2018-05-29 08:41:44Z dumbbell $
104 # Cons25 compatibility sequences
/freebsd-12-stable/usr.bin/calendar/
Dcalendar.h150 extern const char *sequences[];
Dlocale.c63 const char *sequences[] = { variable
/freebsd-12-stable/sys/contrib/zstd/tests/
Ddecodecorpus.c806 const seqDef* const sequences = seqStorePtr->sequencesStart; in writeSequences() local
941 BIT_addBits(&blockStream, sequences[nbSeq-1].litLength, LL_bits[llCodeTable[nbSeq-1]]); in writeSequences()
943 BIT_addBits(&blockStream, sequences[nbSeq-1].matchLength, ML_bits[mlCodeTable[nbSeq-1]]); in writeSequences()
945 BIT_addBits(&blockStream, sequences[nbSeq-1].offset, ofCodeTable[nbSeq-1]); in writeSequences()
963 BIT_addBits(&blockStream, sequences[n].litLength, llBits); in writeSequences()
965 BIT_addBits(&blockStream, sequences[n].matchLength, mlBits); in writeSequences()
967 BIT_addBits(&blockStream, sequences[n].offset, ofBits); /* 31 */ in writeSequences()
/freebsd-12-stable/sys/contrib/zstd/lib/common/
Dzstd_internal.h224 seqDef* sequences; member
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
DSymbolFileBreakpad.cpp712 std::vector<std::unique_ptr<LineSequence>> sequences; in ParseLineTableAndSupportFiles() local
722 sequences.push_back(std::move(line_seq_up)); in ParseLineTableAndSupportFiles()
749 data.line_table_up = std::make_unique<LineTable>(&cu, std::move(sequences)); in ParseLineTableAndSupportFiles()
/freebsd-12-stable/crypto/heimdal/lib/wind/
Drfc4013.txt177 few character sequences. These sequences, however, do not appear in
197 Unicode code point sequences as possible prepared strings, that
/freebsd-12-stable/contrib/ee/
DREADME.ee61 on the screen, and should have arrow keys that send unique sequences
65 case the arrow keys do not transmit unique sequences, motion operations are
/freebsd-12-stable/contrib/gcc/config/arm/
Dcrtn.asm43 # sequences here, it is just not worth it. Instead keep things
/freebsd-12-stable/usr.bin/col/
DREADME11 -p force unknown control sequences to be passed through unchanged

12345678