| /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/external/gpl2/dtc/dist/scripts/ |
| setlocalversion | 13 if head=`git rev-parse --verify HEAD 2>/dev/null`; then 15 if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then 16 printf '%s%s' -g `echo "$head" | cut -c1-8` 20 if git diff-index HEAD | read dummy; then
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| regset.h | 34 /* Head of register set linked list. */ 47 #define INIT_REG_SET(HEAD) bitmap_initialize (HEAD, ®_obstack) 50 #define CLEAR_REG_SET(HEAD) bitmap_clear (HEAD) 53 #define REG_SET_EMPTY_P(HEAD) bitmap_empty_p (HEAD) 82 #define CLEAR_REGNO_REG_SET(HEAD, REG) bitmap_clear_bit (HEAD, REG) 85 #define SET_REGNO_REG_SET(HEAD, REG) bitmap_set_bit (HEAD, REG [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/external/apache2/llvm/dist/libcxx/utils/ci/ |
| buildkite-pipeline-premerge.sh | 20 if ! git diff --name-only HEAD~1 | grep -q -E "libcxx/|libcxxabi/"; then
|
| /src/external/gpl3/autoconf/dist/build-aux/ |
| git-version-gen | 154 && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \ 155 || git describe --abbrev=4 HEAD 2>/dev/null` \ 174 commit_list=`git rev-list "$vtag"..HEAD 2>/dev/null` \ 200 dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty=
|
| /src/external/gpl3/gcc.old/dist/contrib/ |
| prepare-commit-msg | 44 cmd="diff --cached HEAD^" 48 # The message of an existing commit. If it's HEAD, assume --amend; 50 if [ $SHA1 = HEAD ]; then 51 cmd="diff --cached HEAD^" 55 git log -1 --pretty=email HEAD > $f
|
| /src/external/bsd/libbind/dist/resolv/ |
| res_update.c | 128 for (zptr = HEAD(zgrps); zptr != NULL; zptr = NEXT(zptr, z_link)) 149 for (zptr = HEAD(zgrps); zptr != NULL; zptr = NEXT(zptr, z_link)) { 161 n = res_nmkupdate(statp, HEAD(zptr->z_rrlist), 191 zptr = HEAD(zgrps); 193 res_freeupdrec(HEAD(zptr->z_rrlist));
|
| /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/external/gpl3/binutils/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/external/gpl3/binutils.old/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/external/bsd/am-utils/dist/amd/ |
| sched.c | 191 p2 = NEXT(pjob, p), p != HEAD(pjob, &proc_wait_list); 232 while (AM_FIRST(pjob, &proc_list_head) != HEAD(pjob, &proc_list_head)) { 275 p2 = NEXT(pjob, p), p != HEAD(pjob, &proc_wait_list); 284 if (p == HEAD(pjob, &proc_wait_list))
|
| /src/external/cddl/osnet/dist/uts/common/zmod/ |
| inflate.h | 23 HEAD, /* i: waiting for magic header */ 61 HEAD -> (gzip) or (zlib) 88 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
|
| /src/external/bsd/nvi/dist/dist/ |
| export | 2 revision=${@:-HEAD}
|
| /src/external/bsd/byacc/dist/ |
| mstring.c | 18 /* parameters about string length. HEAD is the starting size and 19 ** HEAD+TAIL should be a power of two */ 20 #define HEAD 24 131 if ((n->base = n->ptr = MALLOC(HEAD)) != NULL) 133 n->end = n->base + HEAD;
|
| /src/external/bsd/am-utils/dist/fsinfo/ |
| fsinfo.h | 130 #define HEAD(ty, q) ((ty *) q) 132 #define ITER(v, ty, q) for ((v) = AM_FIRST(ty,(q)); (v) != HEAD(ty,(q)); (v) = NEXT(ty,(v)))
|
| /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
|
| /src/external/gpl3/binutils/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
|
| /src/external/gpl3/binutils.old/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
|
| /src/external/gpl3/gcc.old/dist/maintainer-scripts/ |
| update_version_svn | 10 ADD_BRANCHES='HEAD' 38 # Check out the files on the branch. HEAD is in a different namespace. 39 if test "$BRANCH" = HEAD; then
|
| /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...] |