/freebsd/sbin/hastd/ |
H A D | lzf.c | 131 int lit; in lzf_compress() local 144 lit = 0; op++; /* start run */ in lzf_compress() 176 if (op - !lit + 3 + 1 >= out_end) /* second the exact but rare test */ in lzf_compress() 179 op [- lit - 1] = lit - 1; /* stop run */ in lzf_compress() 180 op -= !lit; /* undo run if length is zero */ in lzf_compress() 228 lit = 0; op++; /* start run */ in lzf_compress() 269 lit++; *op++ = *ip++; in lzf_compress() 271 if (expect_false (lit == MAX_LIT)) in lzf_compress() 273 op [- lit in lzf_compress() [all...] |
/freebsd/crypto/openssh/ |
H A D | libcrux_mlkem768_sha3.h | 446 libcrux_ml_kem_types_MlKemPublicKey_15 lit; in libcrux_ml_kem_types_from_b6_da() local 447 memcpy(lit.value, copy_of_value, (size_t)1184U * sizeof(uint8_t)); in libcrux_ml_kem_types_from_b6_da() 448 return lit; in libcrux_ml_kem_types_from_b6_da() 499 libcrux_ml_kem_types_MlKemPrivateKey_55 lit; in libcrux_ml_kem_types_from_05_f2() local 500 memcpy(lit.value, copy_of_value, (size_t)2400U * sizeof(uint8_t)); in libcrux_ml_kem_types_from_05_f2() 501 return lit; in libcrux_ml_kem_types_from_05_f2() 562 libcrux_ml_kem_mlkem768_MlKem768Ciphertext lit; in libcrux_ml_kem_types_from_01_9f() local 563 memcpy(lit.value, copy_of_value, (size_t)1088U * sizeof(uint8_t)); in libcrux_ml_kem_types_from_01_9f() 564 return lit; in libcrux_ml_kem_types_from_01_9f() 1028 Eurydice_slice_uint8_t_1size_t__x2 lit; in libcrux_sha3_portable_keccak_split_at_mut_1() local [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/watchdog/ |
H A D | davinci-wdt.txt | 14 Davinci DM646x - https://www.ti.com/lit/ug/spruer5b/spruer5b.pdf 15 Keystone - https://www.ti.com/lit/ug/sprugv5a/sprugv5a.pdf
|
/freebsd/sys/contrib/device-tree/Bindings/iio/potentiostat/ |
H A D | lmp91000.txt | 3 LMP91000: https://www.ti.com/lit/ds/symlink/lmp91000.pdf 4 LMP91002: https://www.ti.com/lit/ds/symlink/lmp91002.pdf
|
/freebsd/sys/contrib/device-tree/Bindings/spi/ |
H A D | spi-davinci.txt | 4 Keystone 2 - https://www.ti.com/lit/ug/sprugp2a/sprugp2a.pdf 5 dm644x - https://www.ti.com/lit/ug/sprue32a/sprue32a.pdf 6 OMAP-L138/da830 - http://www.ti.com/lit/ug/spruh77a/spruh77a.pdf
|
/freebsd/contrib/diff/src/ |
H A D | ifdef.c | 394 scan_char_literal (char const *lit, char *valptr) in scan_char_literal() argument 396 register char const *p = lit; in scan_char_literal() 416 digits = p - lit - 2; in scan_char_literal()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | CNFFormula.cpp | 77 const Literal lit = Simplified.front(); in addClause() local 78 const Variable v = var(lit); in addClause() 79 if (isPosLit(lit)) in addClause()
|
/freebsd/sys/contrib/device-tree/Bindings/mtd/ |
H A D | davinci-nand.txt | 7 Davinci DM646x - https://www.ti.com/lit/ug/sprueq7c/sprueq7c.pdf 8 Kestone - https://www.ti.com/lit/ug/sprugz3a/sprugz3a.pdf
|
/freebsd/sys/contrib/device-tree/src/arm/ |
H A D | tps6507x.dtsi | 8 * http://www.ti.com/lit/ds/symlink/tps65070.pdf
|
H A D | tps65217.dtsi | 8 * http://www.ti.com/lit/ds/symlink/tps65217.pdf
|
H A D | tps65910.dtsi | 8 * http://www.ti.com/lit/ds/symlink/tps65910.pdf
|
/freebsd/sys/contrib/device-tree/Bindings/bus/ |
H A D | ti,da850-mstpri.txt | 8 OMAP-L138 (DA850) - http://www.ti.com/lit/ug/spruh82c/spruh82c.pdf
|
/freebsd/sys/contrib/device-tree/Bindings/iio/temperature/ |
H A D | tmp007.txt | 3 Link to datasheet: http://www.ti.com/lit/ds/symlink/tmp007.pdf
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | zstd_opt.c | 124 unsigned lit; in ZSTD_rescaleFreqs() local 127 for (lit=0; lit<=MaxLit; lit++) { in ZSTD_rescaleFreqs() 129 U32 const bitCost = HUF_getNbBits(optPtr->symbolCosts->huf.CTable, lit); in ZSTD_rescaleFreqs() 131 … optPtr->litFreq[lit] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/; in ZSTD_rescaleFreqs() 132 optPtr->litSum += optPtr->litFreq[lit]; in ZSTD_rescaleFreqs() 175 unsigned lit = MaxLit; in ZSTD_rescaleFreqs() local 176 …HIST_count_simple(optPtr->litFreq, &lit, src, srcSize); /* use raw first block to init statistic… in ZSTD_rescaleFreqs()
|
H A D | zstd_compress_internal.h | 454 assert(seqStorePtr->lit + litLength <= seqStorePtr->litStart + seqStorePtr->maxNbLit); in ZSTD_storeSeq() 461 ZSTD_copy16(seqStorePtr->lit, literals); in ZSTD_storeSeq() 463 … ZSTD_wildcopy(seqStorePtr->lit+16, literals+16, (ptrdiff_t)litLength-16, ZSTD_no_overlap); in ZSTD_storeSeq() 466 ZSTD_safecopyLiterals(seqStorePtr->lit, literals, litEnd, litLimit_w); in ZSTD_storeSeq() 468 seqStorePtr->lit += litLength; in ZSTD_storeSeq()
|
/freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
H A D | ti-da8xx-ddrctl.txt | 7 OMAP-L138 (DA850) - http://www.ti.com/lit/ug/spruh82c/spruh82c.pdf
|
H A D | ti-aemif.txt | 11 Davinci DM646x - http://www.ti.com/lit/ug/sprueq7c/sprueq7c.pdf 12 OMAP-L138 (DA850) - http://www.ti.com/lit/ug/spruh77a/spruh77a.pdf 13 Kestone - http://www.ti.com/lit/ug/sprugz3a/sprugz3a.pdf
|
/freebsd/sys/contrib/device-tree/Bindings/regulator/ |
H A D | lp872x.txt | 40 - LP8720: https://www.ti.com/lit/ds/symlink/lp8720.pdf 41 - LP8725: https://www.ti.com/lit/ds/symlink/lp8725.pdf
|
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | zstd_opt.c | 144 unsigned lit; in ZSTD_rescaleFreqs() local 147 for (lit=0; lit<=MaxLit; lit++) { in ZSTD_rescaleFreqs() 149 … U32 const bitCost = HUF_getNbBitsFromCTable(optPtr->symbolCosts->huf.CTable, lit); in ZSTD_rescaleFreqs() 151 … optPtr->litFreq[lit] = bitCost ? 1 << (scaleLog-bitCost) : 1 /*minimum to calculate cost*/; in ZSTD_rescaleFreqs() 152 optPtr->litSum += optPtr->litFreq[lit]; in ZSTD_rescaleFreqs() 195 unsigned lit = MaxLit; in ZSTD_rescaleFreqs() local 196 …HIST_count_simple(optPtr->litFreq, &lit, src, srcSize); /* use raw first block to init statistic… in ZSTD_rescaleFreqs()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-debuginfo-analyzer/ |
H A D | README.md | 13 ### Use a **lit test** instead of a **unit test** for the **logical readers**. 18 use ``lit`` tests to validate the **logical readers**. 25 into ``lit`` tests:
|
/freebsd/sys/contrib/device-tree/Bindings/iio/dac/ |
H A D | ti,dac7612.txt | 9 https://www.ti.com/lit/ds/sbas106/sbas106.pdf
|
/freebsd/sys/contrib/device-tree/Bindings/timer/ |
H A D | ti,keystone-timer.txt | 13 https://www.ti.com/lit/ug/sprugv5a/sprugv5a.pdf
|
/freebsd/sys/contrib/device-tree/Bindings/clock/ |
H A D | ti,cdce706.txt | 4 Reference: https://www.ti.com/lit/ds/symlink/cdce706.pdf
|
/freebsd/sys/contrib/device-tree/Bindings/mfd/ |
H A D | twl-family.txt | 29 * https://www.ti.com/lit/ds/symlink/twl6030.pdf
|
/freebsd/contrib/less/ |
H A D | lesskey_parse.c | 169 static constant char * char_string(char *buf, char ch, int lit) in char_string() 171 if (lit || (ch >= 0x20 && ch < 0x7f)) in char_string() 162 char_string(char * buf,int ch,int lit) char_string() argument
|