Searched refs:extra (Results 1 - 12 of 12) sorted by relevance

/xnu-2782.1.97/bsd/netinet/
H A Ddhcp_options.c159 /* concatenates extra onto list */
161 ptrlist_concat(ptrlist_t * list, ptrlist_t * extra) argument
163 if (extra->count == 0)
166 if ((extra->count + list->count) > list->size) {
169 list->size = extra->count + list->count;
178 bcopy(extra->array, list->array + list->count,
179 extra->count * sizeof(*list->array));
180 list->count += extra->count;
222 dhcpol_concat(dhcpol_t * list, dhcpol_t * extra) argument
224 return (ptrlist_concat((ptrlist_t *)list, (ptrlist_t *)extra));
399 dhcpol_t extra; local
[all...]
H A Ddhcp_options.h191 boolean_t dhcpol_concat(dhcpol_t * list, dhcpol_t * extra);
/xnu-2782.1.97/libkern/zlib/
H A Dinflate.h51 OS, /* i: waiting for extra flags and operating system (gzip) */
52 EXLEN, /* i: waiting for extra length (gzip) */
53 EXTRA, /* i: waiting for extra bytes (gzip) */
67 LENEXT, /* i: waiting for length extra bits */
69 DISTEXT, /* i: waiting for distance extra bits */
127 unsigned extra; /* extra bits needed */ member in struct:inflate_state
H A Dinftrees.c83 const unsigned short FAR *extra; /* extra bits table to use */ local
84 int end; /* use base and extra for symbol > end */
90 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
97 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
211 base = extra = work; /* dummy value--not used */
217 extra = lext;
218 extra -= 257;
223 extra = dext;
251 this.op = (unsigned char)(extra[wor
[all...]
H A Dinfback.c549 /* length code -- get extra bits, if any */
550 state->extra = (unsigned)(this.op) & 15;
551 if (state->extra != 0) {
552 NEEDBITS(state->extra);
553 state->length += BITS(state->extra);
554 DROPBITS(state->extra);
582 /* get distance extra bits, if any */
583 state->extra = (unsigned)(this.op) & 15;
584 if (state->extra != 0) {
585 NEEDBITS(state->extra);
[all...]
H A Dinflate.c46 * - Remove unnecessary second byte pull from length extra in inffast.c
61 * - Remove distance extra == 0 check in inflate_fast()--only helps for lengths
707 state->head->extra = Z_NULL;
715 state->head->extra != Z_NULL) {
717 zmemcpy(state->head->extra + len, next,
1020 state->extra = (unsigned)(this.op) & 15;
1023 if (state->extra) {
1024 NEEDBITS(state->extra);
1025 state->length += BITS(state->extra);
1026 DROPBITS(state->extra);
[all...]
H A Dtrees.c88 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
91 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
94 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
119 * need for the L_CODES extra codes used during heap construction. However
150 const intf *extra_bits; /* extra bits for each code or NULL */
524 const intf *extra = desc->stat_desc->extra_bits; local
530 int xbits; /* extra bits */
552 if (n >= base) xbits = extra[n-base];
682 /* node is 0 or 1 so it does not have extra bits */
1108 int extra; /* numbe local
[all...]
H A Ddeflate.c628 (s->gzhead->extra == Z_NULL ? 0 : 4) +
640 if (s->gzhead->extra != NULL) {
682 if (s->gzhead->extra != NULL) {
695 put_byte(s, s->gzhead->extra[s->gzindex]);
1416 * NOTE: this function should be optimized to avoid extra copying from
/xnu-2782.1.97/osfmk/x86_64/
H A Dkpc_x86.c548 uint64_t status, extra; local
559 extra = kpc_reload_fixed(ctr);
562 += (kpc_fixed_max() - FIXED_RELOAD(ctr) + 1 /* Wrap */) + extra;
564 BUF_INFO(PERF_KPC_FCOUNTER, ctr, FIXED_SHADOW(ctr), extra, FIXED_ACTIONID(ctr));
574 extra = kpc_reload_configurable(ctr);
577 += kpc_configurable_max() - CONFIGURABLE_RELOAD(ctr) + extra;
583 BUF_INFO(PERF_KPC_COUNTER, ctr, CONFIGURABLE_SHADOW(ctr), extra, CONFIGURABLE_ACTIONID(ctr));
/xnu-2782.1.97/bsd/vfs/
H A Dvfs_utfconv.c198 int extra = 0; local
208 if (extra > 0) {
209 --extra;
221 extra = unicode_decompose(ucs_ch, sequence) - 1;
222 charcnt += extra;
268 int extra = 0; local
283 if (extra > 0) {
284 --extra;
290 extra = unicode_decompose(ucs_ch, sequence) - 1;
291 charcnt += extra;
[all...]
/xnu-2782.1.97/bsd/netinet6/
H A Dicmp6.c2163 * If there are extra headers between IPv6 and ICMPv6, strip
2806 size_t extra; local
2808 extra = m0->m_pkthdr.len % 8;
2809 if (extra) {
2811 if (8 - extra <= M_TRAILINGSPACE(m0)) {
2813 m0->m_len += (8 - extra);
2814 m0->m_pkthdr.len += (8 - extra);
2817 m0->m_pkthdr.len -= extra;
2818 m0->m_len -= extra;
/xnu-2782.1.97/libkern/libkern/
H A Dzlib.h139 int xflags; /* extra flags (not used when writing a gzip file) */
141 Bytef *extra; /* pointer to extra field or Z_NULL if none */ member in struct:gz_header_s
142 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
143 uInt extra_max; /* space at extra (only when reading header) */
536 file name, no extra data, no comment, no modification time (set to zero),
704 deflate(). The text, time, os, extra field, name, and comment information
706 ignored -- the extra flags are set according to the compression level). The
708 a zero byte, and that if extra i
[all...]

Completed in 52 milliseconds