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

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Dinflate.c117 state->head = Z_NULL;
604 if (state->head != Z_NULL)
605 state->head->done = -1;
647 if (state->head != Z_NULL)
648 state->head->text = (int)((hold >> 8) & 1);
654 if (state->head != Z_NULL)
655 state->head->time = hold;
661 if (state->head != Z_NULL) {
662 state->head->xflags = (int)(hold & 0xff);
663 state->head
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/
H A Dmultipath_wrandom.c71 struct list_head head; member in struct:multipath_bucket
101 list_for_each_entry_rcu(r, &state[state_idx].head, list) {
138 INIT_LIST_HEAD(&state[i].head);
221 list_for_each_entry_rcu(r, &state[state_idx].head, list) {
238 list_add_rcu(&target_route->list, &state[state_idx].head);
269 static void __multipath_free(struct rcu_head *head) argument
271 struct multipath_route *rt = container_of(head, struct multipath_route,
276 static void __multipath_free_dst(struct rcu_head *head) argument
278 struct multipath_dest *dst = container_of(head,
293 list_for_each_entry_rcu(r, &state[i].head, lis
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sctp/
H A Dproc.c224 struct sctp_hashbucket *head; local
233 head = &sctp_ep_hashtable[hash];
235 read_lock(&head->lock);
236 for (epb = head->chain; epb; epb = epb->next) {
247 read_unlock(&head->lock);
327 struct sctp_hashbucket *head; local
336 head = &sctp_assoc_hashtable[hash];
338 read_lock(&head->lock);
339 for (epb = head->chain; epb; epb = epb->next) {
358 read_unlock(&head
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pci/hotplug/
H A Dcpqphp_ctrl.c317 * @head: list to sort
320 static int sort_by_size(struct pci_resource **head) argument
326 if (!(*head))
329 if (!((*head)->next))
335 /* Special case for swapping list head */
336 if (((*head)->next) &&
337 ((*head)->length > (*head)->next->length)) {
339 current_res = *head;
340 *head
369 sort_by_max_size(struct pci_resource **head) argument
417 do_pre_bridge_resource_split(struct pci_resource **head, struct pci_resource **orig_head, u32 alignment) argument
491 do_bridge_resource_split(struct pci_resource **head, u32 alignment) argument
545 get_io_resource(struct pci_resource **head, u32 size) argument
639 get_max_resource(struct pci_resource **head, u32 size) argument
733 get_resource(struct pci_resource **head, u32 size) argument
824 cpqhp_resource_sort_and_combine(struct pci_resource **head) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/bridge/
H A Dbr_fdb.c362 static void fdb_rcu_free(struct rcu_head *head) argument
365 = container_of(head, struct net_bridge_fdb_entry, rcu);
429 static inline struct net_bridge_fdb_entry *fdb_find(struct hlist_head *head, argument
435 hlist_for_each_entry_rcu(fdb, h, head, hlist) {
442 static struct net_bridge_fdb_entry *fdb_create(struct hlist_head *head, argument
458 hlist_add_head_rcu(&fdb->hlist, head);
478 struct hlist_head *head = &br->hash[br_mac_hash(addr)]; local
484 fdb = fdb_find(head, addr);
498 if (!fdb_create(head, source, addr, 1))
518 struct hlist_head *head local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/
H A DMakefile54 head-y := arch/ppc/kernel/head.o
55 head-$(CONFIG_8xx) := arch/ppc/kernel/head_8xx.o
56 head-$(CONFIG_4xx) := arch/ppc/kernel/head_4xx.o
57 head-$(CONFIG_44x) := arch/ppc/kernel/head_44x.o
58 head-$(CONFIG_FSL_BOOKE) := arch/ppc/kernel/head_fsl_booke.o
60 head-$(CONFIG_PPC_FPU) += arch/powerpc/kernel/fpu.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/sunrpc/
H A Dsched.h105 #define task_for_each(task, pos, head) \
106 list_for_each(pos, head) \
109 #define task_for_first(task, head) \
110 if (!list_empty(head) && \
111 ((task=list_entry((head)->next, struct rpc_task, u.tk_wait.list)),1))
114 #define alltask_for_each(task, pos, head) \
115 list_for_each(pos, head) \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/lib/
H A Dfilter.c73 struct access_list *head; member in struct:access_list_list
237 for (filter = access->head; filter; filter = next)
258 list->head = access->next;
308 for (point = alist->head; point; point = point->next)
320 for (point = alist->head; point; point = point->next)
326 if (alist->head == NULL)
328 alist->head = alist->tail = access;
341 /* In case of insertion is made at the head of access_list. */
342 if (point == alist->head)
344 access->next = alist->head;
[all...]
H A Dthread.c67 /* List allocation and head/tail print out. */
71 printf ("count [%d] head [%p] tail [%p]\n",
72 list->count, list->head, list->tail);
113 list->head = thread;
129 list->head = thread;
145 list->head = thread->next;
169 for (t = list->head; t; t = next)
196 if (list->head)
197 return thread_list_delete (list, list->head);
205 return list->head
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/oss/
H A Dmidibuf.c35 int len, head, tail; member in struct:midi_buf
76 data = q->queue[q->head]; \
77 q->len--; q->head = (q->head+1) % MAX_QUEUE_SIZE; \
134 int c = midi_out_buf[dev]->queue[midi_out_buf[dev]->head];
139 midi_out_buf[dev]->head = (midi_out_buf[dev]->head + 1) % MAX_QUEUE_SIZE;
188 midi_in_buf[dev]->len = midi_in_buf[dev]->head = midi_in_buf[dev]->tail = 0;
200 midi_out_buf[dev]->len = midi_out_buf[dev]->head = midi_out_buf[dev]->tail = 0;
349 should q->len,tail&head b
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/dhcp6/
H A Dclient6_parse.y144 struct cf_list *head;
146 if ((head = $1) == NULL) {
149 head = $2;
151 head->tail->next = $2;
152 head->tail = $2;
155 $$ = head;
474 cleanup_namelist(head)
475 struct cf_namelist *head;
479 for (ifp = head; ifp; ifp = ifp_next) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A DMakefile8 extra-y := head.o init_task.o vmlinux.lds
47 head.o: head.S ttable.S itlb_miss.S dtlb_miss.S ktlb.S tsb.S \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-ppc/
H A DMakefile35 ppc_defs.head:
39 ppc_defs.h: mk_defs.c ppc_defs.head \
45 cp ppc_defs.head ppc_defs.h
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Deql.c143 struct list_head *this, *tmp, *head; local
146 head = &eql->queue.all_slaves;
147 list_for_each_safe(this, tmp, head) {
229 struct list_head *head, *tmp, *this; local
233 head = &queue->all_slaves;
234 list_for_each_safe(this, tmp, head) {
296 struct list_head *this, *tmp, *head; local
302 head = &queue->all_slaves;
303 list_for_each_safe(this, tmp, head) {
367 struct list_head *this, *head; local
[all...]
H A Dsun3lance.c105 /* Get the address of a packet buffer corresponding to a given buffer head */
106 #define PKTBUF_ADDR(head) (void *)((unsigned long)(MEM) | (head)->base)
517 struct lance_tx_head *head; local
602 head = &(MEM->tx_head[entry]);
612 // head->length = -len;
613 head->length = (-len) | 0xf000;
614 head->misc = 0;
616 skb_copy_from_linear_data(skb, PKTBUF_ADDR(head), skb->len);
618 memset(PKTBUF_ADDR(head)
691 struct lance_tx_head *head = &(MEM->tx_head[old_tx]); local
778 struct lance_rx_head *head = &(MEM->rx_head[entry]); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dfutex.c430 struct list_head *next, *head = &curr->pi_state_list; local
441 while (!list_empty(head)) {
443 next = head->next;
456 if (head->next != next) {
482 struct plist_head *head; local
486 head = &hb->chain;
488 plist_for_each_entry_safe(this, next, head, list) {
699 struct plist_head *head; local
712 head = &hb->chain;
714 plist_for_each_entry_safe(this, next, head, lis
744 struct plist_head *head; local
1573 struct plist_head *head; local
1820 sys_set_robust_list(struct robust_list_head __user *head, size_t len) argument
1844 struct robust_list_head __user *head; local
1922 fetch_robust_entry(struct robust_list __user **entry, struct robust_list __user * __user *head, int *pi) argument
1945 struct robust_list_head __user *head = curr->robust_list; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dbinc/
H A Ddb_dispatch.h72 LIST_HEAD(__db_headlink, __db_txnlist) head[1]; member in struct:__db_txnhead
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Dinflate.h86 gz_headerp head; /* where to save gzip header information */ member in struct:inflate_state
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dmachine_kexec_32.c42 page_list = image->head;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/kernel/
H A DMakefile4 extra-$(CONFIG_PPC_STD_MMU) := head.o
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/kernel/
H A Dmachine_kexec.c69 (*data_mover)(&image->head, image->start);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh64/kernel/
H A DMakefile16 extra-y := head.o init_task.o vmlinux.lds
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/
H A Dps2esdi.c72 u_short cyl, u_short head, u_short sector, u_short length, u_char drive);
106 unsigned int head, sect, cyl, wpcom, lzone, ctl; member in struct:ps2esdi_i_struct
161 static int head[MAX_HD] = {-1, -1}; variable
166 module_param_array(head, int, NULL, 0);
180 if (head[drive] != -1) {
181 info->head = head[drive];
182 info->ctl = (head[drive] > 8 ? 8 : 0);
235 if (ps2esdi_info[0].head != 0)
239 ps2esdi_info[hdind].head
540 u_short track, head, cylinder, sector; local
574 ps2esdi_fill_cmd_block(u_short * cmd_blk, u_short cmd, u_short cyl, u_short head, u_short sector, u_short length, u_char drive) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/drm/
H A Ddrm_hashtab.h41 struct hlist_node head; member in struct:drm_hash_item
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/
H A DMakefile26 head-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/head.o
27 head-y += arch/avr32/kernel/head.o

Completed in 303 milliseconds

1234567891011>>