Home
last modified time | relevance | path

Searched refs:pbase (Results 1 – 24 of 24) sorted by relevance

/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/
H A Dsstream.tcc121 if (this->pbase()) in overflow()
122 __tmp.assign(this->pbase(), this->epptr() - this->pbase()); in overflow()
126 this->gptr() - this->eback(), this->pptr() - this->pbase()); in overflow()
166 const char_type* __beg = __testin ? this->eback() : this->pbase(); in seekoff()
208 const char_type* __beg = __testin ? this->eback() : this->pbase(); in seekpos()
H A Dfstream.tcc399 if (this->pbase() < this->pptr()) in overflow()
410 if (_M_convert_to_external(this->pbase(), in overflow()
411 this->pptr() - this->pbase())) in overflow()
615 const streamsize __buffill = this->pptr() - this->pbase(); in xsputn()
616 const char* __buf = reinterpret_cast<const char*>(this->pbase()); in xsputn()
763 if (this->pbase() < this->pptr()) in _M_terminate_output()
825 if (this->pbase() < this->pptr()) in sync()
/openbsd-src/usr.bin/top/
H A Dutils.c329 struct kinfo_proc *pbase, *cur; in find_pid() local
332 if ((pbase = getprocs(KERN_PROC_KTHREAD, 0, &nproc)) == NULL) in find_pid()
335 for (cur = pbase; cur < &pbase[nproc]; cur++) in find_pid()
H A Dmachine.c130 static struct kinfo_proc *pbase; variable
433 if ((pbase = getprocs(what, 0, &nproc)) == NULL) { in get_process_info()
461 for (pp = pbase; pp < &pbase[nproc]; pp++) { in get_process_info()
/openbsd-src/gnu/gcc/libstdc++-v3/src/
H A Dstrstream.cc139 { return pptr() ? pptr() - pbase() : 0; } in pcount()
150 ptrdiff_t old_size = epptr() - pbase(); in overflow()
156 memcpy(buf, pbase(), old_size); in overflow()
157 char* old_buffer = pbase(); in overflow()
274 if (seeklow + off < pbase()) in seekoff()
281 setp(pbase(), epptr()); in seekoff()
282 pbump(off - (pbase() - seeklow)); in seekoff()
/openbsd-src/gnu/lib/libstdc++/libstdc++/src/
H A Dstrstream.cc139 { return pptr() ? pptr() - pbase() : 0; } in pcount()
150 ptrdiff_t old_size = epptr() - pbase(); in overflow()
156 memcpy(buf, pbase(), old_size); in overflow()
157 char* old_buffer = pbase(); in overflow()
274 if (seeklow + off < pbase()) in seekoff()
281 setp(pbase(), epptr()); in seekoff()
282 pbump(off - (pbase() - seeklow)); in seekoff()
/openbsd-src/gnu/llvm/libcxx/src/
H A Dstrstream.cpp152 return static_cast<int>(pptr() - pbase()); in pcount()
181 ptrdiff_t nout = pptr() - pbase(); in overflow()
286 setp(min(pbase(), newpos), epptr()); in seekoff()
287 __pbump((epptr() - pbase()) - __off); in seekoff()
316 setp(min(pbase(), newpos), epptr()); in seekpos()
317 __pbump((epptr() - pbase()) - temp); in seekpos()
/openbsd-src/gnu/llvm/libcxx/include/
H A D__std_stream278 char_type* pbase = &__1buf;
279 char_type* pptr = pbase + 1;
283 __r = __cv_->out(*__st_, pbase, pptr, __e,
287 if (__e == pbase)
291 if (fwrite(pbase, 1, 1, __file_) != 1)
301 pbase = const_cast<char_type*>(__e);
H A Dsstream287 if (__rhs.pbase() != nullptr)
289 __bout = __rhs.pbase() - __p;
328 if (__rhs.pbase() != nullptr)
330 __bout = __rhs.pbase() - __p;
376 if (__rhs.pbase() != nullptr)
378 __rbout = __rhs.pbase() - __p;
396 if (this->pbase() != nullptr)
398 __lbout = this->pbase() - __p;
453 return string_type(this->pbase(), __hm_, __str_.get_allocator());
548 ptrdiff_t __nout = this->pptr() - this->pbase();
[all …]
H A Dfstream352 if (__rhs.pbase())
354 if (__rhs.pbase() == __rhs.__intbuf_)
355 this->setp(__intbuf_, __intbuf_ + (__rhs. epptr() - __rhs.pbase()));
358 (char_type*)__extbuf_ + (__rhs. epptr() - __rhs.pbase()));
359 this->__pbump(__rhs. pptr() - __rhs.pbase());
483 else if (this->pbase() == (char_type*)__rhs.__extbuf_min_)
485 ptrdiff_t __n = this->pptr() - this->pbase();
486 ptrdiff_t __e = this->epptr() - this->pbase();
499 else if (__rhs.pbase() == (char_type*)__extbuf_min_)
501 ptrdiff_t __n = __rhs.pptr() - __rhs.pbase();
[all …]
H A Dstreambuf74 char_type* pbase() const;
256 _LIBCPP_INLINE_VISIBILITY char_type* pbase() const {return __bout_;}
H A Dlocale4085 char_type* __pb_save = this->pbase();
4094 if (this->pptr() != this->pbase())
4098 streamsize __nmemb = static_cast<streamsize>(this->pptr() - this->pbase());
4099 if (__bufptr_->sputn((const char*)this->pbase(), __nmemb) != __nmemb)
4109 __r = __cv_->out(__st_, this->pbase(), this->pptr(), __e,
4111 if (__e == this->pbase())
4115 streamsize __nmemb = static_cast<size_t>(this->pptr() - this->pbase());
4116 if (__bufptr_->sputn((const char*)this->pbase(), __nmemb) != __nmemb)
4127 this->__pbump(this->epptr() - this->pbase());
4231 if (this->pptr() != this->pbase())
/openbsd-src/gnu/gcc/libstdc++-v3/include/std/
H A Dstd_sstream.h135 __ret = __string_type(this->pbase(), this->pptr()); in _GLIBCXX_BEGIN_NAMESPACE()
137 __ret = __string_type(this->pbase(), this->egptr()); in _GLIBCXX_BEGIN_NAMESPACE()
H A Dstd_streambuf.h525 pbase() const { return _M_out_beg; } in pbase() function
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/27_io/
H A Dstreambuf_members.cc56 VERIFY( this->pbase() == NULL ); in check_pointers()
273 result.append(pbase(), pptr()); in sync()
/openbsd-src/usr.bin/mg/
H A Ddisplay.c933 struct video **vbase, **pbase; in setscores() local
939 pbase = &pscreen[offs - 1]; in setscores()
965 pp = &pbase[1]; in setscores()
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dsstream.tcc208 __beg = this->pbase(); in seekpos()
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/std/
H A Dstd_streambuf.h648 pbase() const { return _M_out_beg; } in pbase() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp811.C157 char* pbase() const { return _pbase; } in pbase() function
H A Dp784.C488 char* pbase() const { return _pbase; } in pbase() function
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Dpt.c5425 tree pbase; local
5427 pbase = TREE_VEC_ELT (pbases, i);
5430 base = tsubst (BINFO_TYPE (pbase), args, tf_error, NULL_TREE);
5435 if (TREE_VIA_VIRTUAL (pbase))
5437 if (TREE_VIA_PUBLIC (pbase))
5439 else if (TREE_VIA_PROTECTED (pbase))
5446 if (TREE_VIA_PUBLIC (pbase))
5448 else if (TREE_VIA_PROTECTED (pbase))
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-arm.c1119 parse_vfp_reg_list (char **str, unsigned int *pbase, int dp) in parse_vfp_reg_list() argument
1214 *pbase = base_reg; in parse_vfp_reg_list()
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/
H A DCHECKLIST5284 T char_type* pbase() const;
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/
H A DCHECKLIST5284 T char_type* pbase() const;