Home
last modified time | relevance | path

Searched refs:bug_type (Results 1 – 7 of 7) 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/swiftshader/third_party/llvm-7.0/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.cc319 const char *bug_type) { in DescribeAddressIfGlobal() argument
330 if (0 == internal_strcmp(bug_type, "initialization-order-fiasco") && in DescribeAddressIfGlobal()
581 static void DescribeAddress(uptr addr, uptr access_size, const char *bug_type) { in DescribeAddress() argument
586 if (DescribeAddressIfGlobal(addr, access_size, bug_type)) in DescribeAddress()
918 char bug_type[100]; in ReportStringFunctionMemoryRangesOverlap() local
919 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function); in ReportStringFunctionMemoryRangesOverlap()
923 bug_type, offset1, offset1 + length1, offset2, offset2 + length2); in ReportStringFunctionMemoryRangesOverlap()
925 ScarinessScore::PrintSimple(10, bug_type); in ReportStringFunctionMemoryRangesOverlap()
927 DescribeAddress((uptr)offset1, length1, bug_type); in ReportStringFunctionMemoryRangesOverlap()
928 DescribeAddress((uptr)offset2, length2, bug_type); in ReportStringFunctionMemoryRangesOverlap()
[all …]
/external/clang/tools/scan-build-py/libscanbuild/
Dreport.py180 for bug_type in types.values():
191 | </tr>""", indent).format(**bug_type))
411 bug_type = bug['bug_type']
413 current_type = current_category.get(bug_type, {
414 'bug_type': bug_type,
419 current_category.update({bug_type: current_type})
/external/clang/tools/scan-build/bin/
Dscan-build688 my $bug_type = ($row->[2]);
690 my $key = "$bug_category:$bug_type";
692 if (!defined $Totals{$key}) { $Totals{$key} = [1,$bug_category,$bug_type]; }