Lines Matching refs:uintptr_t
74 void SetStackLimit(uintptr_t limit);
119 uintptr_t climit() { return thread_local_.climit(); } in climit()
120 uintptr_t jslimit() { return thread_local_.jslimit(); } in jslimit()
124 uintptr_t real_climit() { in real_climit()
127 uintptr_t real_jslimit() { in real_jslimit()
167 static const uintptr_t kInterruptLimit = V8_UINT64_C(0xfffffffffffffffe);
168 static const uintptr_t kIllegalLimit = V8_UINT64_C(0xfffffffffffffff8);
170 static const uintptr_t kInterruptLimit = 0xfffffffe;
171 static const uintptr_t kIllegalLimit = 0xfffffff8;
196 uintptr_t real_jslimit_; // Actual JavaScript stack limit set for the VM.
197 uintptr_t real_climit_; // Actual C++ stack limit set for the VM.
204 uintptr_t jslimit() { in jslimit()
205 return bit_cast<uintptr_t>(base::NoBarrier_Load(&jslimit_)); in jslimit()
207 void set_jslimit(uintptr_t limit) { in set_jslimit()
211 uintptr_t climit() { in climit()
212 return bit_cast<uintptr_t>(base::NoBarrier_Load(&climit_)); in climit()
214 void set_climit(uintptr_t limit) { in set_climit()