/netbsd-src/sys/external/bsd/common/include/linux/ |
H A D | list.h | 283 #define list_for_each(VAR, HEAD) \ argument 284 for ((VAR) = list_first((HEAD)); \ 285 (VAR) != (HEAD); \ 288 #define list_for_each_prev(VAR, HEAD) \ argument 289 for ((VAR) = list_last((HEAD)); \ 290 (VAR) != (HEAD); \ 293 #define list_for_each_safe(VAR, NEXT, HEAD) \ argument 294 for ((VAR) = list_first((HEAD)); \ 295 ((VAR) != (HEAD)) && ((NEXT) = list_next((VAR)), 1); \ 301 #define list_for_each_entry(VAR, HEAD, FIELD) \ argument [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | regset.h | 47 #define INIT_REG_SET(HEAD) bitmap_initialize (HEAD, ®_obstack) argument 50 #define CLEAR_REG_SET(HEAD) bitmap_clear (HEAD) argument 53 #define REG_SET_EMPTY_P(HEAD) bitmap_empty_p (HEAD) argument 82 #define CLEAR_REGNO_REG_SET(HEAD, REG) bitmap_clear_bit (HEAD, REG) argument 85 #define SET_REGNO_REG_SET(HEAD, REG) bitmap_set_bit (HEAD, REG) argument
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | regset.h | 47 #define INIT_REG_SET(HEAD) bitmap_initialize (HEAD, ®_obstack) argument 50 #define CLEAR_REG_SET(HEAD) bitmap_clear (HEAD) argument 79 #define CLEAR_REGNO_REG_SET(HEAD, REG) bitmap_clear_bit (HEAD, REG) argument 82 #define SET_REGNO_REG_SET(HEAD, REG) bitmap_set_bit (HEAD, REG) argument
|
/netbsd-src/external/gpl3/binutils/dist/zlib/examples/ |
H A D | gzlog.c | 316 #define HEAD sizeof(log_gzhead) /* should be 16 */ macro 413 unsigned char buf[HEAD + EXTRA]; in log_head() 416 read(log->fd, buf, HEAD + EXTRA) != HEAD + EXTRA || in log_head() 417 memcmp(buf, log_gzhead, HEAD)) { in log_head() 420 log->first = PULL8(buf + HEAD); in log_head() 421 log->last = PULL8(buf + HEAD + 8); in log_head() 422 log->ccrc = PULL4(buf + HEAD + 16); in log_head() 423 log->clen = PULL4(buf + HEAD + 20); in log_head() 424 log->tcrc = PULL4(buf + HEAD + 24); in log_head() 425 log->tlen = PULL4(buf + HEAD + 28); in log_head() [all …]
|
/netbsd-src/external/gpl3/binutils.old/dist/zlib/examples/ |
H A D | gzlog.c | 316 #define HEAD sizeof(log_gzhead) /* should be 16 */ macro 413 unsigned char buf[HEAD + EXTRA]; in log_head() 416 read(log->fd, buf, HEAD + EXTRA) != HEAD + EXTRA || in log_head() 417 memcmp(buf, log_gzhead, HEAD)) { in log_head() 420 log->first = PULL8(buf + HEAD); in log_head() 421 log->last = PULL8(buf + HEAD + 8); in log_head() 422 log->ccrc = PULL4(buf + HEAD + 16); in log_head() 423 log->clen = PULL4(buf + HEAD + 20); in log_head() 424 log->tcrc = PULL4(buf + HEAD + 24); in log_head() 425 log->tlen = PULL4(buf + HEAD + 28); in log_head() [all …]
|
/netbsd-src/external/gpl3/gdb/dist/zlib/examples/ |
H A D | gzlog.c | 316 #define HEAD sizeof(log_gzhead) /* should be 16 */ macro 413 unsigned char buf[HEAD + EXTRA]; in log_head() 416 read(log->fd, buf, HEAD + EXTRA) != HEAD + EXTRA || in log_head() 417 memcmp(buf, log_gzhead, HEAD)) { in log_head() 420 log->first = PULL8(buf + HEAD); in log_head() 421 log->last = PULL8(buf + HEAD + 8); in log_head() 422 log->ccrc = PULL4(buf + HEAD + 16); in log_head() 423 log->clen = PULL4(buf + HEAD + 20); in log_head() 424 log->tcrc = PULL4(buf + HEAD + 24); in log_head() 425 log->tlen = PULL4(buf + HEAD + 28); in log_head() [all …]
|
/netbsd-src/external/gpl3/autoconf/dist/build-aux/ |
H A D | 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=
|
/netbsd-src/external/gpl2/dtc/dist/scripts/ |
H A D | 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 20 if git diff-index HEAD | read dummy; then
|
/netbsd-src/external/bsd/libbind/dist/resolv/ |
H A D | res_update.c | 128 for (zptr = HEAD(zgrps); zptr != NULL; zptr = NEXT(zptr, z_link)) in res_nupdate() 149 for (zptr = HEAD(zgrps); zptr != NULL; zptr = NEXT(zptr, z_link)) { in res_nupdate() 161 n = res_nmkupdate(statp, HEAD(zptr->z_rrlist), in res_nupdate() 191 zptr = HEAD(zgrps); in res_nupdate() 193 res_freeupdrec(HEAD(zptr->z_rrlist)); in res_nupdate()
|
H A D | res_findzonecut.c | 239 for (nsrr = HEAD(*nsrrsp); in satisfy() 259 for (arr = HEAD(nsrr->addrs); arr != NULL; arr = NEXT(arr, link)) { in add_addrs() 453 for (nsrr = HEAD(*nsrrsp); nsrr != NULL; nsrr = nsrr_n) { in get_glue() 642 while ((nsrr = HEAD(*nsrrsp)) != NULL) in free_nsrrset() 651 while ((arr = HEAD(nsrr->addrs)) != NULL) { in free_nsrr() 665 for (nsrr = HEAD(*nsrrsp); nsrr != NULL; nsrr = NEXT(nsrr, link)) in find_ns()
|
/netbsd-src/external/lgpl3/mpfr/dist/ |
H A D | version-ext.sh | 38 gitc=`git rev-list --count HEAD` 39 gith=`git rev-parse --short HEAD` 40 gitm=`git update-index -q --refresh; git diff-index --name-only HEAD`
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/ |
H A D | releasing.md | 3 * Make sure you're on master and synced to HEAD 8 * `git log $(git describe --abbrev=0 --tags)..HEAD` gives you the list of 9 commits between the last annotated tag and HEAD
|
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/ |
H A D | releasing.md | 3 * Make sure you're on master and synced to HEAD 8 * `git log $(git describe --abbrev=0 --tags)..HEAD` gives you the list of 9 commits between the last annotated tag and HEAD
|
/netbsd-src/external/bsd/am-utils/dist/amd/ |
H A D | sched.c | 191 p2 = NEXT(pjob, p), p != HEAD(pjob, &proc_wait_list); in wakeup() 232 while (AM_FIRST(pjob, &proc_list_head) != HEAD(pjob, &proc_list_head)) { in do_task_notify() 275 p2 = NEXT(pjob, p), p != HEAD(pjob, &proc_wait_list); 284 if (p == HEAD(pjob, &proc_wait_list))
|
/netbsd-src/sys/external/bsd/drm2/include/linux/ |
H A D | circ_buf.h | 35 #define CIRC_SPACE(HEAD, TAIL, SIZE) \ argument 36 (((TAIL) - ((HEAD) + 1)) & ((SIZE) - 1))
|
/netbsd-src/external/bsd/file/dist/ |
H A D | RELEASE-PROCEDURE | 18 - Click on "Edit" next to the HEAD version 19 - Change the "Version" from HEAD to the newly released version 23 - Type HEAD into the box at the bottom of the version list and
|
/netbsd-src/external/bsd/file/dist/magic/magdir/ |
H A D | scientific | 71 0 search/1/c 0\ HEAD GEDCOM genealogy text 84 # 0\040HEAD as UTF-16 big endian without BOM 93 # 0\040HEAD as UTF-16 little endian without BOM 103 # 0\040HEAD as UTF-16 big endian with BOM 105 # 0\040HEAD as UTF-16 little endian with BOM
|
/netbsd-src/external/gpl3/gcc/dist/contrib/ |
H A D | prepare-commit-msg | 50 if [ $SHA1 = HEAD ]; then 55 git log -1 --pretty=email HEAD > $f
|
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/ |
H A D | symtab.c | 96 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { in isc_symtab_destroy() 141 for (e = HEAD((s)->table[b]); e != NULL; e = NEXT(e, link)) { \ 147 for (e = HEAD((s)->table[b]); e != NULL; e = NEXT(e, link)) { \ 196 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { in grow_table()
|
H A D | lex.c | 271 source = HEAD(lex->sources); in isc_lex_close() 364 source = HEAD(lex->sources); in isc_lex_gettoken() 1028 source = HEAD(lex->sources); in isc_lex_ungettoken() 1047 source = HEAD(lex->sources); in isc_lex_getlasttokentext() 1067 source = HEAD(lex->sources); in isc_lex_getsourcename() 1081 source = HEAD(lex->sources); in isc_lex_getsourceline() 1096 source = HEAD(lex->sources); in isc_lex_setsourcename() 1112 source = HEAD(lex->sources); in isc_lex_setsourceline() 1128 source = HEAD(lex->sources); in isc_lex_isfile()
|
/netbsd-src/external/mpl/bind/dist/lib/isc/ |
H A D | symtab.c | 96 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { in isc_symtab_destroy() 138 for (e = HEAD((s)->table[b]); e != NULL; e = NEXT(e, link)) { \ 144 for (e = HEAD((s)->table[b]); e != NULL; e = NEXT(e, link)) { \ 191 for (elt = HEAD(symtab->table[i]); elt != NULL; elt = nelt) { in grow_table()
|
H A D | lex.c | 270 source = HEAD(lex->sources); in isc_lex_close() 363 source = HEAD(lex->sources); in isc_lex_gettoken() 1028 source = HEAD(lex->sources); in isc_lex_ungettoken() 1047 source = HEAD(lex->sources); in isc_lex_getlasttokentext() 1067 source = HEAD(lex->sources); in isc_lex_getsourcename() 1081 source = HEAD(lex->sources); in isc_lex_getsourceline() 1096 source = HEAD(lex->sources); in isc_lex_setsourcename() 1112 source = HEAD(lex->sources); in isc_lex_setsourceline() 1128 source = HEAD(lex->sources); in isc_lex_isfile()
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
H A D | httpdstat_example.txt | 8 TIME NUM GET POST HEAD TRACE 29 TIME NUM GET POST HEAD TRACE
|
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/ |
H A D | httpdstat_example.txt | 8 TIME NUM GET POST HEAD TRACE 29 TIME NUM GET POST HEAD TRACE
|
/netbsd-src/external/gpl2/xcvs/dist/acl/ |
H A D | README | 165 If you do not give the branch/tag information, default value of HEAD 229 lib with branch HEAD (since no branch/tag information given, branch defaults to HEAD). 230 Second command will set only write permission for group1 on directory lib with branch HEAD. 231 Members of group1 will have only commit rights on lib directory, branch HEAD, they can 265 d src HEAD | userX:wcd group1:r | defaults:r 271 f src/main.c HEAD | userX:wcd group1:r | defaults:r 272 f src/server.c HEAD | userX:wcd group1:r | defaults:r 273 f src/client.c HEAD | userX:wcd group1:r | defaults:r 277 f src/main.c HEAD | userX:wcd group1:r | defaults:r
|