/src/sys/external/bsd/drm2/include/linux/ |
circ_buf.h | 35 #define CIRC_SPACE(HEAD, TAIL, SIZE) \ 36 (((TAIL) - ((HEAD) + 1)) & ((SIZE) - 1))
|
llist.h | 47 init_llist_head(struct llist_head *head) 50 head->first = NULL; 56 llist_empty(struct llist_head *head) 60 empty = (atomic_load_acquire(&head->first) == NULL); 66 llist_add(struct llist_node *node, struct llist_head *head) 71 first = head->first; 74 } while (atomic_cas_ptr(&head->first, first, node) != first); 81 struct llist_head *head) 86 next = atomic_load_consume(&head->first); 88 } while (atomic_cas_ptr(&head->first, next, first) != next) [all...] |
/src/sys/external/bsd/common/include/linux/ |
list.h | 61 INIT_LIST_HEAD(struct list_head *head) 63 head->prev = head; 64 head->next = head; 68 list_first(const struct list_head *head) 70 return head->next; 74 list_last(const struct list_head *head) 76 return head->prev; 92 list_empty(const struct list_head *head) [all...] |
/src/common/dist/zlib/examples/ |
gzlog.c | 316 #define HEAD sizeof(log_gzhead) /* should be 16 */ 318 /* initial gzip extra field content (52 == HEAD + EXTRA + 1) */ 413 unsigned char buf[HEAD + EXTRA]; 416 read(log->fd, buf, HEAD + EXTRA) != HEAD + EXTRA || 417 memcmp(buf, log_gzhead, HEAD)) { 420 log->first = PULL8(buf + HEAD); 421 log->last = PULL8(buf + HEAD + 8); 422 log->ccrc = PULL4(buf + HEAD + 16); 423 log->clen = PULL4(buf + HEAD + 20) [all...] |
gznorm.c | 98 enum { // BETWEEN -> HEAD -> BLOCK -> TAIL -> BETWEEN -> ... 100 HEAD, // reading a gzip header 175 state = HEAD; 176 // Fall through to HEAD when some or all of the header is 179 case HEAD:
|
/src/common/dist/zlib/ |
inflate.h | 21 HEAD = 16180, /* i: waiting for magic header */ 61 HEAD -> (gzip) or (zlib) or (raw) 94 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
|
inflate.c | 103 state->mode < HEAD || state->mode > SYNC) 117 state->mode = HEAD; 122 state->head = Z_NULL; 211 state->mode = HEAD; /* to pass state test in inflateReset2() */ 631 case HEAD: 647 if (state->head != Z_NULL) 648 state->head->done = -1; 693 if (state->head != Z_NULL) 694 state->head->text = (int)((hold >> 8) & 1); 702 if (state->head != Z_NULL [all...] |
/src/games/worm/ |
worm.c | 59 #define HEAD '@' 74 static struct body *head, *tail, goody; variable in typeref:struct:body * 176 head = newlink(); 177 head->x = start_len % (COLS-5) + 2; 178 head->y = LINES / 2; 179 head->next = NULL; 180 display(head, HEAD); 181 for (i = 0, bp = head; i < start_len; i++, bp = np) { 268 x = head->x [all...] |
/src/ |
README.md | 22 - [Daily builds](https://nycdn.NetBSD.org/pub/NetBSD-daily/HEAD/latest/)
|
/src/lib/libc/include/isc/ |
list.h | 24 #define LIST(type) struct { type *head, *tail; } 26 do { (list).head = NULL; (list).tail = NULL; } while (0) 39 #define HEAD(list) ((list).head) 41 #define EMPTY(list) ((list).head == NULL) 46 if ((list).head != NULL) \ 47 (list).head->link.prev = (elt); \ 51 (elt)->link.next = (list).head; \ 52 (list).head = (elt); \ 61 (list).head = (elt); [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
omap3-ha-lcd.dts | 10 model = "TI OMAP3 HEAD acoustics LCD-baseboard with TAO3530 SOM";
|
/src/doc/ |
TODO.compat-module | 73 XEN kernels. This limitation also exists on HEAD. 90 into the monolithic COMPAT module on HEAD. Thus, its absence from 95 currently included in the monolithic COMPAT module on HEAD, so lack of
|
/src/regress/sys/fs/lfs/ckckp/ |
check-all | 233 m/FREE LIST HEAD IN SUPERBLOCK/ ) {
|
/src/sys/arch/luna68k/dev/xplx/ |
xplx.asm | 1373 POP HL ; HEAD
|