Lines Matching refs:uintptr_t
72 void SetStackLimit(uintptr_t limit);
116 uintptr_t climit() { return thread_local_.climit(); } in climit()
117 uintptr_t jslimit() { return thread_local_.jslimit(); } in jslimit()
121 uintptr_t real_climit() { in real_climit()
124 uintptr_t real_jslimit() { in real_jslimit()
163 static const uintptr_t kInterruptLimit = uintptr_t{0xfffffffffffffffe};
164 static const uintptr_t kIllegalLimit = uintptr_t{0xfffffffffffffff8};
166 static const uintptr_t kInterruptLimit = 0xfffffffe;
167 static const uintptr_t kIllegalLimit = 0xfffffff8;
192 uintptr_t real_jslimit_; // Actual JavaScript stack limit set for the VM.
193 uintptr_t real_climit_; // Actual C++ stack limit set for the VM.
200 uintptr_t jslimit() { in jslimit()
201 return bit_cast<uintptr_t>(base::Relaxed_Load(&jslimit_)); in jslimit()
203 void set_jslimit(uintptr_t limit) { in set_jslimit()
207 uintptr_t climit() { in climit()
208 return bit_cast<uintptr_t>(base::Relaxed_Load(&climit_)); in climit()
210 void set_climit(uintptr_t limit) { in set_climit()