Home
last modified time | relevance | path

Searched refs:pending (Results 1 – 6 of 6) sorted by relevance

/lib/
Dlist_sort.c187 struct list_head *list = head->next, *pending = NULL; in list_sort() local
216 struct list_head **tail = &pending; in list_sort()
232 list->prev = pending; in list_sort()
233 pending = list; in list_sort()
235 pending->next = NULL; in list_sort()
240 list = pending; in list_sort()
241 pending = pending->prev; in list_sort()
243 struct list_head *next = pending->prev; in list_sort()
247 list = merge(priv, cmp, pending, list); in list_sort()
248 pending = next; in list_sort()
[all …]
DKconfig.debug1172 worker pool doesn't make forward progress on a pending work
/lib/zlib_deflate/
Ddefutil.h79 int pending; /* nb of bytes in the pending buffer */ member
260 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}
424 unsigned len = s->pending; in flush_pending()
436 s->pending -= len; in flush_pending()
437 if (s->pending == 0) { in flush_pending()
Ddeftree.c1004 Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow");
1056 memcpy(&s->pending_buf[s->pending], buf, len);
1057 s->pending += len;
Ddeflate.c296 s->pending = 0; in zlib_deflateReset()
376 if (s->pending != 0) { in zlib_deflate()
464 return s->pending != 0 ? Z_OK : Z_STREAM_END; in zlib_deflate()
/lib/zlib_dfltcc/
Ddfltcc_deflate.c85 if (state->pending != 0) { in send_eobs()
92 memmove(state->pending_buf, state->pending_out, state->pending); in send_eobs()
202 Assert(state->pending == 0, "There must be no pending bytes"); in dfltcc_deflate()