Searched refs:gptr (Results 1 - 25 of 34) sorted by relevance

12

/netbsd-current/external/bsd/libbind/dist/irs/
H A Dgetgrent_r.c53 __posix_getgrnam_r(const char *name, struct group *gptr, argument
57 getgrnam_r(const char *name, struct group *gptr,
68 res = copy_group(ge, gptr, buf, buflen);
69 *result = res ? NULL : gptr;
75 getgrnam_r(const char *name, struct group *gptr, argument
82 res = copy_group(ge, gptr, buf, buflen);
83 return (res ? NULL : gptr);
90 __posix_getgrgid_r(gid_t gid, struct group *gptr, argument
94 getgrgid_r(gid_t gid, struct group *gptr,
105 res = copy_group(ge, gptr, bu
112 getgrgid_r(gid_t gid, struct group *gptr, char *buf, int buflen) argument
132 getgrent_r(struct group *gptr, GROUP_R_ARGS) argument
179 copy_group(struct group *ge, struct group *gptr, char *buf, int buflen) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
H A Distream-string.cc75 - __sb->gptr()),
80 __sb->gptr() + 1,
81 __sb->gptr() + __size)
82 - __sb->gptr());
83 __str.append(__sb->gptr(), __size);
152 - __sb->gptr()),
156 const __char_type* __p = __traits_type::find(__sb->gptr(),
160 __size = __p - __sb->gptr();
161 __str.append(__sb->gptr(), __size);
237 - __sb->gptr()),
[all...]
H A Dstreambuf.cc46 const streamsize __n = __sbin->egptr() - __sbin->gptr();
49 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
86 const streamsize __n = __sbin->egptr() - __sbin->gptr();
89 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
H A Distream.cc57 - __sb->gptr()),
62 const char_type* __p = traits_type::find(__sb->gptr(),
66 __size = __p - __sb->gptr();
67 traits_type::copy(__s, __sb->gptr(), __size);
140 - __sb->gptr()),
144 const char_type* __p = traits_type::find(__sb->gptr(),
148 __size = __p - __sb->gptr();
232 - __sb->gptr()),
238 __sb->gptr() + 1,
239 __sb->gptr()
[all...]
H A Dstrstream.cc157 if (gptr() != 0)
160 old_get_offset = gptr() - eback();
187 if (gptr() != eback())
194 else if (c == _Traits::to_int_type(gptr()[-1]))
202 *gptr() = c;
212 if (gptr() == egptr() && pptr() && pptr() > egptr())
213 setg(eback(), gptr(), pptr());
215 if (gptr() != egptr())
216 return (unsigned char) *gptr();
241 // !gptr() i
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
H A Distream-string.cc75 - __sb->gptr()),
80 __sb->gptr() + 1,
81 __sb->gptr() + __size)
82 - __sb->gptr());
83 __str.append(__sb->gptr(), __size);
152 - __sb->gptr()),
156 const __char_type* __p = __traits_type::find(__sb->gptr(),
160 __size = __p - __sb->gptr();
161 __str.append(__sb->gptr(), __size);
237 - __sb->gptr()),
[all...]
H A Dstreambuf.cc46 const streamsize __n = __sbin->egptr() - __sbin->gptr();
49 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
86 const streamsize __n = __sbin->egptr() - __sbin->gptr();
89 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
H A Distream.cc57 - __sb->gptr()),
62 const char_type* __p = traits_type::find(__sb->gptr(),
66 __size = __p - __sb->gptr();
67 traits_type::copy(__s, __sb->gptr(), __size);
140 - __sb->gptr()),
144 const char_type* __p = traits_type::find(__sb->gptr(),
148 __size = __p - __sb->gptr();
243 - __sb->gptr()),
249 __sb->gptr() + 1,
250 __sb->gptr()
[all...]
H A Dstrstream.cc157 if (gptr() != 0)
160 old_get_offset = gptr() - eback();
187 if (gptr() != eback())
194 else if (c == _Traits::to_int_type(gptr()[-1]))
202 *gptr() = c;
212 if (gptr() == egptr() && pptr() && pptr() > egptr())
213 setg(eback(), gptr(), pptr());
215 if (gptr() != egptr())
216 return (unsigned char) *gptr();
241 // !gptr() i
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/src/
H A Dstrstream.cpp176 ptrdiff_t ninp = gptr() - eback();
199 if (eback() == gptr())
208 if (gptr()[-1] == static_cast<char>(__c))
216 *gptr() = static_cast<char>(__c);
223 if (gptr() == egptr())
227 setg(eback(), gptr(), pptr());
229 return int_type(static_cast<unsigned char>(*gptr()));
251 if (pos_in && gptr() == nullptr)
265 newoff = (pos_in ? gptr() : pptr()) - eback();
300 if (!((pos_in && gptr()
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h357 #define NEW_THREAD_INFO_W(gptr,h,h_tail,t,s,n) { \
368 (gptr)->thread_list = h; \
374 #define NEW_THREAD_INFO_A(gptr,h,h_tail,t,s,n) { \
385 (gptr)->thread_list = h; \
391 #define NEW_DOMAIN_W(gptr,h,h_tail,name) { \
401 (gptr)->domain_list = h; \
407 #define NEW_DOMAIN_A(gptr,h,h_tail,name) { \
417 (gptr)->domain_list = h; \
423 #define NEW_STRING_HANDLE_W(gptr,h,h_tail,name) { \
432 (gptr)
[all...]
/netbsd-current/external/bsd/kyua-cli/dist/utils/process/
H A Dsystembuf.cpp97 PRE(gptr() >= egptr());
109 return traits_type::to_int_type(*gptr());
/netbsd-current/common/dist/zlib/contrib/iostream3/
H A Dzfstream.cc175 if (this->gptr() && (this->gptr() < this->egptr()))
176 return std::streamsize(this->egptr() - this->gptr());
187 // to be called when gptr >= egptr, but it serves as error check)
188 if (this->gptr() && (this->gptr() < this->egptr()))
189 return traits_type::to_int_type(*(this->gptr()));
209 return traits_type::to_int_type(*(this->gptr()));
275 // This follows from [27.5.2.4.3]/12 (gptr needs to point at something, it seems)
/netbsd-current/external/gpl3/gdb.old/dist/zlib/contrib/iostream3/
H A Dzfstream.cc175 if (this->gptr() && (this->gptr() < this->egptr()))
176 return std::streamsize(this->egptr() - this->gptr());
187 // to be called when gptr >= egptr, but it serves as error check)
188 if (this->gptr() && (this->gptr() < this->egptr()))
189 return traits_type::to_int_type(*(this->gptr()));
209 return traits_type::to_int_type(*(this->gptr()));
275 // This follows from [27.5.2.4.3]/12 (gptr needs to point at something, it seems)
/netbsd-current/external/gpl3/binutils/dist/zlib/contrib/iostream3/
H A Dzfstream.cc175 if (this->gptr() && (this->gptr() < this->egptr()))
176 return std::streamsize(this->egptr() - this->gptr());
187 // to be called when gptr >= egptr, but it serves as error check)
188 if (this->gptr() && (this->gptr() < this->egptr()))
189 return traits_type::to_int_type(*(this->gptr()));
209 return traits_type::to_int_type(*(this->gptr()));
275 // This follows from [27.5.2.4.3]/12 (gptr needs to point at something, it seems)
/netbsd-current/external/gpl3/gdb/dist/zlib/contrib/iostream3/
H A Dzfstream.cc175 if (this->gptr() && (this->gptr() < this->egptr()))
176 return std::streamsize(this->egptr() - this->gptr());
187 // to be called when gptr >= egptr, but it serves as error check)
188 if (this->gptr() && (this->gptr() < this->egptr()))
189 return traits_type::to_int_type(*(this->gptr()));
209 return traits_type::to_int_type(*(this->gptr()));
275 // This follows from [27.5.2.4.3]/12 (gptr needs to point at something, it seems)
/netbsd-current/external/gpl3/binutils.old/dist/zlib/contrib/iostream3/
H A Dzfstream.cc175 if (this->gptr() && (this->gptr() < this->egptr()))
176 return std::streamsize(this->egptr() - this->gptr());
187 // to be called when gptr >= egptr, but it serves as error check)
188 if (this->gptr() && (this->gptr() < this->egptr()))
189 return traits_type::to_int_type(*(this->gptr()));
209 return traits_type::to_int_type(*(this->gptr()));
275 // This follows from [27.5.2.4.3]/12 (gptr needs to point at something, it seems)
/netbsd-current/usr.sbin/lpr/lpc/
H A Dlpc.c321 static struct group *gptr = NULL; local
327 if (gptr == NULL) {
328 if ((gptr = getgrnam(grname)) == NULL) {
337 gid = gptr->gr_gid;
/netbsd-current/usr.sbin/lpr/lpr/
H A Dlpr.c123 struct group *gptr; local
280 if ((gptr = getgrnam(RG)) == NULL)
283 if (gptr->gr_gid != getgid()) {
284 while (*gptr->gr_mem != NULL) {
285 if ((strcmp(person, *gptr->gr_mem)) == 0)
287 gptr->gr_mem++;
289 if (*gptr->gr_mem == NULL)
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstreambuf_iterator.h381 const streamsize __n = __sb->egptr() - __sb->gptr();
384 traits_type::copy(__result, __sb->gptr(), __n);
439 streamsize __n = __sb->egptr() - __sb->gptr();
442 const _CharT* __p = traits_type::find(__sb->gptr(),
445 __n = __p - __sb->gptr();
481 streamsize __size = __sb->egptr() - __sb->gptr();
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstreambuf_iterator.h393 const streamsize __n = __sb->egptr() - __sb->gptr();
396 traits_type::copy(__result, __sb->gptr(), __n);
451 streamsize __n = __sb->egptr() - __sb->gptr();
454 const _CharT* __p = traits_type::find(__sb->gptr(),
457 __n = __p - __sb->gptr();
493 streamsize __size = __sb->egptr() - __sb->gptr();
/netbsd-current/common/dist/zlib/contrib/iostream/
H A Dzfstream.cpp151 return (unsigned char) *gptr();
169 return (unsigned char) *gptr();
/netbsd-current/external/bsd/atf/dist/tools/
H A Dio.cpp183 assert(gptr() >= egptr());
193 return traits_type::to_int_type(*gptr());
/netbsd-current/external/gpl3/gdb.old/dist/zlib/contrib/iostream/
H A Dzfstream.cpp151 return (unsigned char) *gptr();
169 return (unsigned char) *gptr();
/netbsd-current/external/gpl3/binutils/dist/zlib/contrib/iostream/
H A Dzfstream.cpp151 return (unsigned char) *gptr();
169 return (unsigned char) *gptr();

Completed in 183 milliseconds

12