| /kernel/linux/linux-6.6/lib/zstd/compress/ |
| D | zstd_ldm.h | 31 * Generates the sequences using the long distance match finder. 32 * Generates long range matching sequences in `sequences`, which parse a prefix 33 * of the source. `sequences` must be large enough to store every sequence, 40 * sequences. 43 ldmState_t* ldms, rawSeqStore_t* sequences, 49 * Compresses a block using the predefined sequences, along with a secondary 51 * secondary block compressor, and those sequences are interspersed with the 52 * predefined sequences. Returns the length of the last literals. 53 * Updates `rawSeqStore.pos` to indicate how many sequences have been consumed. 59 * 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 …]
|
| D | zstd_ldm.c | 506 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 …]
|
| D | zstd_compress_internal.h | 137 rawSeq* seq; /* The start of the sequences */ 141 size_t size; /* The number of sequences. <= capacity. */ 381 seqStore_t seqStore; /* sequences storage ptrs */ 383 rawSeq* ldmSequences; /* Storage for the ldm output sequences */ 385 rawSeqStore_t externSeqStore; /* Mutable reference to external sequences */ 473 * because it's the format it's stored in seqStore->sequences */ 603 assert((size_t)(seqStorePtr->sequences - seqStorePtr->sequencesStart) < seqStorePtr->maxNbSeq); in ZSTD_storeSeq() 626 seqStorePtr->longLengthPos = (U32)(seqStorePtr->sequences - seqStorePtr->sequencesStart); in ZSTD_storeSeq() 628 seqStorePtr->sequences[0].litLength = (U16)litLength; in ZSTD_storeSeq() 631 seqStorePtr->sequences[0].offBase = STORED_TO_OFFBASE(offBase_minus1); in ZSTD_storeSeq() [all …]
|
| /kernel/linux/linux-6.6/include/uapi/linux/ |
| D | rseq.h | 8 * Restartable sequences system call API 64 * Restartable sequences cpu_id_start field. Updated by the 77 * Restartable sequences cpu_id field. Updated by the kernel. 92 * Restartable sequences rseq_cs field. 115 * Restartable sequences flags field. 135 * Restartable sequences node_id field. Updated by the kernel. Read by 143 * Restartable sequences mm_cid field. Updated by the kernel. Read by
|
| /kernel/linux/linux-6.6/tools/testing/selftests/rseq/ |
| D | rseq-abi.h | 8 * Restartable sequences system call API 64 * Restartable sequences cpu_id_start field. Updated by the 77 * Restartable sequences cpu_id field. Updated by the kernel. 92 * Restartable sequences rseq_cs field. 131 * Restartable sequences flags field. 151 * Restartable sequences node_id field. Updated by the kernel. Read by 159 * Restartable sequences mm_cid field. Updated by the kernel. Read by
|
| /kernel/linux/linux-5.10/include/uapi/linux/ |
| D | rseq.h | 8 * Restartable sequences system call API 64 * Restartable sequences cpu_id_start field. Updated by the 77 * Restartable sequences cpu_id field. Updated by the kernel. 92 * Restartable sequences rseq_cs field. 115 * Restartable sequences flags field.
|
| /kernel/linux/linux-6.6/Documentation/ABI/testing/ |
| D | sysfs-class-chromeos-driver-cros-ec-lightbar | 32 sequences, you probably won’t see anything change because 49 This allows you to upload and run custom lightbar sequences. 55 The Pixel lightbar has a number of built-in sequences 68 sequences.
|
| /kernel/linux/linux-5.10/Documentation/ABI/testing/ |
| D | sysfs-class-chromeos-driver-cros-ec-lightbar | 32 sequences, you probably won’t see anything change because 49 This allows you to upload and run custom lightbar sequences. 55 The Pixel lightbar has a number of built-in sequences 68 sequences.
|
| /kernel/linux/linux-5.10/tools/testing/selftests/rseq/ |
| D | rseq-abi.h | 8 * Restartable sequences system call API 64 * Restartable sequences cpu_id_start field. Updated by the 77 * Restartable sequences cpu_id field. Updated by the kernel. 92 * Restartable sequences rseq_cs field. 131 * Restartable sequences flags field.
|
| D | rseq.h | 102 * by any thread which uses restartable sequences, before they start 103 * using restartable sequences, to ensure restartable sequences
|
| /kernel/linux/linux-6.6/fs/reiserfs/ |
| D | objectid.c | 34 * Each sequence of objectids in use (the odd sequences) is followed 35 * by a sequence of objectids not in use (the even sequences). We 36 * only need to record the last objectid in each of these sequences 37 * (both the odd and even sequences) in order to fully define the 38 * boundaries of the sequences. A consequence of allocating the first 82 * first two odd sequences into one sequence. If so, then the net in reiserfs_get_unused_objectid()
|
| /kernel/linux/linux-5.10/fs/reiserfs/ |
| D | objectid.c | 34 * Each sequence of objectids in use (the odd sequences) is followed 35 * by a sequence of objectids not in use (the even sequences). We 36 * only need to record the last objectid in each of these sequences 37 * (both the odd and even sequences) in order to fully define the 38 * boundaries of the sequences. A consequence of allocating the first 82 * first two odd sequences into one sequence. If so, then the net in reiserfs_get_unused_objectid()
|
| /kernel/linux/linux-5.10/drivers/net/wireless/ath/ |
| D | dfs_pri_detector.c | 298 list_add(&new_ps->head, &pde->sequences); in pseq_handler_create_sequences() 303 /* check new ts and add to all matching existing sequences */ 309 list_for_each_entry_safe(ps, ps2, &pde->sequences, head) { in pseq_handler_add_to_existing_seqs() 341 if (list_empty(&pde->sequences)) in pseq_handler_check_detection() 344 list_for_each_entry(ps, &pde->sequences, head) { in pseq_handler_check_detection() 358 /* free pulse queue and sequences list and give objects back to pools */ 363 list_for_each_entry_safe(ps, ps0, &pde->sequences, head) { in pri_detector_reset() 429 INIT_LIST_HEAD(&de->sequences); in pri_detector_init()
|
| D | dfs_pri_detector.h | 53 * @sequences: list_head holding potential pulse sequences 69 struct list_head sequences; member
|
| /kernel/linux/linux-6.6/drivers/net/wireless/ath/ |
| D | dfs_pri_detector.c | 297 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()
|
| D | dfs_pri_detector.h | 53 * @sequences: list_head holding potential pulse sequences 69 struct list_head sequences; member
|
| /kernel/linux/linux-5.10/include/linux/ |
| D | crc32.h | 16 * sequences of bytes, seq1 and seq2 with lengths len1 43 * sequences of bytes, seq1 and seq2 with lengths len1
|
| /kernel/linux/linux-6.6/include/linux/ |
| D | crc32.h | 16 * sequences of bytes, seq1 and seq2 with lengths len1 43 * sequences of bytes, seq1 and seq2 with lengths len1
|
| /kernel/linux/linux-5.10/arch/x86/lib/ |
| D | retpoline.S | 131 * Some generic notes on the untraining sequences: 144 * is, instruction sequences starting at srso_safe_ret() and 145 * the respective instruction sequences at retbleed_return_thunk()
|
| /kernel/linux/linux-5.10/Documentation/admin-guide/media/ |
| D | remote-controller.rst | 14 pulse/space sequences and then to scan codes, returning such codes to 16 sequences ("raw mode").
|
| /kernel/linux/linux-6.6/Documentation/admin-guide/media/ |
| D | remote-controller.rst | 14 pulse/space sequences and then to scan codes, returning such codes to 16 sequences ("raw mode").
|
| /kernel/linux/linux-5.10/drivers/gpu/drm/i915/gvt/ |
| D | edid.h | 126 /* I2C sequences cannot interleave. 127 * GMBUS and AUX_CH sequences cannot interleave.
|
| /kernel/linux/linux-6.6/drivers/gpu/drm/i915/gvt/ |
| D | edid.h | 126 /* I2C sequences cannot interleave. 127 * GMBUS and AUX_CH sequences cannot interleave.
|