Searched refs:tail (Results 1 - 25 of 449) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dcirc_buf.h7 int tail; member in struct:circ_buf
11 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
14 as a completely full buffer has head == tail, which is the same as
16 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
19 accessing head and tail more than once, so they can change
21 #define CIRC_CNT_TO_END(head,tail,size) \
22 ({int end = (size) - (tail); \
27 #define CIRC_SPACE_TO_END(head,tail,siz
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/scripts/
H A Dplog4 exec tail "$@" /var/log/ppp.log
6 exec tail "$@" /var/log/syslog | grep ' \(pppd\|chat\)\['
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/
H A Dgcc-version.sh11 MAJOR=$(echo __GNUC__ | $compiler -E -xc - | tail -n 1)
12 MINOR=$(echo __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Ddm-bio-list.h15 struct bio *tail; member in struct:bio_list
23 #define BIO_LIST_INIT { .head = NULL, .tail = NULL }
30 bl->head = bl->tail = NULL;
52 if (bl->tail)
53 bl->tail->bi_next = bio;
57 bl->tail = bio;
65 if (bl->tail)
66 bl->tail->bi_next = bl2->head;
70 bl->tail = bl2->tail;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/oprofile/
H A Dbacktrace.c42 static struct frame_tail* user_backtrace(struct frame_tail *tail) argument
47 if (!access_ok(VERIFY_READ, tail, sizeof(buftail)))
49 if (__copy_from_user_inatomic(buftail, tail, sizeof(buftail)))
56 if (tail >= buftail[0].fp)
64 struct frame_tail *tail = ((struct frame_tail *) regs->ARM_fp) - 1; local
73 while (depth-- && tail && !((unsigned long) tail & 3))
74 tail = user_backtrace(tail);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/
H A Dgcc-version.sh11 MAJ_MIN=$(echo __GNUC__ __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/LDAP/
H A Dget_next_oid4 awk '{print $3}' | cut -d. -f 10 | sort -n | tail -1`
11 awk '{print $3}' | cut -d. -f 10 | sort -n | tail -1`
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ipath/
H A Dipath_cq.c67 if (unlikely(next == wc->tail)) {
129 u32 tail; local
134 tail = wc->tail;
135 if (tail > (u32) cq->ibcq.cqe)
136 tail = (u32) cq->ibcq.cqe;
140 if (tail == wc->head)
144 wc->queue[tail].qp_num);
149 entry->wr_id = wc->queue[tail].wr_id;
150 entry->status = wc->queue[tail]
378 u32 head, tail, n; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dllist.c36 llist_t *tail = *list_head; local
38 while (tail->link)
39 tail = tail->link;
40 tail->link = new_item;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/lib/
H A Dlinklist.h38 struct listnode *tail; member in struct:list
47 #define list_isempty(X) ((X)->head == NULL && (X)->tail == NULL)
80 (N)->prev = (L)->tail; \
84 (L)->tail->next = (N); \
85 (L)->tail = (N); \
98 (L)->tail = (N)->prev; \
H A Dlinklist.c73 node->prev = list->tail;
79 list->tail->next = node;
80 list->tail = node;
115 new->prev = list->tail;
117 if (list->tail)
118 list->tail->next = new;
122 list->tail = new;
139 list->tail = nn;
151 list->tail = nn;
179 list->tail
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sunrpc/
H A Dxdr.c111 struct kvec *tail = xdr->tail; local
119 tail->iov_base = p;
120 tail->iov_len = 0;
126 tail->iov_base = (char *)p + (len & 3);
127 tail->iov_len = pad;
139 struct kvec *tail = xdr->tail; local
149 tail->iov_base = buf + offset;
150 tail
312 struct kvec *head, *tail; local
385 struct kvec *tail; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dllist.c40 l->tail = NULL;
81 list->tail = ne;
95 list->tail = ne;
120 list->tail = NULL;
127 list->tail = e->prev;
149 Curl_llist_remove(list, list->tail, user);
176 list->tail = NULL;
183 list->tail = e->prev;
195 to_list->tail = e;
204 to_list->tail
[all...]
H A Dllist.h39 struct curl_llist_element *tail; member in struct:curl_llist
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/unit/
H A Dunit1300.c75 * 3: list tail will be NULL
81 fail_unless(llist->tail == NULL, "list tail should intiate to NULL");
92 * 3: list tail will be the same as list head
102 /*same goes for the list tail */
103 fail_unless(llist->tail == llist->head,
112 * 2: the list tail should be our newly created element
120 fail_unless(llist->tail->ptr == &unusedData_case3,
121 "the list tail is not getting set correctly");
134 * 2: the list tail shoul
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/
H A Dutils.c59 u8 *tail = NULL; local
171 tail = buffer->pointer + tail_offset;
196 *pointer = tail;
197 *((acpi_integer *) tail) =
200 tail += sizeof(acpi_integer);
202 *tail = (char)0;
203 tail += sizeof(char);
216 *pointer = tail;
217 memcpy(tail, element->string.pointer,
220 tail
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test_micro/source/
H A Db_workload.h66 struct bench_qentry *tail; member in struct:bench_q
74 queue.head = queue.tail = entry; \
76 queue.tail->next = entry; \
77 queue.tail = entry; \
86 queue.head = queue.tail = NULL; \
103 queue.head = queue.tail = NULL; \
108 queue.head = queue.tail = popped; \
110 queue.tail->next = popped; \
111 queue.tail = popped; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/build_vxworks/test_micro/
H A Db_workload.h66 struct bench_qentry *tail; member in struct:bench_q
74 queue.head = queue.tail = entry; \
76 queue.tail->next = entry; \
77 queue.tail = entry; \
86 queue.head = queue.tail = NULL; \
103 queue.head = queue.tail = NULL; \
108 queue.head = queue.tail = popped; \
110 queue.tail->next = popped; \
111 queue.tail = popped; \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/core/
H A Dgen_stats.c64 d->tail = (struct rtattr *)skb_tail_pointer(skb);
69 if (d->tail)
114 if (d->tail)
139 if (d->tail)
166 if (d->tail)
193 if (d->tail)
214 if (d->tail)
215 d->tail->rta_len = skb_tail_pointer(d->skb) - (u8 *)d->tail;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-prop-list.c380 CRPropList *tail = NULL, local
385 for (tail = a_this;
386 tail && PRIVATE (tail) && PRIVATE (tail)->next;
387 tail = cr_prop_list_get_next (tail)) ;
388 g_return_if_fail (tail);
390 cur = tail;
393 tail
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-prop-list.c380 CRPropList *tail = NULL, local
385 for (tail = a_this;
386 tail && PRIVATE (tail) && PRIVATE (tail)->next;
387 tail = cr_prop_list_get_next (tail)) ;
388 g_return_if_fail (tail);
390 cur = tail;
393 tail
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/
H A Dsmtc_ipi.h45 struct smtc_ipi *tail; member in struct:smtc_ipi_q
55 q->head = q->tail = p;
57 q->tail->flink = p;
59 q->tail = p;
80 q->tail = NULL;
104 q->head = q->tail = p;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/
H A Dsmtc_ipi.h45 struct smtc_ipi *tail; member in struct:smtc_ipi_q
55 q->head = q->tail = p;
57 q->tail->flink = p;
59 q->tail = p;
80 q->tail = NULL;
104 q->head = q->tail = p;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Dq_dsmark.c35 struct rtattr *tail; local
74 tail = NLMSG_TAIL(n);
83 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
97 struct rtattr *tail; local
101 tail = NLMSG_TAIL(n);
129 tail->rta_len = (void *) NLMSG_TAIL(n) - (void *) tail;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/input/joystick/iforce/
H A Diforce-serio.c46 if (iforce->xmit.head == iforce->xmit.tail) {
56 serio_write(iforce->serio, iforce->xmit.buf[iforce->xmit.tail]);
57 cs ^= iforce->xmit.buf[iforce->xmit.tail];
58 XMIT_INC(iforce->xmit.tail, 1);
60 for (i=iforce->xmit.buf[iforce->xmit.tail]; i >= 0; --i) {
61 serio_write(iforce->serio, iforce->xmit.buf[iforce->xmit.tail]);
62 cs ^= iforce->xmit.buf[iforce->xmit.tail];
63 XMIT_INC(iforce->xmit.tail, 1);

Completed in 139 milliseconds

1234567891011>>