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

/scripts/
H A Dbootgraph.pl43 my %end;
92 $end{$2} = $1;
100 $end{$func} = $1;
150 my $duration = $end{$key} - $start{$key};
163 $e = ($end{$key} - $firsttime) * $mult;
H A Dkallsyms.c41 unsigned long long start, end; member in struct:text_range
94 tr->end = addr;
111 fprintf(stderr, "Read error or end of file.\n");
168 if (s->addr >= tr->start && s->addr <= tr->end)
212 if ((s->addr == text_range_text->end &&
214 (s->addr == text_range_inittext->end &&
270 * we are looking for, then end the search */
H A Dget_maintainer.pl507 my ($start, $end) = @_;
509 for (my $i = $start; $i < $end; $i++) {
525 my ($start, $end) = @_;
527 for (my $i = $start; $i < $end; $i++) {
570 my $end = find_ending_index($tvi);
576 for ($i = $start; $i < $end; $i++) {
591 for ($i = $start; $i < $end; $i++) {
603 range_is_maintained($start, $end) &&
604 range_has_maintainer($start, $end)) {
616 $tvi = $end
[all...]
H A Dcheckpatch.pl410 # and end, all to $;.
503 # If we are about to drop off the end, pull in more
585 # We are truly at the end, so shuffle to the next line.
607 # Strip the diff line prefixes and rip blank lines at start and end.
758 # Catch a comment on the end of the line itself.
910 # Assume all arms of the conditional end as this
1478 if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) {
1479 WARN("adding a line without newline at end of file\n" . $herecurr);
1685 # starting at the end of the conditional, so remove:
1687 # 2) any opening brace { on end o
[all...]
/scripts/basic/
H A Dfixdep.c238 const int *end = (const int *) (map + len); local
243 for (; m < end; m++) {
320 char *end = m + len; local
336 while (m < end) {
337 while (m < end && (*m == ' ' || *m == '\\' || *m == '\n'))
340 while (p < end && *p != ' ') p++;
341 if (p == end) {
/scripts/dtc/libfdt/
H A Dfdt_sw.c216 uint32_t *end; local
224 end = _fdt_grab_space(fdt, sizeof(*end));
225 if (! end)
227 *end = cpu_to_fdt32(FDT_END);
H A Dfdt_rw.c100 char *end = (char *)fdt + _fdt_data_size(fdt); local
102 if (((p + oldlen) < p) || ((p + oldlen) > end))
104 if ((end - oldlen + newlen) > ((char *)fdt + fdt_totalsize(fdt)))
106 memmove(p + newlen, p + oldlen, end - p - oldlen);
H A Dfdt_ro.c131 const char *end = path + strlen(path); local
149 q = end;
/scripts/genksyms/
H A Dgenksyms.h71 struct string_list *end);
H A Dgenksyms.c391 struct string_list *end)
395 if (start == end)
398 for (start = start->next; start != end; start = start->next) {
632 static struct symbol **end = &visited_symbols; local
635 *end = sym;
636 end = &sym->visited;
390 copy_list_range(struct string_list *start, struct string_list *end) argument
/scripts/kconfig/
H A Dgconf.c398 GtkTextIter start, end; local
405 gtk_text_buffer_get_bounds(buffer, &start, &end);
406 gtk_text_buffer_delete(buffer, &start, &end);
409 gtk_text_buffer_get_end_iter(buffer, &end);
410 gtk_text_buffer_insert_with_tags(buffer, &end, prompt, -1, tag1,
413 gtk_text_buffer_get_end_iter(buffer, &end);
414 gtk_text_buffer_insert_with_tags(buffer, &end, str_get(&help), -1, tag2,
423 GtkTextIter start, end; local
427 gtk_text_buffer_get_bounds(buffer, &start, &end);
428 gtk_text_buffer_delete(buffer, &start, &end);
[all...]
H A Dzconf.y90 %type <id> end
96 fprintf(stderr, "%s:%d: missing end statement for this entry\n",
117 | stmt_list end { zconf_error("unexpected end statement"); }
261 choice_end: end
329 if_end: end
368 menu_end: end
460 end: T_ENDMENU T_EOL { $$ = $1; } label
H A Dqconf.cc80 for (it = entryList.begin(); it != entryList.end(); ++it)
94 for (it = value.begin(); it != value.end(); ++it)
/scripts/mod/
H A Dsumversion.c365 /* Continue until line does not end with '\' */
405 char *sources, *end, *fname; local
434 end = strchr(sources, '\n');
435 if (!end) {
439 *end = '\0';
H A Dmodpost.c2017 char *symname, *modname, *d, *export, *end; local
2030 if (export && ((end = strchr(export, '\t')) != NULL))
2031 *end = '\0';

Completed in 912 milliseconds