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

  /external/chromium_org/v8/src/
regexp-stack.cc 31 thread_local_.Free();
36 size_t size = sizeof(thread_local_);
37 MemCopy(reinterpret_cast<void*>(to), &thread_local_, size); local
38 thread_local_ = ThreadLocal();
44 size_t size = sizeof(thread_local_);
45 MemCopy(&thread_local_, reinterpret_cast<void*>(from), size);
51 if (thread_local_.memory_size_ > kMinimumStackSize) {
52 DeleteArray(thread_local_.memory_);
53 thread_local_ = ThreadLocal();
69 if (thread_local_.memory_size_ < size)
    [all...]
execution.h 179 return thread_local_.climit_;
182 return thread_local_.real_climit_;
185 return thread_local_.jslimit_;
188 return thread_local_.real_jslimit_;
191 return reinterpret_cast<Address>(&thread_local_.jslimit_);
194 return reinterpret_cast<Address>(&thread_local_.real_jslimit_);
211 return thread_local_.interrupt_flags_ != 0;
267 ThreadLocal thread_local_; member in class:v8::internal::FINAL
regexp-stack.h 44 DCHECK(thread_local_.memory_size_ != 0);
45 return thread_local_.memory_ + thread_local_.memory_size_;
49 size_t stack_capacity() { return thread_local_.memory_size_; }
56 Address* limit_address() { return &(thread_local_.limit_); }
68 void FreeThreadResources() { thread_local_.Free(); }
100 return reinterpret_cast<Address>(&thread_local_.memory_);
105 return reinterpret_cast<Address>(&thread_local_.memory_size_);
113 ThreadLocal thread_local_; member in class:v8::internal::RegExpStack
debug.h 399 bool IsStepping() { return thread_local_.step_count_ > 0; }
402 bool StepInActive() { return thread_local_.step_into_fp_ != 0; }
407 bool StepOutActive() { return thread_local_.step_out_fp_ != 0; }
458 DebugScope* debugger_entry() { return thread_local_.current_debug_scope_; }
469 return thread_local_.current_debug_scope_ != NULL;
473 StackFrame::Id break_frame_id() { return thread_local_.break_frame_id_; }
474 int break_id() { return thread_local_.break_id_; }
486 Object*** address = &thread_local_.restarter_frame_function_pointer_;
491 return reinterpret_cast<Address>(&thread_local_.step_into_fp_);
500 thread_local_.break_id_ = ++thread_local_.break_count_
642 ThreadLocal thread_local_; member in class:v8::internal::Debug
    [all...]

Completed in 52 milliseconds