Home
last modified time | relevance | path

Searched refs:hold (Results 1 – 25 of 305) sorted by relevance

12345678910>>...13

/linux/lib/zlib_inflate/
H A Dinffast.c82 unsigned long hold; /* local strm->hold */ in inflate_fast() local
109 hold = state->hold; in inflate_fast()
120 hold += (unsigned long)(*in++) << bits; in inflate_fast()
122 hold += (unsigned long)(*in++) << bits; in inflate_fast()
125 this = lcode[hold & lmask]; in inflate_fast()
128 hold >>= op; in inflate_fast()
139 hold += (unsigned long)(*in++) << bits; in inflate_fast()
142 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
143 hold >>= op; in inflate_fast()
147 hold += (unsigned long)(*in++) << bits; in inflate_fast()
[all …]
H A Dinflate.c46 state->hold = 0; in zlib_inflateReset()
191 hold = state->hold; \
202 state->hold = hold; \
209 hold = 0; \
219 hold += (unsigned long)(*next++) << bits; \
233 ((unsigned)hold & ((1U << (n)) - 1))
238 hold >>= (n); \
245 hold >>= bits & 7; \
337 unsigned long hold; /* bit buffer */ in zlib_inflate() local
372 ((BITS(8) << 8) + (hold >> 8)) % 31) { in zlib_inflate()
[all …]
/linux/include/trace/events/
H A Dpage_pool.h17 s32 inflight, u32 hold, u32 release),
19 TP_ARGS(pool, inflight, hold, release),
24 __field(u32, hold)
32 __entry->hold = hold;
38 __entry->pool, __entry->inflight, __entry->hold,
71 netmem_ref netmem, u32 hold),
73 TP_ARGS(pool, netmem, hold),
78 __field(u32, hold)
85 __entry->hold = hold;
91 __entry->netmem & NET_IOV, __entry->pfn, __entry->hold)
/linux/drivers/mtd/nand/raw/
H A Dtxx9ndfmc.c70 unsigned char hold; /* in gbusclock */ member
242 txx9ndfmc_write(dev, (drvdata->hold << 4) | drvdata->spw, TXX9_NDFSPR); in txx9ndfmc_initialize()
282 int hold, spw; in txx9ndfmc_probe() local
294 hold = plat->hold ?: 20; /* tDH */ in txx9ndfmc_probe()
297 hold = TXX9NDFMC_NS_TO_CYC(gbusclk, hold); in txx9ndfmc_probe()
300 hold -= 2; /* actual hold time : (HOLD + 2) BUSCLK */ in txx9ndfmc_probe()
302 hold = clamp(hold, 1, 15); in txx9ndfmc_probe()
303 drvdata->hold = hold; in txx9ndfmc_probe()
307 (gbusclk + 500000) / 1000000, hold, spw); in txx9ndfmc_probe()
/linux/arch/arc/boot/dts/
H A Dabilis_tb100_dvk.dts37 i2c-sda-hold-time-ns = <432>;
40 i2c-sda-hold-time-ns = <432>;
43 i2c-sda-hold-time-ns = <432>;
46 i2c-sda-hold-time-ns = <432>;
49 i2c-sda-hold-time-ns = <432>;
H A Dabilis_tb101_dvk.dts37 i2c-sda-hold-time-ns = <432>;
40 i2c-sda-hold-time-ns = <432>;
43 i2c-sda-hold-time-ns = <432>;
46 i2c-sda-hold-time-ns = <432>;
49 i2c-sda-hold-time-ns = <432>;
/linux/Documentation/leds/
H A Dleds-qcom-lpg.rst35 The pattern is a series of brightness and hold-time pairs, with the hold-time
36 expressed in milliseconds. The hold time is a property of the pattern and must
54 The LPG supports specifying a longer hold-time for the first and last element
69 Similarly, the last entry can be stretched by using a higher hold-time on the
77 specified hold-time of the middle item in the pattern is allowed to have a
78 different hold-time.
/linux/Documentation/usb/
H A Dgadget_hid.rst193 int keyboard_fill_report(char report[8], char buf[BUF_LEN], int *hold)
204 if (strcmp(tok, "--hold") == 0) {
205 *hold = 1;
246 int mouse_fill_report(char report[8], char buf[BUF_LEN], int *hold)
256 if (strcmp(tok, "--hold") == 0) {
257 *hold = 1;
297 int joystick_fill_report(char report[8], char buf[BUF_LEN], int *hold)
303 *hold = 1;
342 " --hold\n");
352 " --hold\n");
[all …]
/linux/scripts/coccinelle/free/
H A Difnulldev_put.cocci3 /// NULL check before dev_{put, hold} functions is not needed.
48 cocci.print_main("NULL check before dev_{put, hold} functions is not needed", p)
54 msg = "WARNING: NULL check before dev_{put, hold} functions is not needed."
/linux/Documentation/devicetree/bindings/memory-controllers/
H A Dti-aemif.txt112 - ti,cs-read-hold-ns: read hold width, ns
129 - ti,cs-write-hold-ns: write hold width, ns
166 ti,cs-read-hold-ns = <7>;
169 ti,cs-write-hold-ns = <7>;
195 ti,cs-read-hold-ns = <8>;
198 ti,cs-write-hold-ns = <7>;
H A Dmvebu-devbus.txt71 - devbus,rd-hold-ps: Defines the time between the last data sample to the
79 Set <rd-hold-ps> to a value smaller than <turn-off-ps>.
99 This parameter defines the hold time of address and
146 devbus,rd-hold-ps = <0>;
/linux/drivers/i2c/busses/
H A Di2c-at91-master.c69 int ckdiv, cdiv, div, hold = 0, filter_width = 0; in at91_calc_twi_clock() local
95 hold = DIV_ROUND_UP(t->sda_hold_ns in at91_calc_twi_clock()
97 hold -= 3; in at91_calc_twi_clock()
98 if (hold < 0) in at91_calc_twi_clock()
99 hold = 0; in at91_calc_twi_clock()
100 if (hold > AT91_TWI_CWGR_HOLD_MAX) { in at91_calc_twi_clock()
103 AT91_TWI_CWGR_HOLD_MAX, hold); in at91_calc_twi_clock()
104 hold = AT91_TWI_CWGR_HOLD_MAX; in at91_calc_twi_clock()
124 | AT91_TWI_CWGR_HOLD(hold); in at91_calc_twi_clock()
129 cdiv, ckdiv, hold, t->sda_hold_ns, filter_width, in at91_calc_twi_clock()
/linux/arch/mips/bcm63xx/
H A Dcs.c67 unsigned int setup, unsigned int hold) in bcm63xx_set_cs_timing() argument
82 val |= hold << MPI_CSCTL_HOLD_SHIFT; in bcm63xx_set_cs_timing()
/linux/arch/arm/mach-omap2/
H A Domap-headsmp.S82 hold: ldr r12,=0x103 label
89 bne hold
/linux/Documentation/devicetree/bindings/mtd/
H A Dlpc32xx-slc.txt16 - nxp,whold: Write hold time (W_HOLD)
19 - nxp,rhold: Read hold time (R_HOLD)
/linux/arch/arm64/boot/dts/qcom/
H A Dsc7280-idp.dtsi609 bias-bus-hold;
621 bias-bus-hold;
682 * Configure a bias-bus-hold on CTS to lower power
683 * usage when Bluetooth is turned off. Bus hold will
688 bias-bus-hold;
787 * Configure a bias-bus-hold on CTS to lower power
788 * usage when Bluetooth is turned off. Bus hold will
793 bias-bus-hold;
/linux/arch/arm/boot/dts/st/
H A Dstm32mp15xx-dhcor-drc-compact.dtsi147 st,fmc2-ebi-cs-address-hold-ns = <5>;
150 st,fmc2-ebi-cs-data-hold-ns = <1>;
152 st,fmc2-ebi-cs-write-address-hold-ns = <5>;
155 st,fmc2-ebi-cs-write-data-hold-ns = <1>;
/linux/Documentation/hwmon/
H A Dda9055.rst17 resolution and track and hold circuitry combined with an analogue input
19 different inputs. The track and hold circuit ensures stable input voltages at
H A Dda9052.rst18 resolution and track and hold circuitry combined with an analogue input
20 different inputs. The track and hold circuit ensures stable input voltages at
/linux/arch/arm64/boot/dts/freescale/
H A Dfsl-ls1043a-rdb.dts112 spi-cs-hold-delay-ns = <100>;
126 spi-cs-hold-delay-ns = <50>;
140 spi-cs-hold-delay-ns = <50>;
/linux/net/wireless/
H A Dcore.h192 atomic_t hold; member
219 atomic_inc(&bss->hold); in cfg80211_hold_bss()
223 atomic_inc(&bss->hold); in cfg80211_hold_bss()
229 int r = atomic_dec_return(&bss->hold); in cfg80211_unhold_bss()
234 r = atomic_dec_return(&bss->hold); in cfg80211_unhold_bss()
/linux/drivers/spi/
H A Dspi-mt65xx.c304 u32 setup, hold, inactive; in mtk_spi_set_hw_cs_timing() local
316 hold = (delay * DIV_ROUND_UP(mdata->spi_clk_hz, 1000000)) / 1000; in mtk_spi_set_hw_cs_timing()
323 if (hold || setup) { in mtk_spi_set_hw_cs_timing()
326 if (hold) { in mtk_spi_set_hw_cs_timing()
327 hold = min_t(u32, hold, 0x10000); in mtk_spi_set_hw_cs_timing()
329 reg_val |= (((hold - 1) & 0xffff) in mtk_spi_set_hw_cs_timing()
339 if (hold) { in mtk_spi_set_hw_cs_timing()
340 hold = min_t(u32, hold, 0x100); in mtk_spi_set_hw_cs_timing()
342 reg_val |= (((hold - 1) & 0xff) << SPI_CFG0_CS_HOLD_OFFSET); in mtk_spi_set_hw_cs_timing()
/linux/arch/arm/boot/dts/ti/keystone/
H A Dkeystone-k2l-evm.dts70 ti,cs-read-hold-ns = <6>;
73 ti,cs-write-hold-ns = <8>;
/linux/arch/arm/boot/dts/intel/socfpga/
H A Dsocfpga_cyclone5_mercury_sa1.dtsi47 i2c-sda-hold-time-ns = <300>;
58 i2c-sda-hold-time-ns = <300>;
H A Dsocfpga_cyclone5_mercury_sa2.dtsi47 i2c-sda-hold-time-ns = <300>;
63 i2c-sda-hold-time-ns = <300>;

12345678910>>...13