Home | History | Annotate | Download | only in regexp

Lines Matching refs:thread_local_

27   thread_local_.Free();
32 size_t size = sizeof(thread_local_);
33 MemCopy(reinterpret_cast<void*>(to), &thread_local_, size);
34 thread_local_ = ThreadLocal();
40 size_t size = sizeof(thread_local_);
41 MemCopy(&thread_local_, reinterpret_cast<void*>(from), size);
47 if (thread_local_.memory_size_ > kMinimumStackSize) {
48 DeleteArray(thread_local_.memory_);
49 thread_local_ = ThreadLocal();
65 if (thread_local_.memory_size_ < size) {
67 if (thread_local_.memory_size_ > 0) {
69 MemCopy(new_memory + size - thread_local_.memory_size_,
70 thread_local_.memory_, thread_local_.memory_size_);
71 DeleteArray(thread_local_.memory_);
73 thread_local_.memory_ = new_memory;
74 thread_local_.memory_size_ = size;
75 thread_local_.limit_ =
78 return reinterpret_cast<Address>(thread_local_.memory_) +
79 thread_local_.memory_size_;