Home
last modified time | relevance | path

Searched refs:hold (Results 1 - 25 of 98) sorted by relevance

1234

/kernel/linux/linux-5.10/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 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 >>
337 unsigned long hold; /* bit buffer */ zlib_inflate() local
[all...]
/kernel/linux/linux-6.6/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 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 >>
337 unsigned long hold; /* bit buffer */ zlib_inflate() local
[all...]
/kernel/linux/linux-5.10/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;
37 TP_printk("page_pool=%p inflight=%d hold=%u release=%u cnt=%llu",
38 __entry->pool, __entry->inflight, __entry->hold,
70 const struct page *page, u32 hold),
72 TP_ARGS(pool, page, hold),
77 __field(u32, hold)
[all...]
/kernel/linux/linux-6.6/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;
37 TP_printk("page_pool=%p inflight=%d hold=%u release=%u cnt=%llu",
38 __entry->pool, __entry->inflight, __entry->hold,
70 const struct page *page, u32 hold),
72 TP_ARGS(pool, page, hold),
77 __field(u32, hold)
[all...]
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/
H A Dtxx9ndfmc.c71 unsigned char hold; /* in gbusclock */ member
243 txx9ndfmc_write(dev, (drvdata->hold << 4) | drvdata->spw, TXX9_NDFSPR); in txx9ndfmc_initialize()
283 int hold, spw; in txx9ndfmc_probe() local
297 hold = plat->hold ?: 20; /* tDH */ in txx9ndfmc_probe()
300 hold = TXX9NDFMC_NS_TO_CYC(gbusclk, hold); in txx9ndfmc_probe()
303 hold -= 2; /* actual hold time : (HOLD + 2) BUSCLK */ in txx9ndfmc_probe()
305 hold in txx9ndfmc_probe()
[all...]
/kernel/linux/linux-6.6/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 in txx9ndfmc_probe()
[all...]
/kernel/linux/linux-5.10/include/net/caif/
H A Dcfsrvl.h23 void (*hold)(struct cflayer *lyr); member
51 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_get()
54 s->hold(layr->up); in cfsrvl_get()
60 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_put()
/kernel/linux/linux-6.6/include/net/caif/
H A Dcfsrvl.h23 void (*hold)(struct cflayer *lyr); member
48 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_get()
51 s->hold(layr->up); in cfsrvl_get()
57 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_put()
/kernel/linux/linux-5.10/drivers/i2c/busses/
H A Di2c-at91-master.c70 int ckdiv, cdiv, div, hold = 0, filter_width = 0; in at91_calc_twi_clock() local
92 * hold time = HOLD + 3 x T_peripheral_clock in at91_calc_twi_clock()
94 * hold. in at91_calc_twi_clock()
96 hold = DIV_ROUND_UP(t->sda_hold_ns in at91_calc_twi_clock()
98 hold -= 3; in at91_calc_twi_clock()
99 if (hold < 0) in at91_calc_twi_clock()
100 hold = 0; in at91_calc_twi_clock()
101 if (hold > AT91_TWI_CWGR_HOLD_MAX) { in at91_calc_twi_clock()
104 AT91_TWI_CWGR_HOLD_MAX, hold); in at91_calc_twi_clock()
105 hold in at91_calc_twi_clock()
[all...]
/kernel/linux/linux-6.6/drivers/i2c/busses/
H A Di2c-at91-master.c68 int ckdiv, cdiv, div, hold = 0, filter_width = 0; in at91_calc_twi_clock() local
90 * hold time = HOLD + 3 x T_peripheral_clock in at91_calc_twi_clock()
92 * hold. in at91_calc_twi_clock()
94 hold = DIV_ROUND_UP(t->sda_hold_ns in at91_calc_twi_clock()
96 hold -= 3; in at91_calc_twi_clock()
97 if (hold < 0) in at91_calc_twi_clock()
98 hold = 0; in at91_calc_twi_clock()
99 if (hold > AT91_TWI_CWGR_HOLD_MAX) { in at91_calc_twi_clock()
102 AT91_TWI_CWGR_HOLD_MAX, hold); in at91_calc_twi_clock()
103 hold in at91_calc_twi_clock()
[all...]
/kernel/linux/linux-5.10/net/caif/
H A Dcfsrvl.c209 void (*hold)(struct cflayer *lyr), in caif_client_register_refcnt()
217 service->hold = hold; in caif_client_register_refcnt()
/kernel/linux/linux-6.6/net/caif/
H A Dcfsrvl.c209 void (*hold)(struct cflayer *lyr), in caif_client_register_refcnt()
217 service->hold = hold; in caif_client_register_refcnt()
/kernel/linux/linux-5.10/net/wireless/
H A Dcore.h160 atomic_t hold; member
185 atomic_inc(&bss->hold); in cfg80211_hold_bss()
189 atomic_inc(&bss->hold); in cfg80211_hold_bss()
195 int r = atomic_dec_return(&bss->hold); in cfg80211_unhold_bss()
200 r = atomic_dec_return(&bss->hold); in cfg80211_unhold_bss()
/kernel/linux/linux-6.6/net/wireless/
H A Dcore.h170 atomic_t hold; member
195 atomic_inc(&bss->hold); in cfg80211_hold_bss()
199 atomic_inc(&bss->hold); in cfg80211_hold_bss()
205 int r = atomic_dec_return(&bss->hold); in cfg80211_unhold_bss()
210 r = atomic_dec_return(&bss->hold); in cfg80211_unhold_bss()
/kernel/linux/linux-5.10/arch/c6x/lib/
H A Ddivi.S20 ;; divi uses B5 to hold the original return address during
22 ;; remi uses B2 and A5 to hold the input values during the
H A Dremi.S20 ;; divi uses B5 to hold the original return address during
22 ;; remi uses B2 and A5 to hold the input values during the
/kernel/linux/linux-5.10/arch/mips/bcm63xx/
H A Dcs.c67 unsigned int setup, unsigned int hold) in bcm63xx_set_cs_timing()
82 val |= hold << MPI_CSCTL_HOLD_SHIFT; in bcm63xx_set_cs_timing()
66 bcm63xx_set_cs_timing(unsigned int cs, unsigned int wait, unsigned int setup, unsigned int hold) bcm63xx_set_cs_timing() argument
/kernel/linux/linux-5.10/arch/arm/mach-omap2/
H A Domap-headsmp.S82 hold: ldr r12,=0x103 label
89 bne hold
/kernel/linux/linux-6.6/arch/mips/bcm63xx/
H A Dcs.c67 unsigned int setup, unsigned int hold) in bcm63xx_set_cs_timing()
82 val |= hold << MPI_CSCTL_HOLD_SHIFT; in bcm63xx_set_cs_timing()
66 bcm63xx_set_cs_timing(unsigned int cs, unsigned int wait, unsigned int setup, unsigned int hold) bcm63xx_set_cs_timing() argument
/kernel/linux/linux-6.6/arch/arm/mach-omap2/
H A Domap-headsmp.S82 hold: ldr r12,=0x103 label
89 bne hold
/kernel/linux/linux-5.10/drivers/clk/sirf/
H A Dclk-common.c344 * wait count: bit[19:16], hold count: bit[23:20] in dmn_clk_recalc_rate()
347 u32 hold = (cfg >> 20) & (BIT(4) - 1); in dmn_clk_recalc_rate() local
349 return fin / (wait + hold + 2); in dmn_clk_recalc_rate()
357 unsigned ratio, wait, hold; in dmn_clk_round_rate() local
370 hold = ratio - wait - 2; in dmn_clk_round_rate()
372 return fin / (wait + hold + 2); in dmn_clk_round_rate()
380 unsigned ratio, wait, hold, reg; in dmn_clk_set_rate() local
393 hold = ratio - wait - 2; in dmn_clk_set_rate()
397 reg |= (wait << 16) | (hold << 20) | BIT(25); in dmn_clk_set_rate()
/kernel/linux/linux-6.6/drivers/spi/
H A Dspi-mt65xx.c289 u32 setup, hold, inactive; in mtk_spi_set_hw_cs_timing() local
301 hold = (delay * DIV_ROUND_UP(mdata->spi_clk_hz, 1000000)) / 1000; in mtk_spi_set_hw_cs_timing()
308 if (hold || setup) { in mtk_spi_set_hw_cs_timing()
311 if (hold) { in mtk_spi_set_hw_cs_timing()
312 hold = min_t(u32, hold, 0x10000); in mtk_spi_set_hw_cs_timing()
314 reg_val |= (((hold - 1) & 0xffff) in mtk_spi_set_hw_cs_timing()
324 if (hold) { in mtk_spi_set_hw_cs_timing()
325 hold = min_t(u32, hold, in mtk_spi_set_hw_cs_timing()
[all...]
/kernel/linux/linux-5.10/arch/mips/include/asm/mach-bcm63xx/
H A Dbcm63xx_cs.h7 unsigned int setup, unsigned int hold);

Completed in 18 milliseconds

1234