Home
last modified time | relevance | path

Searched full:gptr (Results 1 – 11 of 11) sorted by relevance

/freebsd-src/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-src/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-src/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Dittnotify_config.h
/freebsd-src/contrib/llvm-project/libcxx/include/
H A Dsstream531 __ninp = __rhs.gptr() - __p;
568 __ninp = __rhs.gptr() - __p;
615 __rninp = __rhs.gptr() - __p;
633 __lninp = this->gptr() - __p;
742 this->setg(this->eback(), this->gptr(), __hm_);
743 if (this->gptr() < this->egptr())
744 return traits_type::to_int_type(*this->gptr());
754 if (this->eback() < this->gptr()) {
756 this->setg(this->eback(), this->gptr() - 1, __hm_);
759 if ((__mode_ & ios_base::out) || traits_type::eq(traits_type::to_char_type(__c), this->gptr()[
[all...]
H A Dfstream455 this->setg(__intbuf_, __intbuf_ + (__rhs.gptr() - __rhs.eback()), __intbuf_ + (__rhs.egptr() - __rhs.eback()));
458 (char_type*)__extbuf_ + (__rhs.gptr() - __rhs.eback()),
549 ptrdiff_t __n = this->gptr() - this->eback();
559 ptrdiff_t __n = __rhs.gptr() - __rhs.eback();
750 if (this->gptr() == nullptr)
754 if (this->gptr() == this->egptr()) {
761 __c = traits_type::to_int_type(*this->gptr());
786 __c = traits_type::to_int_type(*this->gptr());
789 __c = traits_type::to_int_type(*this->gptr());
794 __c = traits_type::to_int_type(*this->gptr());
[all...]
H A Dstreambuf68 char_type* gptr() const;
233 _LIBCPP_HIDE_FROM_ABI char_type* gptr() const { return __ninp_; }
H A Dlocale3459 if (this->gptr() == 0)
3463 if (this->gptr() == this->egptr()) {
3470 __c = *this->gptr();
3493 __c = *this->gptr();
3496 __c = *this->gptr();
3501 __c = *this->gptr();
3512 if (__cv_ != 0 && __bufptr_ && this->eback() < this->gptr()) {
3517 if (traits_type::eq(traits_type::to_char_type(__c), this->gptr()[-1])) {
3519 *this->gptr() = traits_type::to_char_type(__c);
3666 __c = this->egptr() - this->gptr();
[all...]
/freebsd-src/usr.sbin/lpr/lpc/
H A Dlpc.c341 static struct group *gptr=NULL; in ingroup() local
348 if (gptr == NULL) { in ingroup()
349 if ((gptr = getgrnam(grname)) == NULL) { in ingroup()
360 gid = gptr->gr_gid; in ingroup()
/freebsd-src/usr.sbin/lpr/lpr/
H A Dlpr.c122 struct group *gptr; in main() local
293 if ((gptr = getgrnam(pp->restrict_grp)) == NULL) in main()
295 if (gptr->gr_gid != getgid()) { in main()
296 while (*gptr->gr_mem != NULL) { in main()
297 if ((strcmp(lpr_username, *gptr->gr_mem)) == 0) in main()
299 gptr->gr_mem++; in main()
301 if (*gptr->gr_mem == NULL) in main()
/freebsd-src/contrib/kyua/utils/process/
H A Dsystembuf.cpp98 PRE(gptr() >= egptr()); in underflow()
110 return traits_type::to_int_type(*gptr()); in underflow()
/freebsd-src/usr.sbin/bhyve/aarch64/
H A Dbhyverun_machdep.c204 void *data, *gptr; in load_bootrom() local
218 gptr = vm_map_gpa(ctx, loadaddr, round_page(size)); in load_bootrom()
224 memcpy(gptr, data, size); in load_bootrom()