Searched defs:InternalScopedBuffer (Results 1 - 1 of 1) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h70 // InternalScopedBuffer can be used instead of large stack arrays to
75 class InternalScopedBuffer { class in namespace:__sanitizer
77 explicit InternalScopedBuffer(uptr cnt) { function in class:__sanitizer::InternalScopedBuffer
79 ptr_ = (T*)MmapOrDie(cnt * sizeof(T), "InternalScopedBuffer");
81 ~InternalScopedBuffer() {
92 InternalScopedBuffer(const InternalScopedBuffer&);
93 void operator=(const InternalScopedBuffer&);
96 class InternalScopedString : public InternalScopedBuffer<char> {
99 : InternalScopedBuffer<cha
[all...]

Completed in 228 milliseconds