Searched refs:next (Results 201 - 225 of 4898) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/src/
H A Dtool_mfiles.c35 (*last)->next = new;
115 struct multi_files *next; local
119 next = item->next;
121 item = next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/unittests/tests/
H A DStringFunctionsTest.cpp65 ASSERT_EQUALS(wxEmptyString, tkz1.next());
67 ASSERT_EQUALS(wxEmptyString, tkz1.next());
74 ASSERT_EQUALS(wxT(" abc "), tkz2.next());
75 ASSERT_EQUALS(wxEmptyString, tkz2.next());
76 ASSERT_EQUALS(wxEmptyString, tkz2.next());
88 ASSERT_EQUALS(wxEmptyString, tkz1.next());
92 ASSERT_EQUALS(wxT("a"), tkz1.next());
96 ASSERT_EQUALS(wxEmptyString, tkz1.next());
106 ASSERT_EQUALS(wxT("c"), tkz2.next());
110 ASSERT_EQUALS(wxEmptyString, tkz2.next());
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/zoran/
H A Dvideocodec.c60 struct attached_list *next; member in struct:attached_list
67 struct codec_list *next; member in struct:codec_list
141 while (a->next)
142 a = a->next; // find end
143 a->next = ptr;
155 h = h->next;
209 h->list = a->next;
213 prev->next = a->next;
224 a = a->next;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/gnulib-lib/
H A Dmalloca.c48 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
52 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
87 ((struct header *) (p - HEADER_SIZE))->next = mmalloca_results[slot];
127 *chain = ((struct header *) p_begin)->next;
131 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dxvasprintf.c51 const char *next = va_arg (ap, const char *); local
52 totalsize = xsum (totalsize, strlen (next));
70 const char *next = va_arg (args, const char *); local
71 size_t len = strlen (next);
72 memcpy (p, next, len);
H A Dmalloca.c48 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
52 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
87 ((struct header *) (p - HEADER_SIZE))->next = mmalloca_results[slot];
127 *chain = ((struct header *) p_begin)->next;
131 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/include/asm/
H A Dmmu_context.h86 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next, argument
89 if (likely(prev != next)) {
103 cpumask_set_cpu(cpu, &next->cpu_vm_mask);
106 install_page_table(next->pgd, asid);
109 check_mm_caching(prev, next);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dcavs_parser.c34 * @return the position of the first byte of the next frame, or -1
82 int next; local
85 next= buf_size;
87 next= cavs_find_frame_end(pc, buf, buf_size);
89 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
97 return next;
H A Ddnxhd_parser.c72 int next; local
75 next = buf_size;
77 next = dnxhd_find_frame_end(pc, buf, buf_size);
78 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
86 return next;
H A Dgsm_parser.c43 int next; local
57 next = s->remaining;
60 next = END_NOT_FOUND;
64 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0 || !buf_size) {
71 return next;
H A Dmjpeg_parser.c34 * @return the position of the first byte of the next frame, or -1
79 int next; local
82 next= buf_size;
84 next= find_frame_end(pc, buf, buf_size);
86 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
95 return next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dbitstream_filter.c32 return f->next;
40 bsf->next = first_bitstream_filter;
41 } while(bsf->next != avpriv_atomic_ptr_cas((void * volatile *)&first_bitstream_filter, bsf->next, bsf));
57 bsf = bsf->next;
H A Dbmp_parser.c44 int next = END_NOT_FOUND; local
60 next = bpc->fsize + i - 7;
71 next = i;
76 if (ff_combine_frame(&bpc->pc, next, &buf, &buf_size) < 0)
83 return next;
H A Dcavs_parser.c34 * @return the position of the first byte of the next frame, or -1
82 int next; local
85 next= buf_size;
87 next= cavs_find_frame_end(pc, buf, buf_size);
89 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
97 return next;
H A Dgsm_parser.c44 int next; local
68 next = s->remaining;
71 next = END_NOT_FOUND;
75 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0 || !buf_size) {
85 return next;
H A Dh261_parser.c72 int next; local
75 next = buf_size;
77 next = h261_find_frame_end(pc, avctx, buf, buf_size);
78 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
86 return next;
H A Dh263_parser.c71 int next; local
74 next = buf_size;
76 next= ff_h263_find_frame_end(pc, buf, buf_size);
78 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
87 return next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/
H A Dmalloca.c48 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
52 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
87 ((struct header *) (p - HEADER_SIZE))->next = mmalloca_results[slot];
127 *chain = ((struct header *) p_begin)->next;
131 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/srclib/
H A Dallocsa.c50 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
54 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
89 ((struct header *) (p - HEADER_SIZE))->next = mallocsa_results[slot];
129 *chain = ((struct header *) p_begin)->next;
133 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dmalloca.c48 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
52 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
87 ((struct header *) (p - HEADER_SIZE))->next = mmalloca_results[slot];
127 *chain = ((struct header *) p_begin)->next;
131 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
H A Dxvasprintf.c51 const char *next = va_arg (ap, const char *); local
52 totalsize = xsum (totalsize, strlen (next));
70 const char *next = va_arg (args, const char *); local
71 size_t len = strlen (next);
72 memcpy (p, next, len);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dio_manager.c26 char *next, *ptr, *options, *arg; local
43 next = strchr(ptr, '&');
44 if (next)
45 *next++ = 0;
54 ptr = next;
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libbb/
H A Dllist.c47 void *data, *next; local
53 next = (*head)->link;
55 *head = next;
100 llist_t *next = list->link; local
104 list = next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libiconv-1.11/srclib/
H A Dallocsa.c50 struct preliminary_header { void *next; char room[MAGIC_SIZE]; }; member in struct:preliminary_header
54 struct header { void *next; char room[HEADER_SIZE - sizeof (struct preliminary_header) + MAGIC_SIZE]; }; member in struct:header
89 ((struct header *) (p - HEADER_SIZE))->next = mallocsa_results[slot];
129 *chain = ((struct header *) p_begin)->next;
133 chain = &((struct header *) ((char *) *chain - HEADER_SIZE))->next;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavutil/
H A Deval.c78 char *next; local
79 d = strtod(numstr, &next);
81 if (next!=numstr) {
82 if (*next >= 'E' && *next <= 'z') {
83 int e= si_prefixes[*next - 'E'];
85 if (next[1] == 'i') {
87 next+=2;
90 next++;
95 if (*next
196 char *next = p->s, *s0 = p->s; local
[all...]

Completed in 223 milliseconds

1234567891011>>