Home
last modified time | relevance | path

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

/xnu-10063.141.1/libkern/zlib/
H A Dinffast.c94 unsigned long hold; /* local strm->hold */ in inflate_fast() local
121 hold = state->hold; in inflate_fast()
132 hold += (unsigned long)(*in++) << bits; in inflate_fast()
134 hold += (unsigned long)(*in++) << bits; in inflate_fast()
137 this = lcode[hold & lmask]; in inflate_fast()
140 hold >>= op; in inflate_fast()
154 hold += (unsigned long)(*in++) << bits; in inflate_fast()
157 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
158 hold >>= op; in inflate_fast()
163 hold += (unsigned long)(*in++) << bits; in inflate_fast()
[all …]
H A Dinflate.c149 state->hold = 0; in inflateReset()
165 state->hold += value << state->bits; in inflatePrime()
433 hold = state->hold; \
444 state->hold = hold; \
451 hold = 0; \
461 hold += (unsigned long)(*next++) << bits; \
475 ((unsigned)hold & ((1U << (n)) - 1))
480 hold >>= (n); \
487 hold >>= bits & 7; \
585 unsigned long hold; /* bit buffer */ in inflate() local
[all …]
H A Dinfback.c152 hold = state->hold; \
163 state->hold = hold; \
170 hold = 0; \
194 hold += (unsigned long)(*next++) << bits; \
209 ((unsigned)hold & ((1U << (n)) - 1))
214 hold >>= (n); \
221 hold >>= bits & 7; \
276 unsigned long hold; /* bit buffer */ in inflateBack() local
299 hold = 0; in inflateBack()
345 if ((hold & 0xffff) != ((hold >> 16) ^ 0xffff)) { in inflateBack()
[all …]
H A Dinflate.h121 unsigned long hold; /* input bit accumulator */ member
/xnu-10063.141.1/osfmk/mach/
H A Dmach_types.defs98 /* mach_port_info_t: can hold either a
109 * mach_msg_max_trailer_t: can hold
220 /* thread_state_t: This inline array can hold
308 /* thread_info_t: this inline array can hold any of:
323 /* task_info_t: this inline array can hold any of:
496 * that can hold:
530 /* policy_info_t: variable-size inline array. Can hold:
567 /* vm_region_info_t: variable-size inline array that can hold:
/xnu-10063.141.1/libkern/libkern/c++/
H A DOSPtr.h62 silence this error. If that is not acceptable, please hold \
/xnu-10063.141.1/osfmk/mach/machine/
H A Dmachine_types.defs102 * The mach_vm_xxx_t types are sized to hold the
/xnu-10063.141.1/doc/allocators/
H A Dread-only.md69 relationships, we can validate the ownership invariant that we expect to hold.
/xnu-10063.141.1/bsd/man/man2/
H A Dgetdirentriesattr.2162 However, since the variable is too small to hold an
/xnu-10063.141.1/doc/vm/
H A Dfreezer.md38 …t freeze apps that have a lot of wired memory. Of course, apps should not hold onto wired memory w…
/xnu-10063.141.1/
H A DAPPLE_LICENSE177 and hold Apple and every Contributor harmless for any liability
/xnu-10063.141.1/tools/lldbmacros/
H A DREADME.md356 …* if a class variable is supposed to hold non native type of object, it is good idea to comment wh…
/xnu-10063.141.1/bsd/net/
H A Dif.c1750 ifunit_common(const char *name, boolean_t hold) in ifunit_common() argument
1781 if (hold && ifp != NULL && !ifnet_is_attached(ifp, 1)) { in ifunit_common()