HomeSort by relevance Sort by last modified time
    Searched defs:thread_local_ (Results 1 - 4 of 4) sorted by null

  /external/v8/src/
regexp-stack.cc 58 size_t size = sizeof(thread_local_);
60 &thread_local_, local
62 thread_local_ = ThreadLocal();
68 size_t size = sizeof(thread_local_);
69 memcpy(&thread_local_, reinterpret_cast<void*>(from), size);
75 if (thread_local_.memory_size_ > kMinimumStackSize) {
76 DeleteArray(thread_local_.memory_);
77 thread_local_ = ThreadLocal();
93 if (thread_local_.memory_size_ < size) {
95 if (thread_local_.memory_size_ > 0)
    [all...]
regexp-stack.h 67 ASSERT(thread_local_.memory_size_ != 0);
68 return thread_local_.memory_ + thread_local_.memory_size_;
72 size_t stack_capacity() { return thread_local_.memory_size_; }
79 Address* limit_address() { return &(thread_local_.limit_); }
91 void FreeThreadResources() { thread_local_.Free(); }
123 return reinterpret_cast<Address>(&thread_local_.memory_);
128 return reinterpret_cast<Address>(&thread_local_.memory_size_);
136 ThreadLocal thread_local_; member in class:v8::internal::RegExpStack
execution.h 212 return thread_local_.climit_;
215 return thread_local_.real_climit_;
218 return thread_local_.jslimit_;
221 return thread_local_.real_jslimit_;
224 return reinterpret_cast<Address>(&thread_local_.jslimit_);
227 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
239 return thread_local_.interrupt_flags_ != 0;
244 return thread_local_.postpone_interrupts_nesting_ > 0;
298 ThreadLocal thread_local_; member in class:v8::internal::StackGuard
debug.h 231 bool InDebugger() { return thread_local_.debugger_entry_ != NULL; }
290 return thread_local_.break_frame_id_;
292 int break_id() { return thread_local_.break_id_; }
294 bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
299 Address step_in_fp() { return thread_local_.step_into_fp_; }
300 Address* step_in_fp_addr() { return &thread_local_.step_into_fp_; }
302 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
303 Address step_out_fp() { return thread_local_.step_out_fp_; }
306 return thread_local_.debugger_entry_;
309 thread_local_.debugger_entry_ = entry
547 ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]

Completed in 144 milliseconds