Home | History | Annotate | Download | only in lsan

Lines Matching full:uptr

40     uptr stack_top = 0, stack_bottom = 0;                                    \
60 INTERCEPTOR(void*, malloc, uptr size) {
71 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) {
79 INTERCEPTOR(void*, realloc, void *q, uptr size) {
85 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) {
91 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) {
99 INTERCEPTOR(void*, valloc, uptr size) {
107 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) {
126 INTERCEPTOR(void*, pvalloc, uptr size) {
129 uptr PageSize = GetPageSizeCached();
146 void *operator new(uptr size) { OPERATOR_NEW_BODY; }
148 void *operator new[](uptr size) { OPERATOR_NEW_BODY; }
150 void *operator new(uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
152 void *operator new[](uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
171 INTERCEPTOR(void *, __libc_memalign, uptr align, uptr s) ALIAS("memalign");
178 uptr iter = (uptr)v;
196 const uptr kPthreadDestructorIterations = 4;
236 int tid = ThreadCreate(GetCurrentThread(), *(uptr *)th, detached);
249 int tid = ThreadTid((uptr)th);