/openbmc/linux/lib/zlib_inflate/ |
H A D | inffast.c | 82 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 D | inflate.c | 46 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 …]
|
/openbmc/u-boot/lib/zlib/ |
H A D | inffast.c | 85 unsigned long hold; /* local strm->hold */ in inflate_fast() local 120 hold = state->hold; in inflate_fast() 131 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() 133 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() 136 this = lcode[hold & lmask]; in inflate_fast() 139 hold >>= op; in inflate_fast() 153 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() 156 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast() 157 hold >>= op; in inflate_fast() 162 hold += (unsigned long)(PUP(in)) << bits; in inflate_fast() [all …]
|
H A D | inflate.c | 25 state->hold = 0; in inflateReset() 184 hold = state->hold; \ 195 state->hold = hold; \ 202 hold = 0; \ 212 hold += (unsigned long)(*next++) << bits; \ 226 ((unsigned)hold & ((1U << (n)) - 1)) 231 hold >>= (n); \ 238 hold >>= bits & 7; \ 334 unsigned long hold; /* bit buffer */ in inflate() local 368 if ((state->wrap & 2) && hold == 0x8b1f) { /* gzip header */ in inflate() [all …]
|
/openbmc/linux/include/trace/events/ |
H A D | page_pool.h | 17 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, 70 const struct page *page, u32 hold), 72 TP_ARGS(pool, page, hold), 77 __field(u32, hold) 84 __entry->hold = hold; 89 __entry->pool, __entry->page, __entry->pfn, __entry->hold)
|
/openbmc/openbmc/meta-ufispace/meta-ncplite/recipes-phosphor/state/phosphor-state-manager/ |
H A D | host-control | 10 gpioset --hold-period 50ms -t0 power-button=1 12 gpioset --hold-period 50ms -t0 power-button=0 18 gpioset --hold-period 50ms -t0 reset-button=0 20 gpioset --hold-period 50ms -t0 reset-button=1
|
H A D | chassis-control | 26 gpioset --hold-period 50ms -t0 power-chassis-control0=1 27 gpioset --hold-period 50ms -t0 power-chassis-control1=1 37 gpioset --hold-period 50ms -t0 power-chassis-control0=0 38 gpioset --hold-period 50ms -t0 power-chassis-control1=0
|
/openbmc/linux/drivers/mtd/nand/raw/ |
H A D | txx9ndfmc.c | 70 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()
|
/openbmc/qemu/hw/core/ |
H A D | resettable.c | 160 trace_resettable_phase_hold_exec(obj, obj_typename, !!rc->phases.hold); in resettable_phase_hold() 161 if (rc->phases.hold) { in resettable_phase_hold() 162 rc->phases.hold(obj, type); in resettable_phase_hold() 251 ResettableHoldPhase hold, in resettable_class_set_parent_phases() argument 259 if (hold) { in resettable_class_set_parent_phases() 260 rc->phases.hold = hold; in resettable_class_set_parent_phases()
|
/openbmc/linux/arch/arc/boot/dts/ |
H A D | abilis_tb101_dvk.dts | 37 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 D | abilis_tb100_dvk.dts | 37 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>;
|
/openbmc/qemu/scripts/coccinelle/ |
H A D | reset-type.cocci | 16 // implementations of the hold and exit phase methods" it includes 22 // either by directly assigning it to phases.hold or by calling 32 rc->phases.hold = holdfn; 38 // and add the new argument. If the function calls a hold function 51 - parent.hold(obj) 52 + parent.hold(obj, type) 114 - rc->phases.hold(obj)@p 115 + rc->phases.hold(obj, type)
|
/openbmc/linux/include/net/caif/ |
H A D | cfsrvl.h | 23 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()
|
/openbmc/linux/Documentation/leds/ |
H A D | leds-qcom-lpg.rst | 35 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.
|
/openbmc/linux/Documentation/usb/ |
H A D | gadget_hid.rst | 193 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 …]
|
/openbmc/linux/scripts/coccinelle/free/ |
H A D | ifnulldev_put.cocci | 3 /// 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."
|
/openbmc/linux/Documentation/hwmon/ |
H A D | abituguru-datasheet.rst | 40 after a reboot uGuru will hold 0x00 here, but if the driver is removed and 41 later on attached again data-port will hold 0x08, more about this later. 44 turned up which will hold 0x00 instead of 0xAC at the CMD port, thus we also 46 hold 0x09 and will only hold 0x08 after reading CMD first, so CMD must be read 88 to hold 0x09, DATA should read 0x09 within 250 read cycles. 90 Next CMD _must_ be read and should hold 0xAC, usually CMD will hold 0xAC the 94 After reading CMD, DATA should hold 0x08 which means that the uGuru is ready 95 for input. As above DATA will usually hold 0x08 the first read but not always. 103 First the uGuru must be in "ready" mode as described above, DATA should hold 107 wait for to DATA to hold 0x08 again indicating that it wants / is ready for [all …]
|
/openbmc/linux/Documentation/devicetree/bindings/bus/ |
H A D | qcom,ebi2.txt | 82 - qcom,xmem-write-hold-cycles: write hold cycles, these are extra cycles 84 WE is asserted until CS is asserted. With a hold of 1 (value = 0), the CS 96 - qcom,xmem-address-hold-enable: this is a boolean property stating that we 97 shall hold the address for an extra cycle to meet hold time requirements 102 - qcom,xmem-read-hold-cycles: the length in cycles of the first segment of a 132 qcom,xmem-write-hold-cycles = <3>;
|
/openbmc/linux/Documentation/devicetree/bindings/memory-controllers/ |
H A D | ti-aemif.txt | 112 - 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>;
|
/openbmc/linux/drivers/i2c/busses/ |
H A D | i2c-at91-master.c | 68 int ckdiv, cdiv, div, hold = 0, filter_width = 0; in at91_calc_twi_clock() local 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 = AT91_TWI_CWGR_HOLD_MAX; in at91_calc_twi_clock() 123 | AT91_TWI_CWGR_HOLD(hold); in at91_calc_twi_clock() 128 cdiv, ckdiv, hold, t->sda_hold_ns, filter_width, in at91_calc_twi_clock()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/procmail/procmail/ |
H A D | CVE-2017-16844.patch | 16 -{ if(buffilled+len>buflen) /* buf can't hold the text */ 17 +{ while(buffilled+len>buflen) /* buf can't hold the text */
|
/openbmc/linux/arch/riscv/boot/dts/starfive/ |
H A D | jh7100-common.dtsi | 111 i2c-sda-hold-time-ns = <300>; 131 i2c-sda-hold-time-ns = <300>; 141 i2c-sda-hold-time-ns = <300>;
|
/openbmc/qemu/include/hw/ |
H A D | resettable.h | 113 ResettableHoldPhase hold; member 234 ResettableHoldPhase hold,
|
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/ |
H A D | 10-cve-2014-8140-test-compr-eb.patch | 21 + * 1. eb_size is too small to hold the uncompressed size 24 + * 3. eb_ucsize is positive, but eb_size is too small to hold
|
/openbmc/linux/arch/arm/mach-omap2/ |
H A D | omap-headsmp.S | 82 hold: ldr r12,=0x103 label 89 bne hold
|