HomeSort by: relevance | last modified time | path
    Searched refs:sptr (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_type_traits_test.cc 22 ASSERT_TRUE((is_same<sptr, sptr>::value));
26 ASSERT_FALSE((is_same<uptr, sptr>::value));
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_type_hash.h 26 sptr Offset;
30 DynamicTypeInfo(const char *MDTN, sptr Offset, const char *STN)
38 sptr getOffset() const { return Offset; }
ubsan_type_hash_itanium.cc 119 sptr Offset) {
139 sptr OffsetHere = VTI->base_info[base].__offset_flags >>
158 const abi::__class_type_info *Derived, sptr Offset) {
173 sptr OffsetHere = VTI->base_info[base].__offset_flags >>
194 sptr Offset;
  /src/usr.sbin/netgroup_mkdb/
str.c 82 char *ptr, *sptr; local in function:str_prepend
85 sptr = ptr = emalloc(buf->s_len + len + (del ? 2 : 1));
97 buf->s_str = sptr;
  /src/libexec/telnetd/
slc.c 96 if (slctab[i].sptr) {
97 *(slctab[i].sptr) = slctab[i].defset.val;
119 spcset(i, &slctab[i].defset.val, &slctab[i].sptr);
331 if (slctab[func].sptr) {
336 *(slctab[func].sptr) = val;
409 else if (slctab[i].sptr)
410 oldeofc = *(slctab[i].sptr);
413 if (slctab[i].sptr &&
414 (*(slctab[i].sptr) != slctab[i].current.val)) {
415 slctab[i].current.val = *(slctab[i].sptr);
    [all...]
defs.h 104 cc_t *sptr; /* a pointer to the char in */ member in struct:__anona1ed91cf0208
telnetd.c 1137 if (slctab[SLC_AYT].sptr && *slctab[SLC_AYT].sptr != _POSIX_VDISABLE) {
1156 *pfrontp++ = slctab[SLC_EOF].sptr ?
1157 (unsigned char)*slctab[SLC_EOF].sptr : '\004';
state.c 184 if (slctab[SLC_AO].sptr &&
185 *slctab[SLC_AO].sptr != (cc_t)(_POSIX_VDISABLE)) {
187 (unsigned char)*slctab[SLC_AO].sptr;
212 ch = *slctab[SLC_EC].sptr;
214 ch = *slctab[SLC_EL].sptr;
  /src/games/phantasia/
gamesupport.c 35 short *sptr; /* pointer to short item to change */ local in function:changestats
331 sptr = &playerp->p_type;
336 sptr = &playerp->p_specialtype;
341 sptr = &playerp->p_lives;
346 sptr = &playerp->p_crowns;
351 sptr = &playerp->p_charms;
356 sptr = &playerp->p_amulets;
361 sptr = &playerp->p_holywater;
366 sptr = &playerp->p_lastused;
391 sptr = &playerp->p_ring.ring_type
    [all...]
  /src/usr.bin/fsplit/
fsplit.c 396 char *sptr; local in function:scan_name
401 sptr = s;
410 *sptr++ = *ptr;
416 if (sptr == s) {
420 *sptr++ = '.';
421 *sptr++ = 'f';
422 *sptr++ = '\0';
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_unwind_linux_libcdep.cc 42 typedef sptr (*unwind_backtrace_signal_arch_func)(
154 sptr res = unwind_backtrace_signal_arch(/* siginfo */ 0, context, map,
164 for (sptr i = 0; i < res; ++i)
sanitizer_ring_buffer.h 58 sptr IdxNext = Idx + 1;
146 sptr StorageIdx = Next() - Begin;
147 StorageIdx -= (sptr)(Idx + 1);
sanitizer_netbsd.cc 130 sptr res;
132 HANDLE_EINTR(res, (sptr)_sys_read(fd, buf, (size_t)count));
137 sptr res;
139 HANDLE_EINTR(res, (sptr)_sys_write(fd, buf, count));
144 sptr res;
sanitizer_interface_internal.h 35 __sanitizer::sptr coverage_fd;
sanitizer_allocator_stats.h 100 s[i] = ((sptr)s[i]) >= 0 ? s[i] : 0;
sanitizer_allocator.cc 204 if (allocated_end_ - allocated_current_ < (sptr)size) {
214 CHECK(allocated_end_ - allocated_current_ >= (sptr)size);
sanitizer_deadlock_detector.h 79 for (sptr i = n_recursive_locks - 1; i >= 0; i--) {
91 for (sptr i = n_all_locks_ - 1; i >= 0; i--) {
162 for (sptr i = n_edges_ - 1; i >= 0; i--) {
sanitizer_internal_defs.h 138 typedef signed long long sptr; // NOLINT typedef in namespace:__sanitizer
141 typedef signed long sptr; // NOLINT
sanitizer_libc.cc 61 sptr i, signed_n = (sptr)n;
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_interface_internal.h 41 using __sanitizer::sptr;
93 sptr __msan_test_shadow(const void *x, uptr size);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.h 70 bool AddrIsInside(uptr addr, uptr access_size, sptr *offset) const {
77 bool AddrIsAtLeft(uptr addr, uptr access_size, sptr *offset) const {
85 bool AddrIsAtRight(uptr addr, uptr access_size, sptr *offset) const {
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/
asan_noinst_test.cc 116 for (sptr i = -32; i < (sptr)size + 32; i++) {
118 if (i == 0 || i == (sptr)size)
  /src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception.h 29 typedef __sanitizer::sptr SSIZE_T;
30 typedef __sanitizer::sptr PTRDIFF_T;
  /src/sys/netinet/
accf_http.c 208 #define STRSETUP(sptr, slen, str) \
210 sptr = str; \
  /src/sys/arch/sparc/dev/
cgfourteen.c 1429 uint32_t saddr, daddr, sptr, dptr; local in function:cg14_bitblt
1448 sptr = saddr;
1452 sxm(SX_LDB, sptr, 32, pre - 1);
1455 sptr += pre;
1461 cg14_slurp(8, sptr, num);
1463 sptr += num << 2;
1468 sxm(SX_LDB, sptr, 32, cnt - 1);
1478 sptr = saddr;
1482 sxm(SX_LDB, sptr, 32, 31);
1484 sptr += 32
    [all...]

Completed in 48 milliseconds

1 2