OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:opaque_storage_
(Results
1 - 4
of
4
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_mutex.h
81
:
opaque_storage_
{0, }, owner_(0) {}
88
uptr
opaque_storage_
[10];
member in class:__sanitizer::BlockingMutex
sanitizer_win.cc
483
CHECK(sizeof(CRITICAL_SECTION) <= sizeof(
opaque_storage_
));
484
InitializeCriticalSection((LPCRITICAL_SECTION)
opaque_storage_
);
489
CHECK(sizeof(CRITICAL_SECTION) <= sizeof(
opaque_storage_
));
490
InitializeCriticalSection((LPCRITICAL_SECTION)
opaque_storage_
);
504
EnterCriticalSection((LPCRITICAL_SECTION)
opaque_storage_
);
512
LeaveCriticalSection((LPCRITICAL_SECTION)
opaque_storage_
);
sanitizer_mac.cc
236
CHECK(sizeof(OSSpinLock) <= sizeof(
opaque_storage_
));
239
OSSpinLockLock((OSSpinLock*)&
opaque_storage_
);
247
OSSpinLockUnlock((OSSpinLock*)&
opaque_storage_
);
sanitizer_linux.cc
465
atomic_uint32_t *m = reinterpret_cast<atomic_uint32_t *>(&
opaque_storage_
);
478
atomic_uint32_t *m = reinterpret_cast<atomic_uint32_t *>(&
opaque_storage_
);
491
atomic_uint32_t *m = reinterpret_cast<atomic_uint32_t *>(&
opaque_storage_
);
Completed in 866 milliseconds