Home
last modified time | relevance | path

Searched refs:buf_ (Results 1 – 7 of 7) sorted by relevance

/freebsd-10-stable/contrib/libc++/include/
D__sso_allocator37 typename aligned_storage<sizeof(_Tp) * _Np>::type buf_;
56 return (pointer)&buf_;
62 if (__p == (pointer)&buf_)
70 bool operator==(__sso_allocator& __a) const {return &buf_ == &__a.buf_;}
72 bool operator!=(__sso_allocator& __a) const {return &buf_ != &__a.buf_;}
/freebsd-10-stable/contrib/groff/src/utils/hpftodit/
Dhpftodit.cpp151 unsigned char *buf_; member in File
414 buf_ = new unsigned char[sb.st_size]; in File()
415 long nread = read(fd, buf_, sb.st_size); in File()
420 ptr_ = buf_; in File()
421 end_ = buf_ + sb.st_size; in File()
435 if (uint32(end_ - buf_) < n) in seek()
437 ptr_ = buf_ + n; in seek()
/freebsd-10-stable/contrib/ntp/sntp/libevent/
Darc4random.c498 arc4random_buf(void *buf_, size_t n) in arc4random_buf() argument
500 unsigned char *buf = buf_; in arc4random_buf()
/freebsd-10-stable/crypto/openssl/ssl/
Ds3_pkt.c621 int ssl3_write_bytes(SSL *s, int type, const void *buf_, int len) in ssl3_write_bytes() argument
623 const unsigned char *buf = buf_; in ssl3_write_bytes()
Dd1_pkt.c1467 int dtls1_write_app_data_bytes(SSL *s, int type, const void *buf_, int len) in dtls1_write_app_data_bytes() argument
1499 i = dtls1_write_bytes(s, type, buf_, len); in dtls1_write_app_data_bytes()
Dssl.h432 int (*ssl_write_bytes) (SSL *s, int type, const void *buf_, int len);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
DMangled.cpp4718 alignas(alignment) char buf_[N];
4727 {return buf_ <= p && p <= buf_ + N;} in pointer_in_buffer()
4730 arena() noexcept : ptr_(buf_) {} in arena()
4739 std::size_t used() const {return static_cast<std::size_t>(ptr_ - buf_);} in used()
4740 void reset() {ptr_ = buf_;} in reset()
4748 if (static_cast<std::size_t>(buf_ + N - ptr_) >= n) in allocate()