Searched refs:allocated_for_dlsym (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_malloc_linux.cc33 static uptr allocated_for_dlsym; variable
40 return off < allocated_for_dlsym * sizeof(alloc_memory_for_dlsym[0]);
45 void *mem = (void*)&alloc_memory_for_dlsym[allocated_for_dlsym];
47 allocated_for_dlsym += size_in_words;
48 CHECK_LT(allocated_for_dlsym, kDlsymAllocPoolSize);
56 uptr prev_offset = allocated_for_dlsym - last_dlsym_alloc_size_in_words;
60 allocated_for_dlsym = prev_offset;
72 uptr addr = (uptr)&alloc_memory_for_dlsym[allocated_for_dlsym];
81 allocated_for_dlsym = allocated;
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_malloc_linux.cc31 static uptr allocated_for_dlsym; variable
38 return off < allocated_for_dlsym * sizeof(alloc_memory_for_dlsym[0]);
43 void *mem = (void*)&alloc_memory_for_dlsym[allocated_for_dlsym];
45 allocated_for_dlsym += size_in_words;
46 CHECK_LT(allocated_for_dlsym, kDlsymAllocPoolSize);
54 uptr prev_offset = allocated_for_dlsym - last_dlsym_alloc_size_in_words;
58 allocated_for_dlsym = prev_offset;
70 uptr addr = (uptr)&alloc_memory_for_dlsym[allocated_for_dlsym];
79 allocated_for_dlsym = allocated;
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/msan/
H A Dmsan_interceptors.cc77 static uptr allocated_for_dlsym; variable
88 void *mem = (void *)&alloc_memory_for_dlsym[allocated_for_dlsym];
89 allocated_for_dlsym += size_in_words;
90 CHECK_LT(allocated_for_dlsym, kDlsymAllocPoolSize);

Completed in 80 milliseconds