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

/macosx-10.5.8/xnu-1228.15.4/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));
398 dhcpol_t extra; local
[all...]
H A Ddhcp_options.h191 boolean_t dhcpol_concat(dhcpol_t * list, dhcpol_t * extra);
/macosx-10.5.8/xnu-1228.15.4/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...]
/macosx-10.5.8/xnu-1228.15.4/bsd/net/
H A Dbsd_comp.c868 int space, codelen, extra; local
995 extra = 1;
998 extra = 0;
1002 explen += codelen + extra;
1019 * so we allocate a single extra cluster mbuf if necessary.
1021 if ((space -= codelen + extra) < 0) {
1032 space = M_TRAILINGSPACE(m) - (codelen + extra);
1063 if (extra) /* the KwKwK case again */
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet6/
H A Dicmp6.c2020 * If there are extra headers between IPv6 and ICMPv6, strip
2647 size_t extra; local
2649 extra = m0->m_pkthdr.len % 8;
2650 if (extra) {
2652 if (8 - extra <= M_TRAILINGSPACE(m0)) {
2654 m0->m_len += (8 - extra);
2655 m0->m_pkthdr.len += (8 - extra);
2658 m0->m_pkthdr.len -= extra;
2659 m0->m_len -= extra;
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dmisc_asm.s78 subi r9,r9,FM_REDZONE+FM_SIZE ; Carve some extra space here
H A Dhw_lock.s325 and r0,r12,r4 ; Clear extra bits
355 and r0,r12,r4 ; Clear extra bits
H A DEmulate.s402 li r28,0 ; Set no extra bytes to move (used for string instructions)
721 lwzx r5,r19,r18 ; Yes, pick up one extra register
H A Dsavearea_asm.s1065 addi r4,r4,1 ; Shift 1 extra
1172 addi r4,r4,1 ; Shift 1 extra
H A Dlowmem_vectors.s393 * overhead already the few extra instructions for testing for BE
2859 and r0,r5,r0 ; Clear any extra SRR1 bits
2992 bl EXT(save_ret_phys) ; Dump that pesky extra savearea
3086 ; will trim the list, making the extra saveareas allocatable by another processor
3358 ; will trim the list, making the extra saveareas allocatable by another processor
H A Dskiplists.s612 ble+ mapIns32a ; skip if new mapping does not use extra lists
H A Dhw_vm.s1363 rldicr r2,r2,0,35-maxAdrSpb ; Clear out the extra
4365 xor r2,r2,r11 ; Get the segment number (plus a whole bunch of extra bits)
5168 subfic r10,r10,13 ; Get the extra bits we need
/macosx-10.5.8/xnu-1228.15.4/osfmk/sys/
H A Dsdi.h446 struct sb_extra extra; member in struct:xsb
/macosx-10.5.8/xnu-1228.15.4/libkern/
H A Dzlib.c522 * the same number of elements. To use different lengths, an extra flag
1676 * NOTE: this function should be optimized to avoid extra copying from
2007 static const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
2010 static const int extra_dbits[D_CODES] /* extra bits for each distance code */
2013 static const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
2038 * need for the L_CODES extra codes used during heap construction. However
2198 const intf *extra_bits; /* extra bits for each code or NULL */
2600 const intf *extra = desc->stat_desc->extra_bits; local
2606 int xbits; /* extra bits */
2628 if (n >= base) xbits = extra[
3188 int extra; /* number of extra bits to send */ local
[all...]

Completed in 202 milliseconds