Home
last modified time | relevance | path

Searched refs:count_ (Results 1 – 8 of 8) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libignore.cpp26 if (count_ >= kMaxLibs) { in AddIgnoredLibrary()
31 Lib *lib = &libs_[count_++]; in AddIgnoredLibrary()
44 for (uptr i = 0; i < count_; i++) { in OnLibraryLoaded()
55 for (uptr i = 0; i < count_; i++) { in OnLibraryLoaded()
H A Dsanitizer_allocator_primary32.h80 count_ = count; in SetFromArray()
84 uptr Count() const { return count_; } in Count()
85 void Clear() { count_ = 0; } in Clear()
87 batch_[count_++] = ptr; in Add()
88 DCHECK_LE(count_, kMaxNumCached); in Add()
106 uptr count_;
H A Dsanitizer_libignore.h81 uptr count_; variable
H A Dsanitizer_syscalls_netbsd.inc666 PRE_SYSCALL(readlink)(void *path_, void *buf_, long long count_) {
672 PRE_WRITE(buf_, count_);
676 (long long res, void *path_, void *buf_, long long count_) {
1302 (long long fd_, void *buf_, long long count_, void *basep_) {
1306 (long long res, long long fd_, void *buf_, long long count_, void *basep_) {
1528 (long long fd_, void *buf_, long long count_, void *basep_) {
1532 (long long res, long long fd_, void *buf_, long long count_, void *basep_) {
2007 PRE_SYSCALL(compat_30_getdents)(long long fd_, void *buf_, long long count_) {
2011 (long long res, long long fd_, void *buf_, long long count_) {
2478 PRE_SYSCALL(uuidgen)(void *store_, long long count_) { /* Nothing to do */ }
[all …]
/src/contrib/kyua/utils/
H A Dunits.cpp54 units::bytes::bytes(const uint64_t count_) : in bytes() argument
55 _count(count_) in bytes()
/src/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_errors.h158 ErrorCallocOverflow(u32 tid, BufferedStackTrace *stack_, uptr count_, in ErrorCallocOverflow()
162 count(count_), in ErrorCallocOverflow()
173 ErrorReallocArrayOverflow(u32 tid, BufferedStackTrace *stack_, uptr count_, in ErrorReallocArrayOverflow()
177 count(count_), in ErrorReallocArrayOverflow()
/src/contrib/googletest/googletest/test/
H A Dgoogletest-param-test-test.cc879 SeparateInstanceTest() : count_(0) {} in SeparateInstanceTest()
890 int count_; member in SeparateInstanceTest
896 EXPECT_EQ(0, count_++); in TEST_P()
1159 ParameterizedDerivedTest() : count_(0) {} in ParameterizedDerivedTest()
1160 int count_; member in ParameterizedDerivedTest
1170 EXPECT_EQ(0, count_++); in TEST_P()
H A Dgtest_unittest.cc5054 TestLifeCycleTest() { count_++; } in TestLifeCycleTest()
5058 ~TestLifeCycleTest() override { count_--; } in ~TestLifeCycleTest()
5061 int count() const { return count_; } in count()
5064 static int count_; member in __anon0e0fc5b70511::TestLifeCycleTest
5067 int TestLifeCycleTest::count_ = 0; member in __anon0e0fc5b70511::TestLifeCycleTest