Searched refs:next (Results 176 - 200 of 4898) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/os/
H A Dos_addrinfo.c163 ADDRINFO *next, *tmpaddr;
165 for (next = ai; next != NULL; next = tmpaddr) {
166 if (next->ai_canonname != NULL)
167 __os_free(env, next->ai_canonname);
169 if (next->ai_addr != NULL)
170 __os_free(env, next->ai_addr);
172 tmpaddr = next->ai_next;
173 __os_free(env, next);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A Dlist.c33 struct _xmlLink *next; member in struct:_xmlLink
61 (lk->prev)->next = lk->next;
62 (lk->next)->prev = lk->prev;
104 for(lk = l->sentinel->next;lk != l->sentinel && l->linkCompare(lk->data, data) <0 ;lk = lk->next);
206 l->sentinel->next = l->sentinel;
289 lkNew->next = lkPlace->next;
290 (lkPlace->next)
430 xmlLinkPtr next = lk->next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dlist.c33 struct _xmlLink *next; member in struct:_xmlLink
61 (lk->prev)->next = lk->next;
62 (lk->next)->prev = lk->prev;
104 for(lk = l->sentinel->next;lk != l->sentinel && l->linkCompare(lk->data, data) <0 ;lk = lk->next);
206 l->sentinel->next = l->sentinel;
289 lkNew->next = lkPlace->next;
290 (lkPlace->next)
430 xmlLinkPtr next = lk->next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/seq/
H A Dseq_prioq.c38 * |next
170 f->tail->next = cell;
172 cell->next = NULL;
195 /* move cursor to next cell */
197 cur = cur->next;
207 prev->next = cell;
208 cell->next = cur;
233 f->head = cell->next;
239 cell->next = NULL;
294 register struct snd_seq_event_cell *cell, *next; local
396 struct snd_seq_event_cell *cell, *next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/
H A Dtruncate.c215 pgoff_t next; local
225 next = start;
226 while (next <= end &&
227 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
233 next = page_index;
237 if (page_index > next)
238 next = page_index;
239 next++;
263 next = start;
266 if (!pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZ
326 pgoff_t next = start; local
424 pgoff_t next; local
[all...]
H A Dmincore.c109 unsigned long next; local
118 next = addr + PAGE_SIZE;
120 mincore_unmapped_range(vma, addr, next, vec);
143 } while (ptep++, addr = next, addr != end);
151 unsigned long next; local
156 next = pmd_addr_end(addr, end);
158 mincore_unmapped_range(vma, addr, next, vec);
160 mincore_pte_range(vma, pmd, addr, next, vec);
161 vec += (next - addr) >> PAGE_SHIFT;
162 } while (pmd++, addr = next, add
169 unsigned long next; local
187 unsigned long next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/pptp/
H A Dpqueue.c41 for (newent = pq_freelist_head; newent; newent = newent->next) {
47 pq_freelist_head = newent->next;
50 newent->prev->next = newent->next;
52 if (newent->next)
53 newent->next->prev = newent->prev;
66 pq_freelist_head = pq_freelist_head->next;
113 newent->next = newent->prev = NULL;
136 for (point = pq_head; point != NULL; point = point->next) {
149 point->prev->next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/pptpd/pptpd-1.3.4/
H A Dpqueue.c40 for (newent = pq_freelist_head; newent; newent = newent->next) {
46 pq_freelist_head = newent->next;
49 newent->prev->next = newent->next;
51 if (newent->next)
52 newent->next->prev = newent->prev;
65 pq_freelist_head = pq_freelist_head->next;
112 newent->next = newent->prev = NULL;
135 for (point = pq_head; point != NULL; point = point->next) {
148 point->prev->next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netlabel/
H A Dnetlabel_addrlist.h79 i = i->next;
91 i = rcu_dereference(i->next);
98 for (iter = __af4list_valid((head)->next, head); \
99 prefetch(iter->list.next), &iter->list != (head); \
100 iter = __af4list_valid(iter->list.next, head))
103 for (iter = __af4list_valid_rcu((head)->next, head); \
104 prefetch(iter->list.next), &iter->list != (head); \
105 iter = __af4list_valid_rcu(iter->list.next, head))
108 for (iter = __af4list_valid((head)->next, head), \
109 tmp = __af4list_valid(iter->list.next, hea
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/common/
H A Dblock_decoder.c26 lzma_next_coder next; member in struct:lzma_coder_s
84 const lzma_ret ret = coder->next.code(coder->next.coder,
175 lzma_next_end(&coder->next, allocator);
182 lzma_block_decoder_init(lzma_next_coder *next, lzma_allocator *allocator, argument
185 lzma_next_coder_init(&lzma_block_decoder_init, next, allocator);
194 // Allocate and initialize *next->coder if needed.
195 if (next->coder == NULL) {
196 next->coder = lzma_alloc(sizeof(lzma_coder), allocator);
197 if (next
[all...]
H A Dstream_encoder.c135 // with the next Block.
266 lzma_stream_encoder_init(lzma_next_coder *next, lzma_allocator *allocator, argument
269 lzma_next_coder_init(&lzma_stream_encoder_init, next, allocator);
274 if (next->coder == NULL) {
275 next->coder = lzma_alloc(sizeof(lzma_coder), allocator);
276 if (next->coder == NULL)
279 next->code = &stream_encode;
280 next->end = &stream_encoder_end;
281 next->update = &stream_encoder_update;
283 next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/liblzma/common/
H A Dblock_decoder.c26 lzma_next_coder next; member in struct:lzma_coder_s
84 const lzma_ret ret = coder->next.code(coder->next.coder,
175 lzma_next_end(&coder->next, allocator);
182 lzma_block_decoder_init(lzma_next_coder *next, lzma_allocator *allocator, argument
185 lzma_next_coder_init(&lzma_block_decoder_init, next, allocator);
194 // Allocate and initialize *next->coder if needed.
195 if (next->coder == NULL) {
196 next->coder = lzma_alloc(sizeof(lzma_coder), allocator);
197 if (next
[all...]
H A Dstream_encoder.c135 // with the next Block.
266 lzma_stream_encoder_init(lzma_next_coder *next, lzma_allocator *allocator, argument
269 lzma_next_coder_init(&lzma_stream_encoder_init, next, allocator);
274 if (next->coder == NULL) {
275 next->coder = lzma_alloc(sizeof(lzma_coder), allocator);
276 if (next->coder == NULL)
279 next->code = &stream_encode;
280 next->end = &stream_encoder_end;
281 next->update = &stream_encoder_update;
283 next
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/parisc/
H A Dhppb.c29 struct hppb_card *next; member in struct:hppb_card
34 .next = NULL,
53 while(card->next) {
54 card = card->next;
58 card->next = kzalloc(sizeof(struct hppb_card), GFP_KERNEL);
59 if(!card->next) {
63 card = card->next;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/e2p/
H A Dmntopts.c99 char *cp, *buf, *next; local
108 next = skip_over_word(cp);
109 if (*next == 0)
110 next = 0;
112 *next = 0;
131 cp = next ? next+1 : 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dgl_anylinked_list2.h26 list->root, node->next, node->value.
57 list->root.next = &list->root;
108 tail->next = node;
111 tail->next = &list->root;
132 return (node->next != &list->root ? node->next : NULL);
153 node = list->root.next;
155 node = node->next;
179 node = list->root.next;
181 node = node->next;
675 gl_list_node_t next; local
763 gl_list_node_t next = node->next; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-selector.c88 for (cur = a_this; cur && cur->next; cur = cur->next) ;
90 cur->next = a_new;
111 a_new->next = a_this;
153 for (cur = a_this; cur; cur = cur->next) {
270 for (cur = a_this; cur && cur->next; cur = cur->next) {
290 /*walk backward the list and free each "next element" */
292 if (cur->next) {
293 g_free (cur->next);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Devgpeutil.c97 gpe_block = gpe_block->next;
100 gpe_xrupt_info = gpe_xrupt_info->next;
146 gpe_block = gpe_block->next;
149 gpe_xrupt_block = gpe_xrupt_block->next;
187 next_gpe_xrupt = next_gpe_xrupt->next;
204 while (next_gpe_xrupt->next) {
205 next_gpe_xrupt = next_gpe_xrupt->next;
208 next_gpe_xrupt->next = gpe_xrupt;
272 gpe_xrupt->previous->next = gpe_xrupt->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-selector.c88 for (cur = a_this; cur && cur->next; cur = cur->next) ;
90 cur->next = a_new;
111 a_new->next = a_this;
153 for (cur = a_this; cur; cur = cur->next) {
270 for (cur = a_this; cur && cur->next; cur = cur->next) {
290 /*walk backward the list and free each "next element" */
292 if (cur->next) {
293 g_free (cur->next);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/arm/
H A Dmsgqueue.c30 msgq->free = mq->next;
44 mq->next = msgq->free;
62 msgq->entries[i].next = &msgq->entries[i + 1];
64 msgq->entries[NR_MESSAGES - 1].next = NULL;
88 for (mq = msgq->qe; mq; mq = mq->next)
105 for (mq = msgq->qe; mq && msgno; mq = mq->next, msgno--);
134 mq->next = NULL;
138 mqp = &(*mqp)->next;
156 mqnext = mq->next;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/hw/amso1100/
H A Dc2_alloc.c54 new_head->next = NULL;
57 /* build list where each index is the next free slot */
79 struct sp_chunk *next; local
82 next = root->next;
85 root = next;
99 } else if (head->next == NULL) {
100 if (c2_alloc_mqsp_chunk(c2dev, gfp_mask, &head->next) ==
102 head = head->next;
109 head = head->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/include/asm/
H A Dmmu_context.h119 struct mm_struct *next,
124 if (likely(prev != next)) {
125 cpumask_set_cpu(cpu, mm_cpumask(next));
126 set_TTB(next->pgd);
127 activate_context(next, cpu);
129 if (!cpumask_test_and_set_cpu(cpu, mm_cpumask(next)))
130 activate_context(next, cpu);
133 #define activate_mm(prev, next) switch_mm((prev),(next),NULL)
118 switch_mm(struct mm_struct *prev, struct mm_struct *next, struct task_struct *tsk) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/block/
H A Dblk-merge.c273 struct request *next)
277 req->biotail->bi_seg_back_size + next->bio->bi_seg_front_size;
283 if (req->special || next->special)
289 if ((blk_rq_sectors(req) + blk_rq_sectors(next)) > queue_max_sectors(q))
292 total_phys_segments = req->nr_phys_segments + next->nr_phys_segments;
293 if (blk_phys_contig_segment(q, req->biotail, next->bio)) {
296 if (next->nr_phys_segments == 1)
297 next->biotail->bi_seg_back_size = seg_size;
359 struct request *next)
361 if (!rq_mergeable(req) || !rq_mergeable(next))
272 ll_merge_requests_fn(struct request_queue *q, struct request *req, struct request *next) argument
358 attempt_merge(struct request_queue *q, struct request *req, struct request *next) argument
445 struct request *next = elv_latter_request(q, rq); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/ipc/
H A Dmsgutil.c24 * The next 2 defines are here bc this is the only file
40 struct msg_msgseg* next; member in struct:msg_msgseg
41 /* the next part of the message follows immediately */
62 msg->next = NULL;
72 pseg = &msg->next;
85 seg->next = NULL;
90 pseg = &seg->next;
119 seg = msg->next;
128 seg = seg->next;
139 seg = msg->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dlink.c38 struct ext2_dir_entry *next; local
48 next = (struct ext2_dir_entry *) (buf + offset + dirent->rec_len);
50 (next->inode == 0) &&
51 (offset + dirent->rec_len + next->rec_len <= blocksize)) {
52 dirent->rec_len += next->rec_len;
67 next = (struct ext2_dir_entry *) (buf + offset +
69 next->inode = 0;
70 next->name_len = 0;
71 next->rec_len = rec_len;

Completed in 366 milliseconds

1234567891011>>