/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_report.h | 25 uptr beg; member in struct:__asan::StackVarDescr 82 void ReportBadParamsToAnnotateContiguousContainer(uptr beg, uptr end,
|
asan_report.h | 25 uptr beg; member in struct:__asan::StackVarDescr 82 void ReportBadParamsToAnnotateContiguousContainer(uptr beg, uptr end,
|
asan_interface_internal.h | 50 uptr beg; // The address of the global. member in struct:__asan_global 125 uptr __asan_region_is_poisoned(uptr beg, uptr size);
|
asan_interface_internal.h | 50 uptr beg; // The address of the global. member in struct:__asan_global 125 uptr __asan_region_is_poisoned(uptr beg, uptr size);
|
asan_fake_stack.cc | 118 uptr beg = reinterpret_cast<uptr>(GetFrame(stack_size_log, 0, 0)); local in function:__asan::FakeStack::AddrIsInFakeStack 120 if (ptr < beg || ptr >= end) return 0; 121 uptr class_id = (ptr - beg) >> stack_size_log; 122 uptr base = beg + (class_id << stack_size_log); 249 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg, 259 if (beg) *beg = reinterpret_cast<void*>(frame_beg);
|
asan_fake_stack.cc | 118 uptr beg = reinterpret_cast<uptr>(GetFrame(stack_size_log, 0, 0)); local in function:__asan::FakeStack::AddrIsInFakeStack 120 if (ptr < beg || ptr >= end) return 0; 121 uptr class_id = (ptr - beg) >> stack_size_log; 122 uptr base = beg + (class_id << stack_size_log); 249 void *__asan_addr_is_in_fake_stack(void *fake_stack, void *addr, void **beg, 259 if (beg) *beg = reinterpret_cast<void*>(frame_beg);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_tls_get_addr.h | 38 // If beg == 0, the chunk is unused. 40 uptr beg, size; member in struct:__sanitizer::DTLS::DTV
|
sanitizer_tls_get_addr.h | 38 // If beg == 0, the chunk is unused. 40 uptr beg, size; member in struct:__sanitizer::DTLS::DTV
|
sanitizer_file.cc | 183 const char *beg = path; local in function:__sanitizer::FindPathToBinary 185 const char *end = internal_strchrnul(beg, kPathSeparator); 186 uptr prefix_len = end - beg; 188 internal_memcpy(buffer.data(), beg, prefix_len); 196 beg = end + 1;
|
sanitizer_file.cc | 183 const char *beg = path; local in function:__sanitizer::FindPathToBinary 185 const char *end = internal_strchrnul(beg, kPathSeparator); 186 uptr prefix_len = end - beg; 188 internal_memcpy(buffer.data(), beg, prefix_len); 196 beg = end + 1;
|
/src/lib/libc/compat/gen/ |
compat_timezone.c | 69 char *beg, local in function:timezone 72 if ((beg = getenv("TZNAME")) != NULL) { /* set in environment */ 73 if ((end = strchr(beg, ',')) != NULL) { /* "PST,PDT" */ 77 (void)strlcpy(czone, beg, sizeof(czone)); 81 return(beg);
|
compat_timezone.c | 69 char *beg, local in function:timezone 72 if ((beg = getenv("TZNAME")) != NULL) { /* set in environment */ 73 if ((end = strchr(beg, ',')) != NULL) { /* "PST,PDT" */ 77 (void)strlcpy(czone, beg, sizeof(czone)); 81 return(beg);
|
/src/bin/ksh/ |
expand.h | 11 char *end, *beg; /* end, begin of string */ member in struct:XString 22 (xs).beg = alloc((xs).len + X_EXTRA, (xs).areap); \ 23 (xs).end = (xs).beg + (xs).len; \ 24 xp = (xs).beg; \ 42 #define Xfree(xs, xp) afree((void*) (xs).beg, (xs).areap) 45 #define Xclose(xs, xp) (char*) aresize((void*)(xs).beg, \ 46 (size_t)((xp) - (xs).beg), (xs).areap) 48 #define Xstring(xs, xp) ((xs).beg) 51 #define Xlength(xs, xp) ((xp) - (xs).beg) 52 #define Xsize(xs, xp) ((xs).end - (xs).beg) 64 void **beg, **end; \/* begin, end of vector *\/ member in struct:XPtrV [all...] |
expand.h | 11 char *end, *beg; /* end, begin of string */ member in struct:XString 22 (xs).beg = alloc((xs).len + X_EXTRA, (xs).areap); \ 23 (xs).end = (xs).beg + (xs).len; \ 24 xp = (xs).beg; \ 42 #define Xfree(xs, xp) afree((void*) (xs).beg, (xs).areap) 45 #define Xclose(xs, xp) (char*) aresize((void*)(xs).beg, \ 46 (size_t)((xp) - (xs).beg), (xs).areap) 48 #define Xstring(xs, xp) ((xs).beg) 51 #define Xlength(xs, xp) ((xp) - (xs).beg) 52 #define Xsize(xs, xp) ((xs).end - (xs).beg) 64 void **beg, **end; \/* begin, end of vector *\/ member in struct:XPtrV [all...] |
/src/usr.bin/whatis/ |
whatis.c | 76 char *beg, *conffile, **p, *p_augment, *p_path; local in function:main 108 if ((beg = strrchr(*p, '/'))) 109 *p = beg + 1;
|
whatis.c | 76 char *beg, *conffile, **p, *p_augment, *p_path; local in function:main 108 if ((beg = strrchr(*p, '/'))) 109 *p = beg + 1;
|
/src/common/dist/zlib/ |
inffast.c | 57 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local in function:inflate_fast 84 beg = out - (start - strm->avail_out); 168 op = (unsigned)(out - beg); /* max distance in output */
|
inffast.c | 57 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local in function:inflate_fast 84 beg = out - (start - strm->avail_out); 168 op = (unsigned)(out - beg); /* max distance in output */
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_poisoning.cc | 48 uptr beg = d & ~3UL; local in function:__msan::CopyOrigin 50 if (beg < d) { 51 u32 o = GetOriginIfPoisoned((uptr)src, d - beg); 54 *(u32 *)MEM_TO_ORIGIN(beg) = o; 56 beg += 4; 61 if (end < beg) return; 72 if (beg < end) { 79 u32 *src_end = (u32 *)MEM_TO_ORIGIN(s + (end - beg)); 80 u32 *dst = (u32 *)MEM_TO_ORIGIN(beg); 92 REAL(memcpy)((void *)MEM_TO_ORIGIN(beg), (void *)MEM_TO_ORIGIN(s) 153 uptr beg = x & ~3UL; \/\/ align down. local in function:__msan::SetOrigin [all...] |
msan_poisoning.cc | 48 uptr beg = d & ~3UL; local in function:__msan::CopyOrigin 50 if (beg < d) { 51 u32 o = GetOriginIfPoisoned((uptr)src, d - beg); 54 *(u32 *)MEM_TO_ORIGIN(beg) = o; 56 beg += 4; 61 if (end < beg) return; 72 if (beg < end) { 79 u32 *src_end = (u32 *)MEM_TO_ORIGIN(s + (end - beg)); 80 u32 *dst = (u32 *)MEM_TO_ORIGIN(beg); 92 REAL(memcpy)((void *)MEM_TO_ORIGIN(beg), (void *)MEM_TO_ORIGIN(s) 153 uptr beg = x & ~3UL; \/\/ align down. local in function:__msan::SetOrigin [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
asan_interface_test.cc | 333 for (size_t beg = 0; beg < size + rz; beg++) { local in function:TEST 334 for (size_t end = beg; end < size + rz; end++) { 335 void *first_poisoned = __asan_region_is_poisoned(p + beg, end - beg); 336 if (beg == end) { 338 } else if (beg < size && end <= size) { 340 } else if (beg >= size) { 341 EXPECT_EQ(p + beg, first_poisoned) [all...] |
asan_interface_test.cc | 333 for (size_t beg = 0; beg < size + rz; beg++) { local in function:TEST 334 for (size_t end = beg; end < size + rz; end++) { 335 void *first_poisoned = __asan_region_is_poisoned(p + beg, end - beg); 336 if (beg == end) { 338 } else if (beg < size && end <= size) { 340 } else if (beg >= size) { 341 EXPECT_EQ(p + beg, first_poisoned) [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_libc_test.cc | 47 for (size_t beg = 0; beg < size; beg++) { local in function:TEST 48 for (size_t end = beg; end < size; end++) { 49 // fprintf(stderr, "pos %zd beg %zd end %zd \n", pos, beg, end); 50 if (beg <= pos && pos < end) 51 EXPECT_FALSE(__sanitizer::mem_is_zero(x + beg, end - beg)); 53 EXPECT_TRUE(__sanitizer::mem_is_zero(x + beg, end - beg)) [all...] |
/src/sbin/scan_ffs/ |
scan_ffs.c | 397 show_status(uintmax_t beg, uintmax_t total) 401 const uintmax_t done = blk - beg; 420 scan_disk(int fd, daddr_t beg, daddr_t end, int fflags) 436 const daddr_t total = end - beg; 437 for (blk = beg; blk <= end; blk += SBPASS) { 439 show_status(beg, total); 494 daddr_t end = -1, beg = 0; local in function:main 519 beg = atoi(optarg); 571 return scan_disk(fd, beg, end, flags);
|
/src/sys/kern/ |
subr_log.c | 464 long beg, end; local in function:sysctl_msgbuf 503 beg = msgbufp->msg_bufx; 508 len = MIN(end - beg, maxlen); 512 error = copyout(&msgbufp->msg_bufc[beg], where, len); 523 beg = 0;
|