Searched refs:start (Results 1 - 15 of 15) sorted by relevance

/scripts/
H A Dbootgraph.pl42 my %start;
57 $start{$func} = $1;
80 $start{$func} = $1;
147 my @initcalls = sort { $start{$a} <=> $start{$b} } keys(%start);
150 my $duration = $end{$key} - $start{$key};
160 $s = ($start{$key} - $firsttime) * $mult;
H A Dmarkup_oops.pl205 open(FILE, $cross_compile."objdump -dS $filename |") || die "Cannot start objdump";
238 open(FILE, $cross_compile."objdump -dS --adjust-vma=$vmaoffset --start-address=$decodestart --stop-address=$decodestop $filename |") || die "Cannot start objdump";
278 my $start;
284 $start = $center;
286 while ($start > 1) {
287 $start = $start - 1;
288 my $line = $lines[$start];
326 # start annotatin
[all...]
H A Ddocproc.c355 int ret, i, count, start; local
416 start = all_list_len;
420 for (i = 0; i < data_len && start != all_list_len; i++) {
422 all_list[start] = str;
424 start++;
538 /* Rewind to start from beginning of file again */
H A Dget_maintainer.pl508 my ($start, $end) = @_;
510 for (my $i = $start; $i < $end; $i++) {
526 my ($start, $end) = @_;
528 for (my $i = $start; $i < $end; $i++) {
570 my $start = find_starting_index($tvi);
577 for ($i = $start; $i < $end; $i++) {
592 for ($i = $start; $i < $end; $i++) {
604 range_is_maintained($start, $end) &&
605 range_has_maintainer($start, $end)) {
624 my $start
[all...]
H A Dkallsyms.c41 unsigned long long start, end; member in struct:text_range
91 tr->start = addr;
168 if (s->addr >= tr->start && s->addr <= tr->end)
517 /* start by placing the symbols that are actually used on the table */
H A Dkernel-doc268 # 2 - scanning field start.
280 my $doc_start = '^/\*\*\s*$'; # Allow whitespace at end of comment start.
1228 my $start;
1235 $start = $args{'functiontype'} . " " . $args{'function'} . " (";
1237 $start = $args{'function'} . " (";
1239 print $start;
1253 print " " x length($start);
1799 # regexps don't even start to express all the possibilities), and
2153 # @parameter line to signify start of description
H A Dcheckpatch.pl782 # Strip the diff line prefixes and rip blank lines at start and end.
854 my $start = $linenr - 1;
862 for ($line = $start; $remain > 0; $line++) {
1444 # at context start.
1464 # is the start of a diff block and this line starts
1677 # Check if it's the start of a commit log
1836 # check for && or || at the start of a line
1880 "please, no spaces at the start of a line\n" . $herevet);
1944 # declarations always start with types
1950 # definitions in global scope can only start wit
[all...]
/scripts/dtc/libfdt/
H A Dfdt_wip.c75 static void _fdt_nop_region(void *start, int len) argument
79 for (p = start; (char *)p < ((char *)start + len); p++)
/scripts/genksyms/
H A Dgenksyms.c71 static struct string_list *concat_list(struct string_list *start, ...);
363 static struct string_list *concat_list(struct string_list *start, ...) argument
368 if (!start)
370 for (va_start(ap, start); (n = va_arg(ap, struct string_list *));) {
373 n2->next = start;
374 start = n;
377 return start;
391 struct string_list *copy_list_range(struct string_list *start, argument
396 if (start == end)
398 n = res = copy_node(start);
[all...]
H A Dgenksyms.h72 struct string_list *copy_list_range(struct string_list *start,
/scripts/kconfig/
H A Dstreamline_config.pl259 my $start = $1;
264 $process .= $start . $vars{$var};
266 $process .= $start . $variable;
H A Dzconf.y103 input: nl start | start;
105 start: mainmenu_stmt stmt_list | stmt_list; label
H A Dgconf.c394 GtkTextIter start, end; local
401 gtk_text_buffer_get_bounds(buffer, &start, &end);
402 gtk_text_buffer_delete(buffer, &start, &end);
419 GtkTextIter start, end; local
423 gtk_text_buffer_get_bounds(buffer, &start, &end);
424 gtk_text_buffer_delete(buffer, &start, &end);
/scripts/dtc/
H A Ddtc.h208 struct reserve_info *build_reserve_entry(uint64_t start, uint64_t len);
/scripts/mod/
H A Dmodpost.c1563 Elf_Rela *start = (void *)elf->hdr + sechdr->sh_offset; local
1564 Elf_Rela *stop = (void *)start + sechdr->sh_size;
1572 for (rela = start; rela < stop; rela++) {
1607 Elf_Rel *start = (void *)elf->hdr + sechdr->sh_offset; local
1608 Elf_Rel *stop = (void *)start + sechdr->sh_size;
1616 for (rel = start; rel < stop; rel++) {

Completed in 78 milliseconds