Searched refs:head (Results 176 - 200 of 766) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/ipfilter/
H A Dradix_ipf.c172 /* Paramters: head(I) - pointer to tree head to search */
181 ipf_rx_match(head, addr)
182 ipf_rdx_head_t *head;
198 node = ipf_rx_find_addr(head->root, (u_32_t *)addr);
244 /* Paramters: head(I) - pointer to tree head to search */
252 ipf_rx_lookup(head, addr, mask)
253 ipf_rdx_head_t *head;
261 found = ipf_rx_find_addr(head
1038 ipf_rdx_head_t *head = arg; local
1435 checktree(ipf_rdx_head_t *head) argument
[all...]
/freebsd-10.0-release/sys/contrib/ipfilter/netinet/
H A Dradix_ipf.c172 /* Paramters: head(I) - pointer to tree head to search */
181 ipf_rx_match(head, addr)
182 ipf_rdx_head_t *head;
198 node = ipf_rx_find_addr(head->root, (u_32_t *)addr);
244 /* Paramters: head(I) - pointer to tree head to search */
252 ipf_rx_lookup(head, addr, mask)
253 ipf_rdx_head_t *head;
261 found = ipf_rx_find_addr(head
1038 ipf_rdx_head_t *head = arg; local
1435 checktree(ipf_rdx_head_t *head) argument
[all...]
/freebsd-10.0-release/contrib/mdocml/
H A Dhtml.c49 {"head", HTML_CLRLINE}, /* TAG_HEAD */
133 h->tags.head = NULL;
181 while ((tag = h->tags.head) != NULL) {
182 h->tags.head = tag->next;
406 t->next = h->tags.head;
407 h->tags.head = t;
540 while ((tag = h->tags.head) != NULL) {
550 h->tags.head = tag->next;
563 while ((tag = h->tags.head) != NULL) {
575 h->tags.head
[all...]
H A Dstyle.css29 table.head { font-size: smaller; margin-bottom: 1em; border-bottom: 1px dotted #dddddd; } /* Document header. */
30 td.head-ltitle { width: 10%; } /* Document header: left-title. */
31 td.head-vol { width: 80%; text-align: center; } /* Document header: volume. */
32 td.head-rtitle { width: 10%; text-align: right; } /* Document header: right-title. */
/freebsd-10.0-release/lib/libc/rpc/
H A Dgetnetconfig.c106 struct netconfig_list *head; /* head of the list */ member in struct:netconfig_info
220 nc_vars->nc_configs = ni.head;
278 ncp->nc_configs = ni.head;
355 * If this is the first entry that's been read, it is the head of
361 if (ni.head == NULL) { /* first entry */
362 ni.head = ni.tail = list;
416 q = ni.head;
418 ni.head = NULL;
473 if (ni.head !
[all...]
/freebsd-10.0-release/sys/dev/hpt27xx/
H A Dhpt27xx_os_bsd.c202 list->head = 0;
213 HPT_ASSERT(list->head);
214 result = list->head;
215 list->head = *(void **)result;
226 *(void **)p = list->head;
227 list->head = p;
242 list->head = 0;
263 *(void **)p = list->head;
265 list->head = p;
/freebsd-10.0-release/contrib/ofed/libmlx4/src/
H A Dsrq.c84 if (srq->head == srq->tail) {
91 srq->wrid[srq->head] = wr->wr_id;
93 next = get_wqe(srq, srq->head);
94 srq->head = ntohs(next->next_wqe_index);
171 srq->head = 0;
/freebsd-10.0-release/lib/libc/gen/
H A Dfts.c628 FTSENT *p, *head; local
739 for (head = tail = NULL, nitems = 0; dirp && (dp = readdir(dirp));) {
757 fts_lfree(head);
816 if (head == NULL)
817 head = tail = p;
832 fts_padjust(sp, head);
866 head = fts_sort(sp, head, nitems);
867 return (head);
966 fts_sort(FTS *sp, FTSENT *head, size_ argument
1042 fts_lfree(FTSENT *head) argument
1073 fts_padjust(FTS *sp, FTSENT *head) argument
[all...]
/freebsd-10.0-release/sys/dev/ciss/
H A Dcissvar.h366 ciss_enqueue_complete(struct ciss_request *ac, cr_qhead_t *head) argument
369 STAILQ_INSERT_TAIL(head, ac, cr_link);
373 ciss_dequeue_complete(struct ciss_softc *sc, cr_qhead_t *head) argument
377 if ((ac = STAILQ_FIRST(head)) != NULL)
378 STAILQ_REMOVE_HEAD(head, cr_link);
/freebsd-10.0-release/sys/dev/hatm/
H A Dif_hatm_intr.c159 while (q->head != (*tailp >> 2)) {
160 no = (q->tbrq[q->head].addr & HE_REGM_TBRQ_ADDR) >>
163 (q->tbrq[q->head].addr & HE_REGM_TBRQ_FLAGS));
165 if (++q->head == q->size)
166 q->head = 0;
168 WRITE4(sc, HE_REGO_TBRQ_H(group), q->head << 2);
323 rbp->head = (READ4(sc, HE_REGO_RBP_S(large, group)) >> HE_REGS_RBP_HEAD)
329 if (ntail == rbp->head)
510 if (rq->head == tail)
513 e = &rq->rbrq[rq->head];
[all...]
/freebsd-10.0-release/usr.bin/fstat/
H A Dfuser.c290 struct filestat_list *head; local
295 head = procstat_getfiles(procstat, kp, flags & MFLAG);
296 if (head == NULL)
298 STAILQ_FOREACH(fst, head, next) {
350 procstat_freefiles(procstat, head);
/freebsd-10.0-release/usr.bin/paste/
H A Dpaste.c136 LIST *head, *tmp; local
139 for (cnt = 0, head = tmp = NULL; (p = *argv); ++argv, ++cnt) {
149 if (!head)
150 head = tmp = lp;
158 for (output = 0, lp = head; lp; lp = lp->next) {
/freebsd-10.0-release/contrib/gcc/
H A Dgenrecog.c1557 where we reach the head of the list or where we pass a
1612 factor_tests (struct decision_head *head)
1616 for (first = head->first; first && first->next; first = next)
1649 old_last = head->last;
1650 head->last = first;
1669 merge_trees (head, &h);
1677 next->prev = head->last;
1678 head->last->next = next;
1679 head->last = old_last;
1684 for (first = head
1607 factor_tests(struct decision_head *head) argument
1692 simplify_tests(struct decision_head *head) argument
1729 break_out_subroutines(struct decision_head *head, int initial) argument
1749 find_afterward(struct decision_head *head, struct decision *real_afterward) argument
2316 write_tree_1(struct decision_head *head, int depth, enum routine_type subroutine_type) argument
2350 write_tree(struct decision_head *head, const char *prevpos, enum routine_type type, int initial) argument
2407 write_subroutine(struct decision_head *head, enum routine_type type) argument
2462 write_subroutines(struct decision_head *head, enum routine_type type) argument
2547 struct decision_head head; local
2706 process_tree(struct decision_head *head, enum routine_type subroutine_type) argument
[all...]
/freebsd-10.0-release/contrib/binutils/ld/
H A Dldlang.c823 lang_for_each_statement_worker (func, constructor_list.head);
827 (func, s->output_section_statement.children.head);
831 s->wild_statement.children.head);
835 s->group_statement.children.head);
859 lang_for_each_statement_worker (func, statement_list.head);
867 list->head = NULL;
868 list->tail = &list->head;
1046 if (lang_output_section_statement.head != NULL)
1303 first = &lang_output_section_statement.head->output_section_statement;
1551 && after != (&lang_output_section_statement.head
6555 lang_vers_match(struct bfd_elf_version_expr_head *head, struct bfd_elf_version_expr *prev, const char *sym) argument
6774 lang_finalize_version_expr_head(struct bfd_elf_version_expr_head *head) argument
[all...]
/freebsd-10.0-release/sys/netgraph/netflow/
H A Dnetflow.c410 TAILQ_INSERT_TAIL(&hsh->head, fle, fle_hash);
506 TAILQ_INSERT_TAIL(&hsh6->head, (struct flow_entry *)fle6, fle_hash);
545 TAILQ_INIT(&hsh->head);
556 TAILQ_INIT(&hsh->head);
620 TAILQ_FOREACH_SAFE(fle, &hsh->head, fle_hash, fle1) {
621 TAILQ_REMOVE(&hsh->head, fle, fle_hash);
627 TAILQ_FOREACH_SAFE(fle, &hsh->head, fle_hash, fle1) {
628 TAILQ_REMOVE(&hsh->head, fle, fle_hash);
751 TAILQ_FOREACH_REVERSE_SAFE(fle, &hsh->head, fhead, fle_hash, fle1) {
755 TAILQ_REMOVE(&hsh->head, fl
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/sgs/include/
H A Dsgs.h155 (void) (((N) = (L)->head) != NULL && ((D) = (N)->data) != NULL); \
168 Listnode *head; /* the first element */ member in struct:list
183 Elf32_Addr head; /* the first element */ member in struct:list32
/freebsd-10.0-release/contrib/libreadline/
H A Dundo.c137 _rl_copy_undo_list (head)
138 UNDO_LIST *head;
142 list = head;
/freebsd-10.0-release/sys/pc98/cbus/
H A Dsctermvar.h46 static __inline void sc_term_up(scr_stat *scp, int n, int head);
51 int attr, int head, int tail);
53 int attr, int head, int tail);
140 sc_term_up(scr_stat *scp, int n, int head) argument
144 n = imin(n, scp->ypos - head);
180 sc_term_up_scroll(scr_stat *scp, int n, int ch, int attr, int head, int tail) argument
186 if (n <= scp->ypos - head) {
189 sc_term_ins_line(scp, head, n - (scp->ypos - head),
191 sc_move_cursor(scp, scp->xpos, head);
196 sc_term_down_scroll(scr_stat *scp, int n, int ch, int attr, int head, int tail) argument
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dsolib-osf.c68 /* Per-module information structure referenced by ldr_context_t.head. */
107 CORE_ADDR head; member in struct:__anon1329
385 ctxt->next = ldr_context.head;
524 struct so_list *head = NULL, *tail, *newtail, so; local
547 if (!head)
548 head = newtail;
559 return head;
/freebsd-10.0-release/crypto/heimdal/base/
H A Dheimbase.c386 struct heim_auto_release *head; member in struct:ar_tls
395 if (tls->head)
396 heim_release(tls->head);
455 if (tls->current != tls->head)
494 heim_abort("Failed to create/get autorelease head");
499 if (tls->head == NULL)
500 tls->head = ar;
/freebsd-10.0-release/crypto/openssh/
H A Dmonitor_mm.c62 mm_make_entry(struct mm_master *mm, struct mmtree *head, argument
74 tmp2 = RB_INSERT(mmtree, head, tmp);
120 mm_freelist(struct mm_master *mmalloc, struct mmtree *head) argument
124 for (mms = RB_ROOT(head); mms; mms = next) {
125 next = RB_NEXT(mmtree, head, mms);
126 RB_REMOVE(mmtree, head, mms);
/freebsd-10.0-release/sys/dev/tws/
H A Dtws_services.c92 volatile u_int16_t head, tail; local
95 head = sc->trace_q.head;
109 if ( head == tail ) {
111 sc->trace_q.head = (head+1) % sc->trace_q.depth;
333 /* The given node is not at head or tail.
/freebsd-10.0-release/usr.sbin/pmccontrol/
H A Dpmccontrol.c69 static STAILQ_HEAD(pmcc_op_list, pmcc_op) head = STAILQ_HEAD_INITIALIZER(head);
362 STAILQ_INIT(&head);
420 STAILQ_INSERT_TAIL(&head, p, op_next);
476 if (STAILQ_EMPTY(&head))
479 error = pmcc_do_enable_disable(&head);
/freebsd-10.0-release/contrib/groff/src/preproc/html/
H A Dpre-html.cpp415 char_block *head; member in class:char_buffer
425 : head(0), tail(0)
435 while (head != NULL) {
436 char_block *temp = head;
437 head = head->next;
453 head = tail;
778 char_block *element = head;
850 imageItem *head; member in class:imageList
869 : head(
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h47 CrashRecoveryContextCleanup *head; member in class:llvm::CrashRecoveryContext
50 CrashRecoveryContext() : Impl(0), head(0) {}

Completed in 394 milliseconds

1234567891011>>