Searched refs:free_chunks (Results 1 - 6 of 6) sorted by relevance

/freebsd-9.3-release/contrib/gcc/
H A Dggc-zone.c391 struct alloc_chunk *free_chunks[NUM_FREE_BINS + 1]; member in struct:alloc_zone
984 chunk->next_free = zone->free_chunks[bin];
991 chunk->next_free = zone->free_chunks[bin];
996 zone->free_chunks[bin] = chunk;
1062 && (chunk = zone->free_chunks[bin]) != NULL)
1067 zone->free_chunks[bin] = chunk->next_free;
1091 && zone->free_chunks[zone->high_free_bin] == NULL)
1097 chunk = zone->free_chunks[tbin];
1100 zone->free_chunks[tbin] = chunk->next_free;
1126 pp = &(zone->free_chunks[
[all...]
/freebsd-9.3-release/sys/netinet/
H A Dsctp_var.h147 TAILQ_INSERT_TAIL(&(_stcb)->asoc.free_chunks, (_chk), sctp_next); \
158 if (TAILQ_EMPTY(&(_stcb)->asoc.free_chunks)) { \
166 (_chk) = TAILQ_FIRST(&(_stcb)->asoc.free_chunks); \
167 TAILQ_REMOVE(&(_stcb)->asoc.free_chunks, (_chk), sctp_next); \
H A Dsctp_structs.h777 struct sctpchunk_listhead free_chunks; member in struct:sctp_association
H A Dsctp_uio.h272 uint32_t free_chunks; member in struct:sctp_pcbinfo
H A Dsctp_pcb.c96 spcb->free_chunks = SCTP_BASE_INFO(ipi_free_chunks);
4965 TAILQ_FOREACH_SAFE(chk, &asoc->free_chunks, sctp_next, nchk) {
4966 TAILQ_REMOVE(&asoc->free_chunks, chk, sctp_next);
H A Dsctputil.c1082 TAILQ_INIT(&asoc->free_chunks);

Completed in 90 milliseconds