Searched refs:pending (Results 1 – 6 of 6) sorted by relevance
| /lib/ |
| A D | list_sort.c | 191 struct list_head *list = head->next, *pending = NULL; in list_sort() local 220 struct list_head **tail = &pending; in list_sort() 236 list->prev = pending; in list_sort() 237 pending = list; in list_sort() 239 pending->next = NULL; in list_sort() 244 list = pending; in list_sort() 245 pending = pending->prev; in list_sort() 247 struct list_head *next = pending->prev; in list_sort() 251 list = merge(priv, cmp, pending, list); in list_sort() 252 pending = next; in list_sort() [all …]
|
| A D | Kconfig.debug | 1298 worker pool doesn't make forward progress on a pending work
|
| /lib/zlib_deflate/ |
| A D | defutil.h | 79 int pending; /* nb of bytes in the pending buffer */ member 260 #define put_byte(s, c) {s->pending_buf[s->pending++] = (c);} 427 len = s->pending; in flush_pending() 438 s->pending -= len; in flush_pending() 439 if (s->pending == 0) { in flush_pending()
|
| A D | deftree.c | 1004 Assert(s->pending < s->lit_bufsize + 2*lx, "pendingBuf overflow"); 1056 memcpy(&s->pending_buf[s->pending], buf, len); 1057 s->pending += len;
|
| A D | deflate.c | 293 s->pending = 0; in zlib_deflateReset() 373 if (s->pending != 0) { in zlib_deflate() 464 if (s->pending == 0) { in zlib_deflate()
|
| /lib/zlib_dfltcc/ |
| A D | dfltcc_deflate.c | 104 if (state->pending != 0) { in send_eobs() 111 memmove(state->pending_buf, state->pending_out, state->pending); in send_eobs() 233 Assert(state->pending == 0, "There must be no pending bytes"); in dfltcc_deflate()
|
Completed in 27 milliseconds