Lines Matching refs:uintptr_t
63 void SetStackLimit(uintptr_t limit);
108 uintptr_t climit() { return thread_local_.climit(); } in climit()
109 uintptr_t jslimit() { return thread_local_.jslimit(); } in jslimit()
113 uintptr_t real_climit() { in real_climit()
116 uintptr_t real_jslimit() { in real_jslimit()
156 static const uintptr_t kInterruptLimit = V8_UINT64_C(0xfffffffffffffffe);
157 static const uintptr_t kIllegalLimit = V8_UINT64_C(0xfffffffffffffff8);
159 static const uintptr_t kInterruptLimit = 0xfffffffe;
160 static const uintptr_t kIllegalLimit = 0xfffffff8;
185 uintptr_t real_jslimit_; // Actual JavaScript stack limit set for the VM.
186 uintptr_t real_climit_; // Actual C++ stack limit set for the VM.
193 uintptr_t jslimit() { in jslimit()
194 return bit_cast<uintptr_t>(base::NoBarrier_Load(&jslimit_)); in jslimit()
196 void set_jslimit(uintptr_t limit) { in set_jslimit()
200 uintptr_t climit() { in climit()
201 return bit_cast<uintptr_t>(base::NoBarrier_Load(&climit_)); in climit()
203 void set_climit(uintptr_t limit) { in set_climit()