Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 236) sorted by relevance

12345678910

/rk3399_rockchip-uboot/include/linux/
H A Dlist.h23 struct list_head *next, *prev; member
33 list->next = list; in INIT_LIST_HEAD()
45 struct list_head *next) in __list_add() argument
47 next->prev = new; in __list_add()
48 new->next = next; in __list_add()
50 prev->next = new; in __list_add()
63 __list_add(new, head, head->next); in list_add()
86 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del() argument
88 next->prev = prev; in __list_del()
89 prev->next = next; in __list_del()
[all …]
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dlist.h24 struct list_head *next, *prev; member
49 for (pos = list_entry((head)->next, typeof(*pos), member); \
51 pos = list_entry(pos->member.next, typeof(*pos), member))
61 for (pos = list_entry((head)->next, typeof(*pos), member), \
62 n = list_entry(pos->member.next, typeof(*pos), member); \
64 pos = n, n = list_entry(n->member.next, typeof(*n), member))
72 return head->next == head; in list_empty()
83 struct list_head *next) in __list_add() argument
85 next->prev = _new; in __list_add()
86 _new->next = next; in __list_add()
[all …]
H A Dkxgettext.c43 goto next; in escape()
50 next: in escape()
64 struct file_line *next; member
78 self->next = NULL; in file_line__new()
86 struct message *next; member
109 self->next = NULL; in message__new()
127 m = m->next; in mesage__find()
142 fl->next = self->files; in message__add_file_line()
163 m->next = message__list; in message__add()
184 for (child = menu->list; child != NULL; child = child->next) in menu_build_message_list()
[all …]
H A Dmenu.c59 last_entry_ptr = &menu->next; in menu_add_entry()
78 last_entry_ptr = &current_menu->next; in menu_end_menu()
238 for (prop = sym->prop; prop; prop = prop->next) { in sym_check_prop()
299 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
307 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
318 for (menu = parent->list; menu; menu = menu->next) { in menu_finalize()
327 for (; prop; prop = prop->next) { in menu_finalize()
347 for (menu = parent->list; menu; menu = menu->next) in menu_finalize()
354 for (menu = parent->next; menu; menu = menu->next) { in menu_finalize()
359 goto next; in menu_finalize()
[all …]
H A Dexpr.h21 struct file *next; member
78 struct symbol *next; member
91 …= 0; i < SYMBOL_HASHSIZE; i++) for (sym = symbol_hash[i]; sym; sym = sym->next) if (sym->type != S…
147 struct property *next; /* next property - null if last */ member
161 for (st = sym->prop; st; st = st->next) \
166 for (st = sym->prop; st; st = st->next) \
170 struct menu *next; member
/rk3399_rockchip-uboot/lib/
H A Dlist_sort.c30 tail->next = a; in merge()
31 a = a->next; in merge()
33 tail->next = b; in merge()
34 b = b->next; in merge()
36 tail = tail->next; in merge()
38 tail->next = a?:b; in merge()
39 return head.next; in merge()
60 tail->next = a; in merge_and_restore_back_links()
62 a = a->next; in merge_and_restore_back_links()
64 tail->next = b; in merge_and_restore_back_links()
[all …]
/rk3399_rockchip-uboot/disk/
H A Dpart_env.c76 char *next, *pend; in env_init_parts() local
91 next = strchr(parts_list, ':'); in env_init_parts()
93 while (next) { in env_init_parts()
95 next++; in env_init_parts()
96 if (*next == '-') { in env_init_parts()
98 next++; in env_init_parts()
100 size = (lbaint_t)memparse(next, &next); in env_init_parts()
102 if (*next == '@') { in env_init_parts()
103 next++; in env_init_parts()
104 start = (lbaint_t)memparse(next, &next); in env_init_parts()
[all …]
H A Dpart_rkparm.c48 char *cmdline_end, *next, *pend; in rkparm_param_parse() local
58 next = strchr(blkdev_parts, ':'); in rkparm_param_parse()
69 while (next) { in rkparm_param_parse()
71 next++; in rkparm_param_parse()
72 if (*next == '-') { in rkparm_param_parse()
74 next++; in rkparm_param_parse()
76 size = simple_strtoul(next, &next, 16); in rkparm_param_parse()
79 next++; in rkparm_param_parse()
80 start = simple_strtoul(next, &next, 16); in rkparm_param_parse()
81 next++; in rkparm_param_parse()
[all …]
/rk3399_rockchip-uboot/test/
H A Dtime_ut.c13 ulong base, start, next, diff; in test_get_timer() local
20 next = get_timer(0); in test_get_timer()
21 } while (start == next); in test_get_timer()
23 if (start + 1 != next) { in test_get_timer()
25 __func__, iter, start, next); in test_get_timer()
47 ulong prev, next, min = 1000000; in test_timer_get_us() local
54 next = timer_get_us(); in test_timer_get_us()
55 if (next != prev) { in test_timer_get_us()
56 delta = next - prev; in test_timer_get_us()
59 __func__, prev, next); in test_timer_get_us()
[all …]
/rk3399_rockchip-uboot/arch/mips/lib/
H A Dbootm.c79 const char *bootargs, *next, *quote; in linux_cmdline_legacy() local
87 next = bootargs; in linux_cmdline_legacy()
91 next = strchr(bootargs, ' '); in linux_cmdline_legacy()
93 while (next && quote && quote < next) { in linux_cmdline_legacy()
98 next = strchr(quote + 1, '"'); in linux_cmdline_legacy()
99 if (next) { in linux_cmdline_legacy()
100 quote = strchr(next + 1, '"'); in linux_cmdline_legacy()
101 next = strchr(next + 1, ' '); in linux_cmdline_legacy()
105 if (!next) in linux_cmdline_legacy()
106 next = bootargs + strlen(bootargs); in linux_cmdline_legacy()
[all …]
/rk3399_rockchip-uboot/arch/arm/lib/
H A Dcache.c98 phys_addr_t next = ALIGN(noncached_next, align); in noncached_alloc() local
100 if (next >= noncached_end || (noncached_end - next) < size) in noncached_alloc()
103 debug("allocated %zu bytes of uncached memory @%pa\n", size, &next); in noncached_alloc()
104 noncached_next = next + size; in noncached_alloc()
106 return next; in noncached_alloc()
/rk3399_rockchip-uboot/net/
H A Deth_legacy.c44 eth_current = eth_current->next; in eth_set_current_to_next()
68 dev = dev->next; in eth_get_dev_by_name()
88 dev = dev->next; in eth_get_dev_by_index()
127 dev = dev->next; in on_ethaddr()
197 for (d = eth_devices; d->next != eth_devices; d = d->next) in eth_register()
199 d->next = dev; in eth_register()
203 dev->next = eth_devices; in eth_register()
217 for (cur = eth_devices; cur->next != eth_devices && cur->next != dev; in eth_unregister()
218 cur = cur->next) in eth_unregister()
222 if (cur->next != dev) in eth_unregister()
[all …]
/rk3399_rockchip-uboot/fs/jffs2/
H A Dmergesort.c27 q = q->next; in sort_list()
38 q = q->next; in sort_list()
42 p = p->next; in sort_list()
45 e->next = NULL; /* break accidental loops. */ in sort_list()
47 tail = &e->next; in sort_list()
H A Dsummary.h86 union jffs2_sum_mem *next; member
92 union jffs2_sum_mem *next; member
102 union jffs2_sum_mem *next; member
116 union jffs2_sum_mem *next; member
126 union jffs2_sum_mem *next; member
/rk3399_rockchip-uboot/arch/sandbox/cpu/
H A Dos.c305 struct os_dirent_node *next; in os_dirent_free() local
308 next = node->next; in os_dirent_free()
310 node = next; in os_dirent_free()
317 struct os_dirent_node *head, *node, *next; in os_dirent_ls() local
339 for (node = head = NULL;; node = next) { in os_dirent_ls()
346 next = malloc(sizeof(*node) + strlen(entry->d_name) + 1); in os_dirent_ls()
351 if (!next || !fname) { in os_dirent_ls()
352 free(next); in os_dirent_ls()
357 next->next = NULL; in os_dirent_ls()
358 strcpy(next->name, entry->d_name); in os_dirent_ls()
[all …]
/rk3399_rockchip-uboot/fs/yaffs2/
H A Dyaffs_allocator.c34 struct yaffs_tnode_list *next; member
39 struct yaffs_obj_list *next; member
68 tmp = allocator->alloc_tnode_list->next; in yaffs_deinit_raw_tnodes()
103 struct yaffs_tnode *next; in yaffs_create_tnodes() local
127 next = (struct yaffs_tnode *)&mem[(i + 1) * dev->tnode_size]; in yaffs_create_tnodes()
128 curr->internal[0] = next; in yaffs_create_tnodes()
149 tnl->next = allocator->alloc_tnode_list; in yaffs_create_tnodes()
231 tmp = allocator->allocated_obj_list->next; in yaffs_deinit_raw_objs()
281 list->next = allocator->allocated_obj_list; in yaffs_create_free_objs()
303 lh = allocator->free_objs.next; in yaffs_alloc_raw_obj()
/rk3399_rockchip-uboot/test/py/tests/
H A Dtest_log.py31 assert 'log %d' % i == lines.next()
33 assert '_log %d' % i == lines.next()
48 assert 'test %d' % testnum == lines.next()
68 assert next(lines, None) == None
/rk3399_rockchip-uboot/common/
H A Dcli_simple.c311 char *line, *next; in cli_simple_run_command_list() local
318 next = cmd; in cli_simple_run_command_list()
320 while (*next) { in cli_simple_run_command_list()
321 if (*next == '\n') { in cli_simple_run_command_list()
322 *next = '\0'; in cli_simple_run_command_list()
331 line = next + 1; in cli_simple_run_command_list()
333 ++next; in cli_simple_run_command_list()
H A Dcli_hush.c217 struct redir_struct *next; /* pointer to the next redirect in the list */ member
256 struct pipe *next; /* to track background commands */ member
268 struct close_me *next; member
277 struct variables *next; member
660 for (pi = job_list; pi; pi = pi->next) { in builtin_fg_bg()
674 for (pi = job_list; pi; pi = pi->next) { in builtin_fg_bg()
728 for (job = job_list; job; job = job->next) { in builtin_jobs()
783 for(e = top_vars; e; e=e->next) in builtin_set()
1182 new->next = close_me_head;
1192 close_me_head = close_me_head->next;
[all …]
/rk3399_rockchip-uboot/cmd/
H A Dbootmenu.c31 struct bootmenu_entry *next; /* next menu entry (num+1) */ member
221 iter = iter->next; in bootmenu_choice_entry()
236 struct bootmenu_entry *next; in bootmenu_destroy() local
239 next = iter->next; in bootmenu_destroy()
243 iter = next; in bootmenu_destroy()
301 entry->next = NULL; in bootmenu_create()
306 iter->next = entry; in bootmenu_create()
338 entry->next = NULL; in bootmenu_create()
343 iter->next = entry; in bootmenu_create()
395 for (iter = bootmenu->first; iter; iter = iter->next) { in bootmenu_show()
/rk3399_rockchip-uboot/lib/zlib/
H A Dinftrees.c50 code FAR *next; /* next available space in table */ in inflate_table() local
200 next = *table; /* current table to fill in */ in inflate_table()
234 next[(huff >> drop) + fill] = this; in inflate_table()
262 next += min; /* here min is 1 << curr */ in inflate_table()
283 (*table)[low].val = (unsigned short)(next - *table); in inflate_table()
302 next = *table; in inflate_table()
307 next[huff >> drop] = this; in inflate_table()
/rk3399_rockchip-uboot/drivers/usb/host/
H A Dxhci-ring.c62 (seg->next == ring->first_seg)); in last_trb_on_last_seg()
93 union xhci_trb *next; in inc_enq() local
96 next = ++(ring->enqueue); in inc_enq()
102 while (last_trb(ctrl, ring, ring->enq_seg, next)) { in inc_enq()
121 next->link.control &= cpu_to_le32(~TRB_CHAIN); in inc_enq()
122 next->link.control |= cpu_to_le32(chain); in inc_enq()
124 next->link.control ^= cpu_to_le32(TRB_CYCLE); in inc_enq()
125 xhci_flush_cache((uintptr_t)next, in inc_enq()
130 ring->enq_seg, next)) in inc_enq()
133 ring->enq_seg = ring->enq_seg->next; in inc_enq()
[all …]
/rk3399_rockchip-uboot/arch/x86/lib/
H A Dmrccache.c45 struct mrc_data_container *cache, *next; in mrccache_find_current() local
54 for (id = 0, next = (struct mrc_data_container *)base_addr; in mrccache_find_current()
55 is_mrc_cache(next); in mrccache_find_current()
57 cache = next; in mrccache_find_current()
58 next = next_mrc_block(next); in mrccache_find_current()
59 if ((ulong)next >= end_addr) in mrccache_find_current()
/rk3399_rockchip-uboot/scripts/dtc/
H A Dlivetree.c41 new->next = *labels; in add_label()
79 assert(first->next == NULL); in chain_property()
81 first->next = list; in chain_property()
89 struct property *next; in reverse_properties() local
92 next = p->next; in reverse_properties()
93 p->next = head; in reverse_properties()
95 p = next; in reverse_properties()
154 new_node->proplist = new_prop->next; in merge_nodes()
155 new_prop->next = NULL; in merge_nodes()
253 prop->next = NULL; in add_property()
[all …]
/rk3399_rockchip-uboot/arch/microblaze/include/asm/
H A Dsystem.h34 struct thread_struct *next);
35 #define switch_to(prev,next,last) do { \ argument
36 if (prev != next) { \
37 (last) = switch_thread (&prev->thread, &next->thread); \

12345678910