Lines Matching refs:result

1355   my @result = ();
1373 push(@result, $last);
1377 return @result;
1885 $main::source_cache{$file} = []; # Cache the negative result
2610 my @result = ();
2621 push(@result, $a);
2654 push(@result, "$a $func $fileline");
2657 push(@result, "$a");
2659 push(@result, "$func $fileline");
2663 push(@result, "$a");
2665 push(@result, $func);
2669 push(@result, "$a");
2673 push(@result, $f);
2676 push(@result, $a);
2682 # print join(",", @addrs), " => ", join(",", @result), "\n";
2683 return @result;
2763 my $result = {};
2768 AddEntry($result, $addrs[0], $count);
2771 return $result;
2779 my $result = {};
2784 AddEntry($result, $a, $count);
2787 return $result;
2857 my $result = {};
2879 AddEntry($result, $reduced_path, $count);
2883 return $result;
2992 my $result = {};
3003 AddEntry($result, $reduced_path, $count);
3005 $profile = $result;
3009 my $result = {};
3028 AddEntry($result, $reduced_path, $count);
3031 $result = FilterFrames($symbols, $result);
3033 return $result;
3040 my $result = {};
3058 AddEntry($result, $reduced_path, $count);
3060 return $result;
3082 my $result = {};
3089 AddEntry($result, $k, $count);
3094 return $result;
3102 my $result = {};
3115 AddEntry($result, $k, $count);
3118 return $result;
3124 my $result = 0;
3126 $result += $profile->{$k};
3128 return $result;
3453 # the result with a "0x%08llx" format which get rid of the zeroes.
3812 # $result->{version} Version number of profile file
3813 # $result->{period} Sampling period (in microseconds)
3814 # $result->{profile} Profile object
3815 # $result->{threads} Map of thread IDs to profile objects
3816 # $result->{map} Memory map info from profile
3817 # $result->{pcs} Hash of all PC values seen, key is hex address
3821 my $result; # return value
3868 $result = ReadHeapProfile($prog, *PROFILE, $header);
3871 $result = ReadHeapProfile($prog, *PROFILE, $header);
3874 $result = ReadThreadedHeapProfile($prog, $fname, $header);
3877 $result = ReadSynchProfile($prog, *PROFILE);
3883 $result = ReadSynchProfile($prog, *PROFILE);
3887 $result = ReadCPUProfile($prog, $fname, *PROFILE);
3895 $result = ReadCPUProfile($prog, $fname, *PROFILE);
3902 $result->{symbols} = $symbols;
3905 return $result;
4577 my $result = [];
4642 push(@{$result}, [$lib, $start, $finish, $offset]);
4652 push(@{$result}, [$main::opt_lib, $start, $finish, $start]);
4665 push(@{$result}, [$prog, $min_pc, $max_pc, $zero_offset]);
4667 return $result;