Home
last modified time | relevance | path

Searched refs:suppression_types_num_ (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.cpp27 suppression_types_num_(suppression_types_num), in SuppressionContext()
29 CHECK_LE(suppression_types_num_, kMaxSuppressionTypes); in SuppressionContext()
30 internal_memset(has_suppression_type_, 0, suppression_types_num_); in SuppressionContext()
133 for (type = 0; type < suppression_types_num_; type++) { in Parse()
140 if (type == suppression_types_num_) { in Parse()
143 for (type = 0; type < suppression_types_num_; type++) in Parse()
166 for (int i = 0; i < suppression_types_num_; i++) { in HasSuppressionType()
H A Dsanitizer_suppressions.h47 const int suppression_types_num_; variable