Searched refs:head (Results 1 – 14 of 14) sorted by relevance
| /scripts/kconfig/ |
| A D | list.h | 47 #define list_for_each_entry(pos, head, member) \ argument 48 for (pos = list_entry((head)->next, typeof(*pos), member); \ 49 &pos->member != (head); \ 59 #define list_for_each_entry_safe(pos, n, head, member) \ argument 60 for (pos = list_entry((head)->next, typeof(*pos), member), \ 62 &pos->member != (head); \ 69 static inline int list_empty(const struct list_head *head) in list_empty() argument 71 return head->next == head; in list_empty() 98 static inline void list_add_tail(struct list_head *_new, struct list_head *head) in list_add_tail() argument 100 __list_add(_new, head->prev, head); in list_add_tail()
|
| A D | menu.c | 705 struct list_head *head) in get_prompt_str() argument 720 if (head && location) { in get_prompt_str() 734 if (list_empty(head)) in get_prompt_str() 737 jump->index = list_entry(head->prev, struct jump_key, in get_prompt_str() 740 list_add_tail(&jump->entries, head); in get_prompt_str() 795 struct list_head *head) in get_symbol_str() argument 813 get_prompt_str(r, prop, head); in get_symbol_str() 843 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head) in get_relations_str() argument 850 get_symbol_str(&res, sym, head); in get_relations_str()
|
| A D | mconf.c | 358 struct list_head *head; member 369 list_for_each_entry(pos, data->head, entries) { in update_text() 433 LIST_HEAD(head); in search_conf() 437 .head = &head, in search_conf() 443 res = get_relations_str(sym_arr, &head); in search_conf() 456 list_for_each_entry_safe(pos, tmp, &head, entries) in search_conf()
|
| A D | qconf.cc | 1074 QString head, debug, help; in menuInfo() local 1079 head += "<big><b>"; in menuInfo() 1081 head += "</b></big>"; in menuInfo() 1083 head += " ("; in menuInfo() 1088 head += "</a>"; in menuInfo() 1089 head += ")"; in menuInfo() 1092 head += "<big><b>"; in menuInfo() 1097 head += "</a>"; in menuInfo() 1098 head += "</b></big>"; in menuInfo() 1100 head += "<br><br>"; in menuInfo() [all …]
|
| A D | lkc_proto.h | 26 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
|
| /scripts/ |
| A D | dtc-version.sh | 23 MAJOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 1 | tr -d v) 24 MINOR=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 2) 25 PATCH=$($dtc -v | head -1 | awk '{print $NF}' | cut -d . -f 3 | cut -d - -f 1)
|
| A D | setlocalversion | 85 if ! head=$(git rev-parse --verify HEAD 2>/dev/null); then 135 printf '%s%.12s' -g "$head"
|
| A D | binutils-version.sh | 17 version_string=$($gas --version | head -1 | \
|
| A D | spdxcheck.py | 37 lictree = repo.head.commit.tree['LICENSES'] 271 scan_git_subtree(repo.head.reference.commit.tree, p) 277 scan_git_tree(repo.head.commit.tree)
|
| A D | coccicheck | 18 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
|
| A D | Makefile.xpl | 134 head-y := $(addprefix $(obj)/,$(head-y)) 146 u-boot-spl-init := $(head-y)
|
| /scripts/dtc/ |
| A D | update-dtc-source.sh | 42 git log --oneline scripts/dtc/ | grep 'upstream' | head -1 | sed -e 's/^.* \(.*\)/\1/'
|
| A D | livetree.c | 88 struct property *head = NULL; in reverse_properties() local 93 p->next = head; in reverse_properties() 94 head = p; in reverse_properties() 97 return head; in reverse_properties()
|
| /scripts/coccinelle/iterators/ |
| A D | use_after_iter.cocci | 2 /// variable ends up pointing to an address at an offset from the list head,
|
Completed in 21 milliseconds