Home
last modified time | relevance | path

Searched refs:head (Results 1 – 14 of 14) sorted by relevance

/scripts/kconfig/
A Dlist.h47 #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 Dmenu.c705 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 Dmconf.c358 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 Dqconf.cc1074 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 Dlkc_proto.h26 struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head);
/scripts/
A Ddtc-version.sh23 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 Dsetlocalversion85 if ! head=$(git rev-parse --verify HEAD 2>/dev/null); then
135 printf '%s%.12s' -g "$head"
A Dbinutils-version.sh17 version_string=$($gas --version | head -1 | \
A Dspdxcheck.py37 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 Dcoccicheck18 SPATCH_VERSION=$($SPATCH --version | head -1 | awk '{print $3}')
A DMakefile.xpl134 head-y := $(addprefix $(obj)/,$(head-y))
146 u-boot-spl-init := $(head-y)
/scripts/dtc/
A Dupdate-dtc-source.sh42 git log --oneline scripts/dtc/ | grep 'upstream' | head -1 | sed -e 's/^.* \(.*\)/\1/'
A Dlivetree.c88 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 Duse_after_iter.cocci2 /// variable ends up pointing to an address at an offset from the list head,

Completed in 21 milliseconds