Home
last modified time | relevance | path

Searched refs:bug_type (Results 1 – 4 of 4) sorted by relevance

/external/llvm/test/Linker/Inputs/
DPR11464.b.ll1 %bug_type = type { %bug_type* }
4 define i32 @bug_a(%bug_type* %fp) nounwind uwtable {
6 %d_stream = getelementptr inbounds %bug_type, %bug_type* %fp, i64 0, i32 0
DPR11464.a.ll1 %bug_type = type opaque
2 declare i32 @bug_a(%bug_type*)
3 declare i32 @bug_b(%bug_type*)
/external/compiler-rt/lib/asan/
Dasan_report.cc318 const char *bug_type) { in DescribeAddressIfGlobal() argument
329 if (0 == internal_strcmp(bug_type, "initialization-order-fiasco") && in DescribeAddressIfGlobal()
580 static void DescribeAddress(uptr addr, uptr access_size, const char *bug_type) { in DescribeAddress() argument
585 if (DescribeAddressIfGlobal(addr, access_size, bug_type)) in DescribeAddress()
890 char bug_type[100]; in ReportStringFunctionMemoryRangesOverlap() local
891 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function); in ReportStringFunctionMemoryRangesOverlap()
895 bug_type, offset1, offset1 + length1, offset2, offset2 + length2); in ReportStringFunctionMemoryRangesOverlap()
898 DescribeAddress((uptr)offset1, length1, bug_type); in ReportStringFunctionMemoryRangesOverlap()
899 DescribeAddress((uptr)offset2, length2, bug_type); in ReportStringFunctionMemoryRangesOverlap()
900 ReportErrorSummary(bug_type, stack); in ReportStringFunctionMemoryRangesOverlap()
[all …]
/external/clang/tools/scan-build/bin/
Dscan-build687 my $bug_type = ($row->[2]);
689 my $key = "$bug_category:$bug_type";
691 if (!defined $Totals{$key}) { $Totals{$key} = [1,$bug_category,$bug_type]; }