Searched refs:prev (Results 1 – 10 of 10) sorted by relevance
/scripts/kconfig/ |
D | list.h | 25 struct list_head *next, *prev; member 83 struct list_head *prev, in __list_add() argument 86 next->prev = _new; in __list_add() 88 _new->prev = prev; in __list_add() 89 prev->next = _new; in __list_add() 102 __list_add(_new, head->prev, head); in list_add_tail() 112 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del() argument 114 next->prev = prev; in __list_del() 115 prev->next = next; in __list_del() 128 __list_del(entry->prev, entry->next); in list_del() [all …]
|
D | preprocess.c | 348 char *tmp, *name, *res, *endptr, *prev, *p; in eval_clause() local 368 prev = p = tmp; in eval_clause() 389 new_argv[new_argc++] = prev; in eval_clause() 390 prev = p + 1; in eval_clause() 402 new_argv[new_argc++] = prev; in eval_clause()
|
D | symbol.c | 967 struct dep_stack *prev, *next; member 978 stack->prev = check_top; in dep_stack_insert() 985 check_top = check_top->prev; in dep_stack_remove() 1008 for (stack = check_top; stack != NULL; stack = stack->prev) in sym_check_print_recursive()
|
D | mconf.c | 459 list_del(trail.prev); in search_conf() 749 list_del(trail.prev); in conf()
|
D | menu.c | 741 jump->index = list_entry(head->prev, struct jump_key, in get_prompt_str()
|
/scripts/mod/ |
D | list.h | 39 struct list_head *next, *prev; member 57 list->prev = list; in INIT_LIST_HEAD() 67 struct list_head *prev, in __list_add() argument 70 next->prev = new; in __list_add() 72 new->prev = prev; in __list_add() 73 prev->next = new; in __list_add() 99 __list_add(new, head->prev, head); in list_add_tail() 109 static inline void __list_del(struct list_head *prev, struct list_head *next) in __list_del() argument 111 next->prev = prev; in __list_del() 112 prev->next = next; in __list_del() [all …]
|
D | modpost.c | 702 char *prev) in get_next_modinfo() argument 709 if (prev) { in get_next_modinfo() 710 size -= prev - modinfo; in get_next_modinfo() 711 modinfo = next_string(prev, &size); in get_next_modinfo()
|
/scripts/dtc/ |
D | srcpos.h | 18 struct srcfile_state *prev; member
|
D | srcpos.c | 183 srcfile->prev = current_srcfile; in srcfile_push() 200 current_srcfile = srcfile->prev; in srcfile_pop()
|
/scripts/ |
D | checkpatch.pl | 3667 my $prev = $1; 3670 my $previndex = index($preferred_order, $prev); 3677 "Misordered MAINTAINERS entry - list '$cur:' before '$prev:'\n" . $hereprev); 3678 } elsif ((($prev eq 'F' && $cur eq 'F') || 3679 ($prev eq 'X' && $cur eq 'X')) &&
|