| /netbsd/src/external/bsd/tcpdump/dist/ |
| D | cpack.c | 64 next = nd_cpack_next_boundary(cs->c_buf, cs->c_next, wordsize); in nd_cpack_align_and_reserve() 78 if (cs->c_next - cs->c_buf + toskip > cs->c_len) in nd_cpack_advance() 80 cs->c_next += toskip; in nd_cpack_advance() 91 cs->c_next = cs->c_buf; in nd_cpack_init() 108 cs->c_next = next + sizeof(*u); in nd_cpack_uint64() 124 cs->c_next = next + sizeof(*u); in nd_cpack_int64() 140 cs->c_next = next + sizeof(*u); in nd_cpack_uint32() 156 cs->c_next = next + sizeof(*u); in nd_cpack_int32() 172 cs->c_next = next + sizeof(*u); in nd_cpack_uint16() 188 cs->c_next = next + sizeof(*u); in nd_cpack_int16() [all …]
|
| D | cpack.h | 34 const uint8_t *c_next; member
|
| /netbsd/src/external/bsd/am-utils/dist/amd/ |
| D | clock.c | 63 callout *c_next; /* List of callouts */ member 97 free_callouts = free_callouts->c_next; in alloc_callout() 110 cp->c_next = free_callouts; in free_callout() 143 for (cp = &callouts; (cp2 = cp->c_next); cp = cp2) in timeout() 150 cp->c_next = cpnew; in timeout() 151 cpnew->c_next = cp2; in timeout() 167 for (cp = &callouts; (cp2 = cp->c_next); cp = cp2) { in untimeout() 169 cp->c_next = cp2->c_next; in untimeout() 185 for (cp = callouts.c_next; cp; cp = cp->c_next) { in reschedule_timeouts() 214 while ((cp = callouts.c_next) && cp->c_time <= now) { in softclock() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | opt-include.awk | 23 c_next = 0 27 (c_next != 0) { print "OPTIONS_C_EXTRA += $(srcdir)/" $1; c_next = 0 } 28 /^HeaderInclude$/ { h_next = 1; c_next = 0 } 29 /^SourceInclude$/ { h_next = 0; c_next = 1 }
|
| /netbsd/src/games/gomoku/ |
| D | makemove.c | 67 if (cbp->c_next == NULL) in sortframes_remove() 71 sortframes[BLACK] = cbp->c_next; in sortframes_remove() 73 sortframes[WHITE] = cbp->c_next; in sortframes_remove() 74 cbp->c_next->c_prev = cbp->c_prev; in sortframes_remove() 75 cbp->c_prev->c_next = cbp->c_next; in sortframes_remove() 183 sortframes[us] = cbp->c_next = cbp->c_prev = cbp; in makemove() 192 cbp1 = cbp1->c_next; in makemove() 198 cbp->c_next = cbp1; in makemove() 200 cbp1->c_prev->c_next = cbp; in makemove()
|
| D | pickmove.c | 342 } while ((cbp = cbp->c_next) != ecbp); in scanframes() 403 ncbp = cbp->c_next; in scanframes() 637 } while ((cbp = cbp->c_next) != ecbp); in addframes() 652 pcbp->c_next = cbp; in addframes() 654 cbp->c_prev->c_next = ecbp; in addframes() 1060 cbp->c_next = cbp; in appendcombo() 1065 cbp->c_next = ncbp; in appendcombo() 1068 pcbp->c_next = cbp; in appendcombo() 1264 fcbp->c_next = fcbp->c_prev = fcbp; in sortcombo() 1308 } while ((cbp = cbp->c_next) != ecbp); in sortcombo() [all …]
|
| D | gomoku.h | 158 struct combostr *c_next; /* list of combos at the same level */ member
|
| /netbsd/src/external/cddl/osnet/dist/uts/common/os/ |
| D | callb.c | 50 struct callb *c_next; /* next in class or on freelist */ member 114 ct->ct_freelist = cp->c_next; in callb_fini() 150 ct->ct_freelist = cp->c_next; in callb_add_common() 168 cp->c_next = ct->ct_first_cb[class]; in callb_add_common() 217 pp = &(*pp)->c_next; in callb_delete() 238 *pp = me->c_next; in callb_delete() 242 me->c_next = ct->ct_freelist; in callb_delete() 266 cp != NULL && ret == 0; cp = cp->c_next) { in callb_execute_class() 386 cp != NULL && tp != cp->c_thread; cp = cp->c_next) in callb_is_stopped()
|
| /netbsd/src/usr.bin/rdist/ |
| D | gram.y | 382 for (prev = NULL, c = cmds; c!=NULL; prev = c, c = c->c_next) { in insert() 386 c = c->c_next; in insert() 403 nc->c_next = c; in insert() 407 prev->c_next = nc; in insert() 432 c->c_next = NULL; in append() 436 last_cmd->c_next = c; in append()
|
| D | defs.h | 122 struct cmd *c_next; member
|
| D | docmd.c | 85 for (c = cmds; c != NULL; c = c->c_next) { in docmds()
|
| /netbsd/src/sys/arch/shark/shark/ |
| D | scr.c | 530 struct callout_t *c_next; /* next callout in queue */ member 3394 scrClkCallTodo.c_next = NULL; in scrClkInit() 3401 c->c_next = new; in scrClkInit() 3405 c->c_next = NULL; in scrClkInit() 3449 ASSERT(scrClkCallTodo.c_next == NULL); in scrClkStart() 3546 ASSERT(scrClkCallTodo.c_next == NULL); in scrClkStop() 3598 for (p1 = scrClkCallTodo.c_next; p1 != NULL; p1 = p1->c_next) in hatClkIrq() 3616 while ((c = scrClkCallTodo.c_next) != NULL && c->c_time <= 0) in hatClkIrq() 3621 scrClkCallTodo.c_next = c->c_next; in hatClkIrq() 3622 c->c_next = scrClkCallFree; in hatClkIrq() [all …]
|
| /netbsd/src/sys/net/npf/ |
| D | npf_conndb.c | 252 atomic_store_relaxed(&con->c_next, head); in npf_conndb_enqueue() 268 npf_conn_t *next = atomic_load_relaxed(&con->c_next); // union in npf_conndb_update()
|
| D | npf_conn.h | 65 npf_conn_t * c_next; member
|
| /netbsd/src/external/bsd/ppp/dist/pppd/ |
| D | main.c | 1405 struct callout *c_next; member 1437 for (pp = &callout; (p = *pp); pp = &p->c_next) in ppp_timeout() 1442 newp->c_next = p; in ppp_timeout() 1458 for (copp = &callout; (freep = *copp); copp = &freep->c_next) in ppp_untimeout() 1460 *copp = freep->c_next; in ppp_untimeout() 1485 callout = p->c_next; in calltimeout()
|
| /netbsd/src/usr.bin/mail/ |
| D | def.h | 397 struct cond_stack_s *c_next; member
|
| D | cmd3.c | 968 csp->c_next = cond_stack; in push_cond() 982 cond_stack = csp->c_next; in pop_cond()
|