Home
last modified time | relevance | path

Searched refs:lit (Results 1 – 25 of 74) sorted by relevance

123

/freebsd/sbin/hastd/
H A Dlzf.c131 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 Dlibcrux_mlkem768_sha3.h446 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 Ddavinci-wdt.txt14 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 Dlmp91000.txt3 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 Dspi-davinci.txt4 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 Difdef.c394 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 DCNFFormula.cpp77 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 Ddavinci-nand.txt7 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 Dtps6507x.dtsi8 * http://www.ti.com/lit/ds/symlink/tps65070.pdf
H A Dtps65217.dtsi8 * http://www.ti.com/lit/ds/symlink/tps65217.pdf
H A Dtps65910.dtsi8 * http://www.ti.com/lit/ds/symlink/tps65910.pdf
/freebsd/sys/contrib/device-tree/Bindings/bus/
H A Dti,da850-mstpri.txt8 OMAP-L138 (DA850) - http://www.ti.com/lit/ug/spruh82c/spruh82c.pdf
/freebsd/sys/contrib/device-tree/Bindings/iio/temperature/
H A Dtmp007.txt3 Link to datasheet: http://www.ti.com/lit/ds/symlink/tmp007.pdf
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_opt.c124 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 Dzstd_compress_internal.h454 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 Dti-da8xx-ddrctl.txt7 OMAP-L138 (DA850) - http://www.ti.com/lit/ug/spruh82c/spruh82c.pdf
H A Dti-aemif.txt11 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 Dlp872x.txt40 - 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 Dzstd_opt.c144 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 DREADME.md13 ### 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 Dti,dac7612.txt9 https://www.ti.com/lit/ds/sbas106/sbas106.pdf
/freebsd/sys/contrib/device-tree/Bindings/timer/
H A Dti,keystone-timer.txt13 https://www.ti.com/lit/ug/sprugv5a/sprugv5a.pdf
/freebsd/sys/contrib/device-tree/Bindings/clock/
H A Dti,cdce706.txt4 Reference: https://www.ti.com/lit/ds/symlink/cdce706.pdf
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Dtwl-family.txt29 * https://www.ti.com/lit/ds/symlink/twl6030.pdf
/freebsd/contrib/less/
H A Dlesskey_parse.c169 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

123