Home
last modified time | relevance | path

Searched full:hold (Results 1 – 25 of 867) sorted by relevance

12345678910>>...35

/openbmc/u-boot/lib/zlib/
H A Dinffast.c85 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 Dinflate.c25 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/qemu/include/crypto/
H A Dhmac.h75 * @result: pointer to hold output hmac
76 * @resultlen: pointer to hold length of @result
83 * @result must hold a pointer that is @result_len in size, and
88 * a buffer to hold the hash output digest, storing a pointer to
108 * @result: pointer to hold output hmac
109 * @resultlen: pointer to hold length of @result
116 * @result must hold a pointer that is @result_len in size, and
121 * a buffer to hold the hash output digest, storing a pointer to
141 * @digest: pointer to hold output hmac
165 * @digest: pointer to hold output hmac
H A Dhash.h72 * @result: pointer to hold output hash
73 * @resultlen: pointer to hold length of @result
80 * @result must hold a pointer that is @result_len in size, and
85 * a buffer to hold the hash output digest, storing a pointer to
104 * @result: pointer to hold output hash
105 * @resultlen: pointer to hold length of @result
112 * @result must hold a pointer that is @result_len in size, and
117 * a buffer to hold the hash output digest, storing a pointer to
136 * @digest: pointer to hold output hash
190 * @digest: pointer to hold output hash
[all …]
/openbmc/openbmc/meta-ufispace/meta-ncplite/recipes-phosphor/state/phosphor-state-manager/
H A Dhost-control10 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 Dchassis-control26 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/qemu/scripts/coccinelle/
H A Dreset-type.cocci16 // 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/phosphor-fan-presence/control/json/
H A Dzone.hpp236 * target hold resulting in the fans being held at the highest remaining
237 * hold target if other hold targets had been requested. When no hold
240 * @param[in] ident - Unique identifier for a target hold
241 * @param[in] target - Target to hold fans at
242 * @param[in] hold - Whether to hold(true) or release(false) a target hold
244 void setTargetHold(const std::string& ident, uint64_t target, bool hold);
256 * floor hold resulting in the fans being held at the highest remaining
257 * hold target if other floor hold targets had been requested. When no hold
260 * @param[in] ident - Unique identifier for a floor hold
262 * @param[in] hold - Whether to hold(true) or release(false) a hold
[all …]
H A Dzone.cpp202 void Zone::setTargetHold(const std::string& ident, uint64_t target, bool hold) in setTargetHold() argument
206 if (!hold) in setTargetHold()
213 std::format("{} is removing target hold", ident)); in setTargetHold()
223 std::format("{} is setting target hold to {}", ident, target)); in setTargetHold()
243 std::format("Settings fans to target hold of {}", in setTargetHold()
255 void Zone::setFloorHold(const std::string& ident, uint64_t target, bool hold) in setFloorHold() argument
264 if (!hold) in setFloorHold()
271 std::format("{} is removing floor hold", ident)); in setFloorHold()
281 std::format("{} is setting floor hold to {}", ident, target)); in setFloorHold()
/openbmc/qemu/include/hw/
H A Dresettable.h63 * for the phases.enter, phases.hold and phases.exit methods, which
67 * for any reset event, in the order 'enter', 'hold', 'exit'.
68 * An object will always move quickly from 'enter' to 'hold'
69 * but might remain in 'hold' for an arbitrary period of time
85 * @phases.hold: This phase is called for entry into reset, once every object
113 ResettableHoldPhase hold; member
137 * @hold_phase_pending: flag which indicates that we need to invoke the 'hold'
211 * a hold phase method. Calling this during enter or exit phase is an error.
228 * by the given new methods (@enter, @hold and @exit).
234 ResettableHoldPhase hold,
/openbmc/u-boot/arch/powerpc/include/asm/
H A Dfsl_dma.h22 #define FSL_DMA_MR_SAHE 0x00001000 /* Source addr hold enable */
23 #define FSL_DMA_MR_DAHE 0x00002000 /* Dest addr hold enable */
24 #define FSL_DMA_MR_SAHTS_MASK 0x0000c000 /* Source addr hold xfer size */
25 #define FSL_DMA_MR_DAHTS_MASK 0x00030000 /* Dest addr hold xfer size */
62 #define FSL_DMA_MR_SAHE 0x00001000 /* Source addr hold enable */
63 #define FSL_DMA_MR_DAHE 0x00002000 /* Dest addr hold enable */
64 #define FSL_DMA_MR_SAHTS_MASK 0x0000c000 /* Source addr hold xfer size */
65 #define FSL_DMA_MR_DAHTS_MASK 0x00030000 /* Dest addr hold xfer size */
/openbmc/qemu/hw/core/
H A Dresettable.c19 * resettable_phase_enter/hold/exit:
157 /* exec hold phase */ in resettable_phase_hold()
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()
233 * hold phase is not pending. in resettable_change_parent()
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/qemu/docs/devel/
H A Dreset.rst129 2. The **hold** phase is executed for entry into reset, once every object in the
138 *hold* phases are executed only when asserting reset for the first time
147 during either 'enter' or 'hold' phases. IOMMUs are expected to reset during
164 phase of the reset; they are name ``phases.enter()``, ``phases.hold()`` and
193 /* call parent class hold phase */
194 if (myclass->parent_phases.hold) {
195 myclass->parent_phases.hold(obj, type);
233 only override the *enter* phase and leave *hold* and *exit* untouched::
238 This is equivalent to providing a trivial implementation of the hold and exit
250 phase. During *enter* and *hold* phase only, the function will return that the
[all …]
/openbmc/u-boot/include/dm/
H A Dfdtaddr.h49 * @index: the 'reg' property can hold a list of <addr, size> pairs
61 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
88 * @index: the 'reg' property can hold a list of <addr, size> pairs
101 * @index: the 'reg' property can hold a list of <addr, size> pairs
115 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
/openbmc/u-boot/include/u-boot/
H A Dmd5.h22 * 'input'. 'output' must have enough space to hold 16 bytes.
28 * 'output' must have enough space to hold 16 bytes. If 'chunk' Trigger the
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/procmail/procmail/
H A DCVE-2017-16844.patch16 -{ if(buffilled+len>buflen) /* buf can't hold the text */
17 +{ while(buffilled+len>buflen) /* buf can't hold the text */
/openbmc/qemu/include/system/
H A Dcpu-timers.h22 /* Caller must hold BQL */
24 /* Caller must hold BQL */
/openbmc/qemu/include/io/
H A Ddns-resolver.h152 * @naddr: pointer to hold number of resolved addresses
153 * @addrs: pointer to hold resolved addresses
204 * @naddr: pointer to hold number of resolved addresses
205 * @addrs: pointer to hold resolved addresses
/openbmc/phosphor-fan-presence/control/json/actions/
H A Dcount_state_floor.hpp34 * state falls below the configured count, the floor hold is released.
75 * zone is set to the configured floor, with a hold. The hold is released
H A Dcount_state_floor.cpp43 // If no delay time configured, can immediately update the hold. in run()
61 // 1. This hold has already been set, so don't need to do anything else. in run()
65 // When the timer expires, then count again and set the hold. in run()
/openbmc/openpower-vpd-parser/wait-vpd-parser/include/
H A Dprime_inventory.hpp70 * @param[in,out] io_interfaceMap - Map to hold populated interfaces.
106 * @param[in,out] io_interfaces - Map to hold all the interfaces for the
123 * @param[in,out] io_interfaces - Map to hold all the interfaces for the
/openbmc/phosphor-fan-presence/docs/control/
H A Devents.md65 the Present property on each member of the group and set the fan target hold to
67 hold.
241 floors can also be set with a hold, meaning another action can't set a
395 below the configured count, the floor hold is released.
409 for 3 seconds, a floor hold will be requested with a value of 18000. Otherwise,
410 the floor hold will be released (if it was previously requested).
429 false, a target hold will be requested with a value of 18000. Otherwise, the
430 hold will be released (if it was previously requested).
489 At the end of the analysis, a floor hold will be set with the final floor value.
540 The above config will set a target hold of 18000 when the service associated
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/
H A D10-cve-2014-8140-test-compr-eb.patch21 + * 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/skeleton/libopenbmc_intf/
H A Dgpio_configs.c173 const cJSON* hold = cJSON_GetObjectItem(pci_reset_out, "hold"); in read_power_gpios() local
174 g_assert(hold != NULL); in read_power_gpios()
177 g_print("Power GPIO pci reset[%zd] = %s active %s, hold %s\n", i, in read_power_gpios()
/openbmc/u-boot/board/freescale/mx28evk/
H A DREADME24 * Hold Button: Down (off)
33 * Hold Button: Down (off)

12345678910>>...35