Home
last modified time | relevance | path

Searched refs:entry (Results 1 – 12 of 12) sorted by relevance

/scripts/kconfig/
Dlist.h126 static inline void list_del(struct list_head *entry) in list_del() argument
128 __list_del(entry->prev, entry->next); in list_del()
129 entry->next = (struct list_head*)LIST_POISON1; in list_del()
130 entry->prev = (struct list_head*)LIST_POISON2; in list_del()
Dqconf.cc1800 QString entry; in saveSettings() local
1803 entry = "single"; in saveSettings()
1807 entry = "split"; in saveSettings()
1811 entry = "full"; in saveSettings()
1817 configSettings->setValue("/listMode", entry); in saveSettings()
/scripts/gdb/linux/
Dcpus.py78 entry = -1
83 entry += 1
84 if entry == num_entries:
86 bits = mask[entry]
95 cpu = entry * bits_per_entry + bit
/scripts/
Dgcc-goto.sh18 entry:
19 asm goto ("" :::: entry);
Dchecksyscalls.sh257 while read nr abi name entry ; do
264 (ignore_list && syscall_list $(dirname $0)/../arch/x86/entry/syscalls/syscall_32.tbl) | \
Dget_maintainer.pl1417 while (my $entry = shift(@address_list)) {
1418 push_email_address($entry, $role);
1433 foreach my $entry (@email_to) {
1435 my ($entry_name, $entry_address) = parse_email($entry->[0]);
1437 && ($role eq "" || !($entry->[1] =~ m/$role/))
1439 if ($entry->[1] eq "") {
1440 $entry->[1] = "$role";
1442 $entry->[1] = "$entry->[1],$role";
1446 if ($email eq $entry->[0]
1447 && ($role eq "" || !($entry->[1] =~ m/$role/))
[all …]
Dgen_compile_commands.py134 entry = process_line(directory, dirpath,
136 compile_commands.append(entry)
Dasn1_compiler.c1396 int entry; in render_out_of_line_list() local
1404 e->entry_index = entry = nr_entries; in render_out_of_line_list()
1417 render_opcode(out, "_jump_target(%u),\n", entry); in render_out_of_line_list()
1424 render_opcode(out, "_jump_target(%u),\n", entry); in render_out_of_line_list()
1443 int entry, skippable = 0, outofline = 0; in render_element() local
1574 entry = nr_entries; in render_element()
1582 render_opcode(out, "_jump_target(%u),\n", entry); in render_element()
Dcheckpatch.pl583 foreach my $entry (@mode_permission_funcs) {
585 $mode_perms_search .= $entry->[0];
604 foreach my $entry (keys %deprecated_apis) {
606 $deprecated_apis_search .= $entry;
639 foreach my $entry (keys %mode_permission_string_types) {
641 $mode_perms_string_search .= $entry;
6616 foreach my $entry (@mode_permission_funcs) {
6617 my $func = $entry->[0];
6618 my $arg_pos = $entry->[1];
/scripts/gcc-plugins/
Drandomize_layout_plugin.c789 const struct whitelist_entry *entry; in whitelisted_cast() local
792 for (entry = whitelist; entry->pathname; entry++) { in whitelisted_cast()
793 if (!strstr(xloc.file, entry->pathname)) in whitelisted_cast()
796 if (type_name_eq(stmt, lhs_tree, entry->lhs) && type_name_eq(stmt, rhs_tree, entry->rhs)) in whitelisted_cast()
Dgcc-common.h800 static inline void cgraph_remove_function_insertion_hook(struct cgraph_node_hook_list *entry) in cgraph_remove_function_insertion_hook() argument
802 symtab->remove_cgraph_insertion_hook(entry); in cgraph_remove_function_insertion_hook()
810 static inline void cgraph_remove_node_removal_hook(struct cgraph_node_hook_list *entry) in cgraph_remove_node_removal_hook() argument
812 symtab->remove_cgraph_removal_hook(entry); in cgraph_remove_node_removal_hook()
820 static inline void cgraph_remove_node_duplication_hook(struct cgraph_2node_hook_list *entry) in cgraph_remove_node_duplication_hook() argument
822 symtab->remove_cgraph_duplication_hook(entry); in cgraph_remove_node_duplication_hook()
/scripts/dtc/
Dlivetree.c891 char *entry; in add_fixup_entry() local
900 xasprintf(&entry, "%s:%s:%u", in add_fixup_entry()
902 append_to_property(fn, m->ref, entry, strlen(entry) + 1, TYPE_STRING); in add_fixup_entry()
904 free(entry); in add_fixup_entry()