| /openbsd-src/gnu/gcc/libgomp/ |
| H A D | critical.c | 53 GOMP_critical_name_start (void **pptr) in GOMP_critical_name_start() argument 62 plock = (gomp_mutex_t *)pptr; in GOMP_critical_name_start() 67 plock = *pptr; in GOMP_critical_name_start() 75 plock = __sync_val_compare_and_swap (pptr, NULL, nlock); in GOMP_critical_name_start() 85 plock = *pptr; in GOMP_critical_name_start() 91 *pptr = plock; in GOMP_critical_name_start() 102 GOMP_critical_name_end (void **pptr) in GOMP_critical_name_end() argument 111 plock = (gomp_mutex_t *)pptr; in GOMP_critical_name_end() 113 plock = *pptr; in GOMP_critical_name_end()
|
| /openbsd-src/lib/libc/gen/ |
| H A D | pwcache.c | 207 UIDC **pptr, *ptr = NULL; in user_from_uid() local 213 pptr = uidtb + (uid % UID_SZ); in user_from_uid() 214 ptr = *pptr; in user_from_uid() 226 *pptr = ptr = malloc(sizeof(UIDC)); in user_from_uid() 268 GIDC **pptr, *ptr = NULL; in group_from_gid() local 274 pptr = gidtb + (gid % GID_SZ); in group_from_gid() 275 ptr = *pptr; in group_from_gid() 287 *pptr = ptr = malloc(sizeof(GIDC)); in group_from_gid() 327 UIDC **pptr, *ptr = NULL; in uid_from_user() local 341 pptr = usrtb + st_hash(name, namelen, UNM_SZ); in uid_from_user() [all …]
|
| /openbsd-src/usr.bin/mg/ |
| H A D | search.c | 173 int pptr; in isearch() local 190 pptr = -1; in isearch() 223 is_undo(&pptr, &dir); in isearch() 225 is_prompt(dir, pptr < 0, success); in isearch() 256 pptr = strlen(pat); in isearch() 271 is_prompt(dir, pptr < 0, success); in isearch() 293 pptr = strlen(pat); in isearch() 306 is_prompt(dir, pptr < 0, success); in isearch() 313 if (pptr == -1) in isearch() 314 pptr = 0; in isearch() [all …]
|
| /openbsd-src/gnu/gcc/libstdc++-v3/src/ |
| H A D | strstream.cc | 139 { return pptr() ? pptr() - pbase() : 0; } in pcount() 148 if (pptr() == epptr() && _M_dynamic && !_M_frozen && !_M_constant) in overflow() 177 if (pptr() != epptr()) in overflow() 179 *pptr() = c; in overflow() 215 if (gptr() == egptr() && pptr() && pptr() > egptr()) in underflow() 216 setg(eback(), gptr(), pptr()); in underflow() 246 if ((!do_get && !do_put) || (do_put && !pptr()) || !gptr()) in seekoff() 262 newoff = do_put ? pptr() - seeklow : gptr() - seeklow; in seekoff() 289 else if (off <= pptr() - seeklow) in seekoff() 290 setg(seeklow, seeklow + off, pptr()); in seekoff()
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/src/ |
| H A D | strstream.cc | 139 { return pptr() ? pptr() - pbase() : 0; } in pcount() 148 if (pptr() == epptr() && _M_dynamic && !_M_frozen && !_M_constant) in overflow() 177 if (pptr() != epptr()) in overflow() 179 *pptr() = c; in overflow() 215 if (gptr() == egptr() && pptr() && pptr() > egptr()) in underflow() 216 setg(eback(), gptr(), pptr()); in underflow() 246 if ((!do_get && !do_put) || (do_put && !pptr()) || !gptr()) in seekoff() 262 newoff = do_put ? pptr() - seeklow : gptr() - seeklow; in seekoff() 289 else if (off <= pptr() - seeklow) in seekoff() 290 setg(seeklow, seeklow + off, pptr()); in seekoff()
|
| /openbsd-src/gnu/llvm/libcxx/src/ |
| H A D | strstream.cpp | 152 return static_cast<int>(pptr() - pbase()); in pcount() 160 if (pptr() == epptr()) in overflow() 181 ptrdiff_t nout = pptr() - pbase(); in overflow() 194 *pptr() = static_cast<char>(__c); in overflow() 228 if (egptr() >= pptr()) in underflow() 230 setg(eback(), gptr(), pptr()); in underflow() 256 if (pos_out && pptr() == nullptr) in seekoff() 268 newoff = (pos_in ? gptr() : pptr()) - eback(); in seekoff() 303 if (!((pos_in && gptr() == nullptr) || (pos_out && pptr() == nullptr))) in seekpos()
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/std/ |
| H A D | std_sstream.h | 131 if (this->pptr()) in _GLIBCXX_BEGIN_NAMESPACE() 134 if (this->pptr() > this->egptr()) in _GLIBCXX_BEGIN_NAMESPACE() 135 __ret = __string_type(this->pbase(), this->pptr()); in _GLIBCXX_BEGIN_NAMESPACE() 242 if (this->pptr() && this->pptr() > this->egptr()) in _GLIBCXX_BEGIN_NAMESPACE() 244 this->setg(this->eback(), this->gptr(), this->pptr()); in _GLIBCXX_BEGIN_NAMESPACE() 246 this->setg(this->pptr(), this->pptr(), this->pptr()); in _GLIBCXX_BEGIN_NAMESPACE()
|
| H A D | std_streambuf.h | 423 if (__builtin_expect(this->pptr() < this->epptr(), true)) in sputc() 425 *this->pptr() = __c; in sputc() 528 pptr() const { return _M_out_cur; } in pptr() function
|
| /openbsd-src/lib/libssl/ |
| H A D | d1_srtp.c | 152 const SRTP_PROTECTION_PROFILE **pptr, unsigned int len) in srtp_find_profile_by_name() argument 160 *pptr = p; in srtp_find_profile_by_name() 172 const SRTP_PROTECTION_PROFILE **pptr) in srtp_find_profile_by_num() argument 179 *pptr = p; in srtp_find_profile_by_num()
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/bits/ |
| H A D | sstream.tcc | 98 const bool __testput = this->pptr() < this->epptr(); in overflow() 126 this->gptr() - this->eback(), this->pptr() - this->pbase()); in overflow() 129 *this->pptr() = __conv; in overflow() 176 __newoffo += this->pptr() - __beg; in seekoff() 192 this->pbump((__beg + __newoffo) - this->pptr()); in seekoff() 221 this->pbump((__beg + __pos) - this->pptr()); in seekpos()
|
| H A D | fstream.tcc | 399 if (this->pbase() < this->pptr()) in overflow() 404 *this->pptr() = traits_type::to_char_type(__c); in overflow() 411 this->pptr() - this->pbase())) in overflow() 426 *this->pptr() = traits_type::to_char_type(__c); in overflow() 490 streamsize __rlen = this->pptr() - __iend; in _M_convert_to_external() 606 streamsize __bufavail = this->epptr() - this->pptr(); in xsputn() 615 const streamsize __buffill = this->pptr() - this->pbase(); in xsputn() 763 if (this->pbase() < this->pptr()) in _M_terminate_output() 825 if (this->pbase() < this->pptr()) in sync()
|
| H A D | streambuf.tcc | 89 const streamsize __buf_len = this->epptr() - this->pptr(); in xsputn() 94 traits_type::copy(this->pptr(), __s, __len); in xsputn()
|
| /openbsd-src/lib/libcrypto/bio/ |
| H A D | bss_mem.c | 264 void **pptr; in mem_ctrl() local 285 pptr = (void **)ptr; in mem_ctrl() 286 *pptr = bio_mem_read_ptr(bm); in mem_ctrl() 298 pptr = (void **)ptr; in mem_ctrl() 299 *pptr = bm->buf; in mem_ctrl()
|
| H A D | bss_conn.c | 430 const char **pptr; in conn_ctrl() local 452 pptr = (const char **)ptr; in conn_ctrl() 454 *pptr = data->param_hostname; in conn_ctrl() 457 *pptr = data->param_port; in conn_ctrl() 459 *pptr = (char *)&(data->ip[0]); in conn_ctrl() 464 *pptr = "not initialized"; in conn_ctrl()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
| H A D | 990208-1.c | 9 static __inline__ void doit(void **pptr, int cond) in doit() argument 13 *pptr = &&here; in doit()
|
| /openbsd-src/sys/sys/ |
| H A D | smr.h | 72 #define SMR_PTR_GET(pptr) READ_ONCE(*pptr) argument 74 #define SMR_PTR_GET_LOCKED(pptr) (*(pptr)) argument 76 #define SMR_PTR_SET_LOCKED(pptr, val) do { \ argument 78 WRITE_ONCE(*pptr, val); \
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | sstream | 290 __nout = __rhs.pptr() - __p; 331 __nout = __rhs.pptr() - __p; 379 __rnout = __rhs.pptr() - __p; 399 __lnout = this->pptr() - __p; 451 if (__hm_ < this->pptr()) 452 __hm_ = this->pptr(); 497 if (__hm_ < this->pptr()) 498 __hm_ = this->pptr(); 513 if (__hm_ < this->pptr()) 514 __hm_ = this->pptr(); [all …]
|
| H A D | fstream | 359 this->__pbump(__rhs. pptr() - __rhs.pbase()); 485 ptrdiff_t __n = this->pptr() - this->pbase(); 501 ptrdiff_t __n = __rhs.pptr() - __rhs.pbase(); 833 if (this->pptr() == nullptr) 835 *this->pptr() = traits_type::to_char_type(__c); 838 if (this->pptr() != this->pbase()) 842 size_t __nmemb = static_cast<size_t>(this->pptr() - this->pbase()); 856 __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e, 862 size_t __nmemb = static_cast<size_t>(this->pptr() - this->pbase()); 873 this->setp(const_cast<char_type*>(__e), this->pptr()); [all …]
|
| H A D | __std_stream | 279 char_type* pptr = pbase + 1; 283 __r = __cv_->out(*__st_, pbase, pptr, __e,
|
| /openbsd-src/usr.sbin/tcpdump/ |
| H A D | print-slow.c | 119 slow_print(const u_char *pptr, u_int len) in slow_print() argument 134 tptr = pptr; in slow_print() 135 slow_com_header = (const struct slow_common_header *)pptr; in slow_print()
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/27_io/ |
| H A D | streambuf_members.cc | 57 VERIFY( this->pptr() == NULL ); in check_pointers() 273 result.append(pbase(), pptr()); in sync() 449 if (pptr() < epptr()) in overflow() 454 *pptr() = traits_type::to_char_type(c); in overflow()
|
| /openbsd-src/libexec/ftpd/ |
| H A D | ftpcmd.y | 898 char *pptr = $1; variable 907 if ((pptr[0] == '/') && (pptr[1] == '~')) 908 pptr++; 911 if (glob(pptr, flags, NULL, &gl) ||
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/mn10200/ |
| H A D | mn10200.c | 1474 tree t, ptr, pptr; local 1489 pptr = build_pointer_type (ptr); 1490 t = build1 (NOP_EXPR, pptr, t);
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/mn10300/ |
| H A D | mn10300.c | 898 tree t, ptr, pptr; local 913 pptr = build_pointer_type (ptr); 914 t = build1 (NOP_EXPR, pptr, t);
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| H A D | sstream.tcc | 145 __curo = this->pptr(); in seekoff()
|