Searched refs:literals (Results  1 – 10 of 10) sorted by relevance
| /Linux-v5.15/Documentation/staging/ | 
| D | lzo.rst | 23   opcode and on the number of literals copied by previous instruction. The 28     - the number of literals to copy, which is retained in variable "state" 59   After any instruction except the large literal copy, 0, 1, 2 or 3 literals 60   are copied before starting the next instruction. The number of literals that 63   literals were copied. This is the information stored in the <state> variable 64   in this implementation. This number of immediate literals to be copied is 111       18..21  : copy 0..3 literals 112                 state = (byte - 17) = 0..3  [ copy <state> literals ] 117                 state = 4 [ don't copy extra literals ] 123         Depends on the number of literals copied by the last instruction. [all …] 
 | 
| /Linux-v5.15/arch/xtensa/kernel/ | 
| D | mxhead.S | 30 	.begin  no-absolute-literals 62 	.end    no-absolute-literals
  | 
| D | head.S | 52 	.begin	no-absolute-literals 103 	.end	no-absolute-literals
  | 
| /Linux-v5.15/arch/xtensa/boot/boot-elf/ | 
| D | bootstrap.S | 29 	.begin  no-absolute-literals 77 	.end    no-absolute-literals
  | 
| D | Makefile | 10 KBUILD_AFLAGS += -mtext-section-literals
  | 
| /Linux-v5.15/arch/xtensa/ | 
| D | Makefile | 37 KBUILD_CFLAGS += -pipe -mlongcalls -mtext-section-literals 41 KBUILD_AFLAGS += -mlongcalls -mtext-section-literals
  | 
| /Linux-v5.15/lib/zstd/ | 
| D | zstd_opt.h | 101 FORCE_INLINE U32 ZSTD_getLiteralPrice(seqStore_t *ssPtr, U32 litLength, const BYTE *literals)  in ZSTD_getLiteralPrice()  argument 112 	if (ssPtr->cachedLiterals == literals) {  in ZSTD_getLiteralPrice() 123 			price -= ZSTD_highbit32(ssPtr->litFreq[literals[u]] + 1);  in ZSTD_getLiteralPrice() 126 			ssPtr->cachedLiterals = literals;  in ZSTD_getLiteralPrice() 142 FORCE_INLINE U32 ZSTD_getPrice(seqStore_t *seqStorePtr, U32 litLength, const BYTE *literals, U32 of…  in ZSTD_getPrice()  argument 149 …return ZSTD_getLiteralPrice(seqStorePtr, litLength, literals) + ZSTD_highbit32((U32)matchLength + …  in ZSTD_getPrice() 162 	return price + ZSTD_getLiteralPrice(seqStorePtr, litLength, literals) + seqStorePtr->factor;  in ZSTD_getPrice() 165 ZSTD_STATIC void ZSTD_updatePrice(seqStore_t *seqStorePtr, U32 litLength, const BYTE *literals, U32…  in ZSTD_updatePrice()  argument 172 		seqStorePtr->litFreq[literals[u]] += ZSTD_LITFREQ_ADD;  in ZSTD_updatePrice()
  | 
| D | compress.c | 621 		const BYTE *const literals = seqStorePtr->litStart;  in ZSTD_compressSequences_internal()  local 622 		size_t const litSize = seqStorePtr->lit - literals;  in ZSTD_compressSequences_internal() 623 		size_t const cSize = ZSTD_compressLiterals(zc, op, dstCapacity, literals, litSize);  in ZSTD_compressSequences_internal() 861 ZSTD_STATIC void ZSTD_storeSeq(seqStore_t *seqStorePtr, size_t litLength, const void *literals, U32…  in ZSTD_storeSeq()  argument 864 	ZSTD_wildcopy(seqStorePtr->lit, literals, litLength);  in ZSTD_storeSeq()
  | 
| /Linux-v5.15/Documentation/xtensa/ | 
| D | mmu.rst | 18   - LITBASE is zero (reset state, PC-relative literals); required to be PIC.
  | 
| /Linux-v5.15/Documentation/process/ | 
| D | deprecated.rst | 62 can warn if they might overflow. Though using literals for arguments as
  |