| /freebsd-10-stable/lib/libc/gen/ |
| D | strtofflags.c | 131 strtofflags(stringp, setp, clrp) in strtofflags() argument 133 u_long *setp, *clrp; 138 if (setp) 139 *setp = 0; 153 if (setp) 154 *setp |= mapping[i].flag; 159 if (setp) 160 *setp |= mapping[i].flag;
|
| /freebsd-10-stable/contrib/gdb/gdb/ |
| D | gdb_thread_db.h | 131 #define td_event_emptyset(setp) \ argument 135 (setp)->event_bits[__i - 1] = 0; \ 138 #define td_event_fillset(setp) \ argument 142 (setp)->event_bits[__i - 1] = GDB_UINT32_C (0xffffffff); \ 145 #define td_event_addset(setp, n) \ argument 146 (((setp)->event_bits[__td_eventword (n)]) |= __td_eventmask (n)) 147 #define td_event_delset(setp, n) \ argument 148 (((setp)->event_bits[__td_eventword (n)]) &= ~__td_eventmask (n)) 149 #define td_eventismember(setp, n) \ argument 150 (__td_eventmask (n) & ((setp)->event_bits[__td_eventword (n)])) [all …]
|
| /freebsd-10-stable/sys/kgssapi/ |
| D | gssd_prot.c | 141 xdr_gss_OID_set(XDR *xdrs, gss_OID_set *setp) in xdr_gss_OID_set() argument 148 set = *setp; in xdr_gss_OID_set() 165 *setp = GSS_C_NO_OID_SET; in xdr_gss_OID_set() 173 *setp = set; in xdr_gss_OID_set() 178 set = *setp; in xdr_gss_OID_set()
|
| /freebsd-10-stable/contrib/libstdc++/src/ |
| D | strstream.cc | 67 setp(buf, buf + n); in _GLIBCXX_BEGIN_NAMESPACE() 81 setp(buf, buf + n); in strstreambuf() 166 setp(buf, buf + new_size); in overflow() 276 setp(seeklow, epptr()); in seekoff() 281 setp(pbase(), epptr()); in seekoff() 332 setp(put, put + N); in _M_setup()
|
| /freebsd-10-stable/lib/libnetbsd/ |
| D | util.c | 55 string_to_flags(char **stringp, u_long *setp, u_long *clrp) in string_to_flags() argument 58 return strtofflags(stringp, setp, clrp); in string_to_flags()
|
| D | util.h | 40 int string_to_flags(char **stringp, u_long *setp, u_long *clrp);
|
| /freebsd-10-stable/sys/kern/ |
| D | kern_cpuset.c | 281 cpuset_create(struct cpuset **setp, struct cpuset *parent, const cpuset_t *mask) in cpuset_create() argument 290 *setp = set = uma_zalloc(cpuset_zone, M_WAITOK); in cpuset_create() 400 struct cpuset **setp) in cpuset_which() argument 409 *setp = set = NULL; in cpuset_which() 440 *setp = set; in cpuset_which() 455 *setp = pr->pr_cpuset; in cpuset_which() 774 cpuset_create_root(struct prison *pr, struct cpuset **setp) in cpuset_create_root() argument 780 KASSERT(setp != NULL, ("[%s:%d] invalid setp", __func__, __LINE__)); in cpuset_create_root() 782 error = cpuset_create(setp, pr->pr_cpuset, &pr->pr_cpuset->cs_mask); in cpuset_create_root() 786 KASSERT(*setp != NULL, ("[%s:%d] cpuset_create returned invalid data", in cpuset_create_root() [all …]
|
| /freebsd-10-stable/contrib/libc++/src/ |
| D | strstream.cpp | 45 setp(__pbeg, __pbeg + __n); in __init() 183 setp(buf + einp, buf + einp + eout); in overflow() 277 setp(min(pbase(), newpos), epptr()); in seekoff() 307 setp(min(pbase(), newpos), epptr()); in seekpos()
|
| /freebsd-10-stable/contrib/libc++/include/ |
| D | sstream | 289 this->setp(__p + __bout, __p + __eout); 295 __rhs.setp(__p, __p); 332 this->setp(__p + __bout, __p + __eout); 336 this->setp(nullptr, nullptr); 342 __rhs.setp(__p, __p); 403 this->setp(__p + __rbout, __p + __reout); 407 this->setp(nullptr, nullptr); 416 __rhs.setp(__p + __lbout, __p + __leout); 420 __rhs.setp(nullptr, nullptr); 469 this->setp(const_cast<char_type*>(__str_.data()), [all …]
|
| D | fstream | 307 this->setp(__intbuf_, __intbuf_ + (__rhs. epptr() - __rhs.pbase())); 309 this->setp((char_type*)__extbuf_, 337 __rhs.setp(0, 0); 428 this->setp((char_type*)__extbuf_min_, 444 __rhs.setp((char_type*)__rhs.__extbuf_min_, 676 this->setp(&__1buf, &__1buf+1); 716 this->setp((char_type*)__e, this->pptr()); 724 this->setp(__pb_save, __epb_save); 734 this->setp(0, 0); 921 this->setp(0, 0); [all …]
|
| /freebsd-10-stable/crypto/openssh/ |
| D | packet.c | 1438 fd_set *setp; in ssh_packet_read_seqnr() local 1444 setp = calloc(howmany(state->connection_in + 1, in ssh_packet_read_seqnr() 1446 if (setp == NULL) in ssh_packet_read_seqnr() 1476 memset(setp, 0, howmany(state->connection_in + 1, in ssh_packet_read_seqnr() 1478 FD_SET(state->connection_in, setp); in ssh_packet_read_seqnr() 1490 if ((r = select(state->connection_in + 1, setp, in ssh_packet_read_seqnr() 1522 free(setp); in ssh_packet_read_seqnr() 2209 fd_set *setp; in ssh_packet_write_wait() local 2214 setp = calloc(howmany(state->connection_out + 1, in ssh_packet_write_wait() 2216 if (setp == NULL) in ssh_packet_write_wait() [all …]
|
| /freebsd-10-stable/contrib/tcsh/nls/russian/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/ukrainian/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/ja/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/greek/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/C/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/et/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/italian/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/german/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/spanish/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/french/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/tcsh/nls/finnish/ |
| D | set10 | 2 $ ma.setp.c
|
| /freebsd-10-stable/contrib/libarchive/libarchive/ |
| D | archive_entry.c | 121 unsigned long *setp, unsigned long *clrp); 123 unsigned long *setp, unsigned long *clrp); 1992 ae_strtofflags(const char *s, unsigned long *setp, unsigned long *clrp) in ae_strtofflags() argument 2040 if (setp) in ae_strtofflags() 2041 *setp = set; in ae_strtofflags() 2060 ae_wcstofflags(const wchar_t *s, unsigned long *setp, unsigned long *clrp) in ae_wcstofflags() argument 2108 if (setp) in ae_wcstofflags() 2109 *setp = set; in ae_wcstofflags()
|
| /freebsd-10-stable/lib/libthread_db/ |
| D | libthr_db.c | 638 pt_thr_set_event(const td_thrhandle_t *th, td_thr_events_t *setp) in pt_thr_set_event() argument 647 mask |= *setp; in pt_thr_set_event() 654 pt_thr_clear_event(const td_thrhandle_t *th, td_thr_events_t *setp) in pt_thr_clear_event() argument 663 mask &= ~*setp; in pt_thr_clear_event()
|
| /freebsd-10-stable/contrib/libstdc++/include/std/ |
| D | std_fstream.h | 408 this->setp(_M_buf, _M_buf + _M_buf_size - 1); in _GLIBCXX_BEGIN_NAMESPACE() 410 this->setp(NULL, NULL); in _GLIBCXX_BEGIN_NAMESPACE()
|