Home
last modified time | relevance | path

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

123

/llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
H A Doverflow.pass.cpp32 char_type* pbase() const {return base::pbase();} in pbase() function
46 assert(f.pbase() == 0); in main()
50 assert(f.pbase() != 0); in main()
51 assert(f.pptr() == f.pbase()); in main()
66 assert(f.pbase() == 0); in main()
70 assert(f.pbase() == 0); in main()
87 assert(f.pbase() == 0); in main()
91 assert(f.pbase() != 0); in main()
92 assert(f.pptr() == f.pbase()); in main()
107 assert(f.pbase() == 0); in main()
[all …]
/llvm-project-15.0.7/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Doverflow.pass.cpp38 char_type* pbase() const {return base::pbase();} in pbase() function
51 assert(f.pbase() == 0); in main()
55 assert(f.pbase() != 0); in main()
56 assert(f.pptr() == f.pbase()); in main()
57 assert(f.epptr() - f.pbase() == 4095); in main()
69 assert(f.pbase() == 0); in main()
73 assert(f.pbase() == 0); in main()
/llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dswap.pass.cpp39 assert(this->pbase() == old_that.pbase()); in swap()
47 assert(t.pbase() == old_this.pbase()); in swap()
H A Dassign.pass.cpp37 assert(this->pbase() == t.pbase()); in operator =()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.put.area/
H A Dpbump.pass.cpp36 CharT* pbeg = base::pbase(); in pbump()
40 assert(base::pbase() == pbeg); in pbump()
H A Dpbump2gig.pass.cpp29 const char* pubpbase() const { return pbase(); } in pubpbase()
H A Dsetp.pass.cpp32 assert(base::pbase() == pbeg); in setp()
/llvm-project-15.0.7/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 Dsstream282 if (__rhs.pbase() != nullptr)
284 __bout = __rhs.pbase() - __p;
323 if (__rhs.pbase() != nullptr)
325 __bout = __rhs.pbase() - __p;
371 if (__rhs.pbase() != nullptr)
373 __rbout = __rhs.pbase() - __p;
391 if (this->pbase() != nullptr)
393 __lbout = this->pbase() - __p;
550 __hm_ = this->pbase() + __hm;
594 __noff = this->pptr() - this->pbase();
[all …]
H A Dfstream349 if (__rhs.pbase())
351 if (__rhs.pbase() == __rhs.__intbuf_)
356 this->__pbump(__rhs. pptr() - __rhs.pbase());
482 ptrdiff_t __n = this->pptr() - this->pbase();
483 ptrdiff_t __e = this->epptr() - this->pbase();
498 ptrdiff_t __n = __rhs.pptr() - __rhs.pbase();
499 ptrdiff_t __e = __rhs.epptr() - __rhs.pbase();
824 char_type* __pb_save = this->pbase();
833 if (this->pptr() != this->pbase())
853 if (__e == this->pbase())
[all …]
/llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.cons/
H A Dcopy.pass.cpp37 assert(this->pbase() == t.pbase()); in test()
H A Ddefault.pass.cpp33 assert(this->pbase() == 0); in test()
/llvm-project-15.0.7/polly/lib/External/isl/
H A Disl_sort.c153 int isl_sort(void *const pbase, size_t total_elems, size_t size, in isl_sort() argument
156 return MergeSort (pbase, total_elems, size, cmp, arg); in isl_sort()
H A Disl_sort.h6 int isl_sort(void *const pbase, size_t total_elems, size_t size,
/llvm-project-15.0.7/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.cons/
H A Ddefault.pass.cpp35 assert(this->pbase() == NULL); in check()
/llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/
H A Dostream.pass.cpp34 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
H A Dios_base.pass.cpp33 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
H A Dbasic_ios.pass.cpp34 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
H A Dstreambuf.pass.cpp40 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
/llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/output.streams/ostream.manip/
H A Dendl.pass.cpp36 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
H A Dends.pass.cpp34 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
/llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
H A Dunsigned_int.pass.cpp33 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
H A Dint.pass.cpp33 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
H A Ddouble.pass.cpp33 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()

123