Home
last modified time | relevance | path

Searched refs:index (Results 1 – 21 of 21) sorted by relevance

/scripts/
Dgenerate_initcall_order.pl40 my ($index, $initcalls) = @_;
53 print "$index $level $secname\n";
72 my ($index, $level, $secname) = $data =~
75 if (!defined($index) ||
81 $index = int($index);
83 if (!exists($results->{$index})) {
84 $results->{$index} = [];
87 push (@{$results->{$index}}, {
98 my ($index, $file) = @_;
115 write_results($index, $initcalls);
[all …]
Dleaking_addresses.pl591 my $index = index($_, ': ');
592 $index += 2; # skid ': '
593 print substr($_, $index);
620 my $index = index($line, ': ');
621 my $path = substr($line, 0, $index);
623 $index += 2; # skip ': '
624 add_to_cache($paths, $path, substr($line, $index));
631 my $index = index($line, ': ');
632 my $path = substr($line, 0, $index);
635 $index += 2; # skip ': '
[all …]
Dget_maintainer.pl670 my $index = 0;
675 $index++;
680 defined $self_test_info[$index] &&
681 $self_test_info[$index]->{line} =~ /^([A-Z]):\s*\S/) {
691 my $nextline = $index;
1207 my $index = 0;
1209 while ($index < @typevalue) {
1210 my $tv = $typevalue[$index];
1214 $index++;
1217 return $index;
[all …]
Ddecodecode56 width=`expr index "$code" ' '`
105 marker=`expr index "$code" "\<"`
107 marker=`expr index "$code" "\("`
Dshow_delta85 base_str = sys.argv[sys.argv.index("-b")+1]
Dsetlocalversion118 git diff-index --name-only HEAD
Dasn1_compiler.c294 unsigned char index; member
1093 action->index = 0; in parse_type()
1297 int index; in render() local
1327 index = 0; in render()
1329 action->index = index++; in render()
1340 action->name, action->index); in render()
1348 fprintf(out, "\t[%4u] = %s,\n", action->index, action->name); in render()
Drecordmcount.h196 int index; in get_symindex() local
203 index = offset / sizeof(*sym); in get_symindex()
205 return w(symtab_shndx[index]); in get_symindex()
/scripts/kconfig/
Dnconf.c500 int index; in get_mext_match() local
508 index = match_start; in get_mext_match()
510 char *str = k_menu_items[index].str; in get_mext_match()
512 return index; in get_mext_match()
515 --index; in get_mext_match()
517 ++index; in get_mext_match()
518 index = (index + items_num) % items_num; in get_mext_match()
519 if (index == match_start) in get_mext_match()
568 int index = items_num-1; in item_add_str() local
572 if (index < 0) in item_add_str()
[all …]
Dqconf.h181 const QModelIndex &index) const override;
183 const QModelIndex &index) const override;
Dqconf.cc245 const QModelIndex &index) const in createEditor()
250 if (index.column() != dataColIdx) in createEditor()
254 item = static_cast<ConfigItem *>(index.internalPointer()); in createEditor()
258 return QStyledItemDelegate::createEditor(parent, option, index); in createEditor()
263 const QModelIndex &index) const in setModelData()
276 item = static_cast<ConfigItem *>(index.internalPointer()); in setModelData()
295 QStyledItemDelegate::setModelData(editor, model, index); in setModelData()
Dexpr.h281 int index; member
Dmenu.c774 jump->index = 0; in get_prompt_str()
776 jump->index = list_entry(head->prev, struct jump_key, in get_prompt_str()
777 entries)->index + 1; in get_prompt_str()
Dmconf.c375 int key = '0' + (pos->index % JUMP_NB) + 1; in update_text()
/scripts/gcc-plugins/
Drandomize_layout_plugin.c212 unsigned long i, x, index; in performance_shuffle() local
229 for (index = size_group[x].length - 1; index > 0; index--) { in performance_shuffle()
232 i = size_group[x].start + index; in performance_shuffle()
235 randnum = ranval(prng_state) % (index + 1); in performance_shuffle()
510 lastidx = CONSTRUCTOR_ELT(init, CONSTRUCTOR_NELTS(init) - 1)->index; in update_decl_size()
Dgcc-common.h175 tree cstr, elem, index, type; in build_const_char_string() local
179 index = build_index_type(size_int(len - 1)); in build_const_char_string()
180 type = build_array_type(elem, index); in build_const_char_string()
/scripts/coccinelle/iterators/
Duse_after_iter.cocci142 cocci.print_main("invalid iterator index reference",p2)
150 msg = "ERROR: invalid reference to the index variable of the iterator on line %s" % (p1[0].line)
Ddevice_node_continue.cocci2 /// Device node iterators put the previous value of the index variable, so an
/scripts/kconfig/lxdialog/
Dmenubox.c89 #define print_item(index, choice, selected) \ argument
91 item_set(index); \
/scripts/dtc/libfdt/
Dlibfdt.h1141 const char *property, int index,
/scripts/mod/
Dmodpost.c1795 static int32_t sign_extend32(int32_t value, int index) in sign_extend32() argument
1797 uint8_t shift = 31 - index; in sign_extend32()