Home
last modified time | relevance | path

Searched refs:gptr (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/thirdparty/ittnotify/
H A Dittnotify_config.h488 #define NEW_THREAD_INFO_W(gptr, h, h_tail, t, s, n) \ argument
500 (gptr)->thread_list = h; \
506 #define NEW_THREAD_INFO_A(gptr, h, h_tail, t, s, n) \ argument
518 (gptr)->thread_list = h; \
524 #define NEW_DOMAIN_W(gptr, h, h_tail, name) \ argument
535 (gptr)->domain_list = h; \
541 #define NEW_DOMAIN_A(gptr, h, h_tail, name) \ argument
552 (gptr)->domain_list = h; \
558 #define NEW_STRING_HANDLE_W(gptr, h, h_tail, name) \ argument
568 (gptr)->string_list = h; \
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp126 ptrdiff_t ninp = gptr() - eback(); in overflow()
146 if (eback() == gptr()) in pbackfail()
153 if (gptr()[-1] == static_cast<char>(__c)) { in pbackfail()
160 *gptr() = static_cast<char>(__c); in pbackfail()
165 if (gptr() == egptr()) { in underflow()
168 setg(eback(), gptr(), pptr()); in underflow()
170 return int_type(static_cast<unsigned char>(*gptr())); in underflow()
188 if (pos_in && gptr() == nullptr) in seekoff()
200 newoff = (pos_in ? gptr() : pptr()) - eback(); in seekoff()
230 if ((pos_in && gptr() == nullptr) || (pos_out && pptr() == nullptr)) in seekpos()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h357 #define NEW_THREAD_INFO_W(gptr,h,h_tail,t,s,n) { \ argument
368 (gptr)->thread_list = h; \
374 #define NEW_THREAD_INFO_A(gptr,h,h_tail,t,s,n) { \ argument
385 (gptr)->thread_list = h; \
391 #define NEW_DOMAIN_W(gptr,h,h_tail,name) { \ argument
401 (gptr)->domain_list = h; \
407 #define NEW_DOMAIN_A(gptr,h,h_tail,name) { \ argument
417 (gptr)->domain_list = h; \
423 #define NEW_STRING_HANDLE_W(gptr,h,h_tail,name) { \ argument
432 (gptr)->string_list = h; \
[all …]
/freebsd-14.2/usr.sbin/lpr/lpr/
H A Dlpr.c134 struct group *gptr; in main() local
305 if ((gptr = getgrnam(pp->restrict_grp)) == NULL) in main()
307 if (gptr->gr_gid != getgid()) { in main()
308 while (*gptr->gr_mem != NULL) { in main()
309 if ((strcmp(lpr_username, *gptr->gr_mem)) == 0) in main()
311 gptr->gr_mem++; in main()
313 if (*gptr->gr_mem == NULL) in main()
/freebsd-14.2/usr.sbin/lpr/lpc/
H A Dlpc.c353 static struct group *gptr=NULL; in ingroup() local
360 if (gptr == NULL) { in ingroup()
361 if ((gptr = getgrnam(grname)) == NULL) { in ingroup()
372 gid = gptr->gr_gid; in ingroup()
/freebsd-14.2/contrib/kyua/utils/process/
H A Dsystembuf.cpp98 PRE(gptr() >= egptr()); in underflow()
110 return traits_type::to_int_type(*gptr()); in underflow()
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dsstream459 __ninp = __rhs.gptr() - __p;
496 __ninp = __rhs.gptr() - __p;
543 __rninp = __rhs.gptr() - __p;
561 __lninp = this->gptr() - __p;
670 this->setg(this->eback(), this->gptr(), __hm_);
671 if (this->gptr() < this->egptr())
672 return traits_type::to_int_type(*this->gptr());
682 if (this->eback() < this->gptr()) {
689 *this->gptr() = traits_type::to_char_type(__c);
700 ptrdiff_t __ninp = this->gptr() - this->eback();
[all …]
H A Dfstream468 ptrdiff_t __n = this->gptr() - this->eback();
478 ptrdiff_t __n = __rhs.gptr() - __rhs.eback();
716 if (this->gptr() == nullptr)
720 if (this->gptr() == this->egptr()) {
727 __c = traits_type::to_int_type(*this->gptr());
752 __c = traits_type::to_int_type(*this->gptr());
760 __c = traits_type::to_int_type(*this->gptr());
768 if (__file_ && this->eback() < this->gptr()) {
775 *this->gptr() = traits_type::to_char_type(__c);
953 __c = this->egptr() - this->gptr();
[all …]
H A Dstreambuf68 char_type* gptr() const;
230 _LIBCPP_HIDE_FROM_ABI char_type* gptr() const { return __ninp_; }
H A Dlocale3428 if (this->gptr() == 0)
3432 if (this->gptr() == this->egptr()) {
3439 __c = *this->gptr();
3462 __c = *this->gptr();
3465 __c = *this->gptr();
3470 __c = *this->gptr();
3635 __c = this->egptr() - this->gptr();
3642 if (this->gptr() != this->egptr()) {
3643 std::reverse(this->gptr(), this->egptr());
3645 const char_type* __e = this->gptr();
[all …]