Searched defs:buf_ (Results 1 - 25 of 46) sorted by relevance

12

/external/compiler-rt/test/asan/TestCases/Posix/
H A Dreadv.cc18 char * volatile buf_ = buf; local
19 iov[0].iov_base = buf_ - 1;
/external/webrtc/webrtc/base/
H A Dasyncudpsocket.h60 char* buf_; member in class:rtc::AsyncUDPSocket
/external/adhd/cras/src/tests/
H A Dshm_unittest.cc34 uint8_t *buf_; member in class:__anon784::ShmTestSuite
40 buf_ = cras_shm_get_readable_frames(&shm_, 0, &frames_);
49 buf_ = cras_shm_get_readable_frames(&shm_, 0, &frames_);
51 EXPECT_EQ(shm_.area->samples, buf_);
63 buf_ = cras_shm_get_readable_frames(&shm_, 0, &frames_);
65 EXPECT_EQ((shm_.area->samples + shm_.area->read_offset[0]), buf_);
77 buf_ = cras_shm_get_readable_frames(&shm_, 25, &frames_);
81 (uint8_t *)buf_);
90 buf_ = cras_shm_get_readable_frames(&shm_, 0, &frames_);
92 EXPECT_EQ(shm_.area->samples + shm_.area->read_offset[0], (uint8_t *)buf_);
[all...]
/external/google-breakpad/src/client/linux/minidump_writer/
H A Ddirectory_reader.h63 reinterpret_cast<kernel_dirent*>(buf_);
67 const int n = sys_getdents(fd_, dent, sizeof(buf_));
91 reinterpret_cast<kernel_dirent*>(buf_);
94 my_memmove(buf_, buf_ + dent->d_reclen, buf_used_);
101 uint8_t buf_[sizeof(struct kernel_dirent) + NAME_MAX + 1]; member in class:google_breakpad::DirectoryReader
H A Dline_reader.h70 if (buf_[i] == '\n' || buf_[i] == 0) {
71 buf_[i] = 0;
73 *line = buf_;
78 if (buf_used_ == sizeof(buf_)) {
88 // There's room for the NUL because of the buf_used_ == sizeof(buf_)
90 buf_[buf_used_] = 0;
93 *line = buf_;
98 const ssize_t n = sys_read(fd_, buf_ + buf_used_,
99 sizeof(buf_)
126 char buf_[kMaxLineLen]; member in class:google_breakpad::LineReader
[all...]
/external/perfetto/src/ipc/
H A Dbuffered_frame_deserializer.h120 char* buf() { return reinterpret_cast<char*>(buf_.get()); }
122 base::PageAllocator::UniquePtr buf_; member in class:perfetto::ipc::BufferedFrameDeserializer
123 const size_t capacity_ = 0; // sizeof(|buf_|).
125 // THe number of bytes in |buf_| that contain valid data (as a result of
/external/perfetto/src/tracing/test/
H A Daligned_buffer_test.h37 uint8_t* buf() const { return reinterpret_cast<uint8_t*>(buf_->start()); }
38 size_t buf_size() const { return buf_->size(); }
46 std::unique_ptr<TestSharedMemory> buf_; member in class:perfetto::AlignedBufferTest
/external/tensorflow/tensorflow/core/framework/
H A Dtensor_reference.h38 if (buf_) buf_->Unref();
44 return 128 + (buf_ ? buf_->size() : 0);
48 if (buf_) buf_->FillAllocationDescription(description);
53 return buf_ == t.buf_;
58 return buf_ == (t.buf_
70 TensorBuffer* buf_; member in class:tensorflow::TensorReference
[all...]
H A Drendezvous.h74 StringPiece FullKey() const { return buf_; }
80 string buf_; member in struct:tensorflow::Rendezvous::ParsedKey
/external/tensorflow/tensorflow/core/lib/io/
H A Dbuffered_inputstream.h92 string buf_; // the buffer itself. member in class:tensorflow::io::BufferedInputStream
93 // buf_[pos_, limit_) holds the valid "read ahead" data in the file.
94 size_t pos_ = 0; // current position in buf_.
95 size_t limit_ = 0; // just past the end of valid data in buf_.
H A Dinputbuffer.h99 size_t size_; // Size of "buf_"
100 char* buf_; // The buffer itself member in class:tensorflow::io::InputBuffer
/external/v8/src/
H A Dostreams.h43 OFStreamBase buf_; member in class:v8::internal::OFStream
/external/webrtc/webrtc/modules/video_coding/utility/
H A Dvp8_header_parser.h35 const uint8_t* buf_; // Next byte to be read. member in struct:webrtc::vp8::VP8BitReader
/external/tensorflow/tensorflow/core/kernels/
H A Ddecode_compressed_op.cc33 : buf_(buffer), len_(length), pos_(0) {}
51 memcpy(&(*result)[0], &buf_[pos_], bytes);
65 const char* buf_; // Not owned. member in class:tensorflow::__anon26448::MemoryInputStream
H A Dstage_op.cc46 std::deque<Tuple> buf_; member in class:tensorflow::__anon26616::Buffer
67 bool IsCapacityFull() const { return buf_.size() >= capacity_; }
120 buf_.push_back(std::move(*tuple));
138 non_empty_cond_var_.wait(lock, [this]() { return !buf_.empty(); });
141 *tuple = std::move(buf_.front());
142 buf_.pop_front();
156 lock, [index, this]() { return index < this->buf_.size(); });
159 for (const auto& tensor : buf_[index]) {
169 return buf_.size();
174 buf_
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.h88 const char *buf_; member in class:__sanitizer::FlagParser
/external/libchrome/base/files/
H A Ddir_reader_linux.h37 memset(buf_, 0, sizeof(buf_));
54 linux_dirent* dirent = reinterpret_cast<linux_dirent*>(&buf_[offset_]);
61 const int r = syscall(__NR_getdents64, fd_, buf_, sizeof(buf_));
78 reinterpret_cast<const linux_dirent*>(&buf_[offset_]);
92 unsigned char buf_[512]; member in class:base::DirReaderLinux
/external/libvpx/libvpx/test/
H A Dwebm_video_source.h29 webm_ctx_(new WebmInputContext()), buf_(NULL), buf_sz_(0), frame_(0),
58 const int status = webm_read_frame(webm_ctx_, &buf_, &buf_sz_);
68 const int status = webm_read_frame(webm_ctx_, &buf_, &buf_sz_);
77 virtual const uint8_t *cxdata() const { return end_of_file_ ? NULL : buf_; }
85 uint8_t *buf_; member in class:libvpx_test::WebMVideoSource
/external/tensorflow/tensorflow/compiler/xla/tools/parser/
H A Dhlo_lexer.h35 explicit HloLexer(tensorflow::StringPiece buf) : buf_(buf) {
36 current_ptr_ = buf_.begin();
109 const tensorflow::StringPiece buf_; member in class:xla::tools::HloLexer
/external/flac/libFLAC/
H A Dmd5.c276 FLAC__byte *buf_ = mbuf->p8; local
291 *buf_++ = signal[0][sample];
296 *buf_++ = signal[0][sample];
297 *buf_++ = signal[1][sample];
303 *buf_++ = signal[0][sample];
304 *buf_++ = signal[1][sample];
305 *buf_++ = signal[2][sample];
306 *buf_++ = signal[3][sample];
312 *buf_++ = signal[0][sample];
313 *buf_
[all...]
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/
H A Dmjpeg_decoder.h168 Buffer buf_; member in class:libyuv::MJpegDecoder
/external/libyuv/files/include/libyuv/
H A Dmjpeg_decoder.h171 Buffer buf_; member in class:libyuv::MJpegDecoder
/external/protobuf/src/google/protobuf/stubs/
H A Dbytestream.h241 char* buf_; member in class:google::protobuf::strings::GrowingArrayByteSink
/external/webp/src/utils/
H A Dbit_reader_utils.h77 const uint8_t* buf_; // next byte to be read member in struct:VP8BitReader
123 const uint8_t* buf_; // input byte buffer member in struct:__anon30458
125 size_t pos_; // byte position in buf_
H A Dbit_writer_utils.h32 uint8_t* buf_; // internal buffer. Re-allocated regularly. Not owned. member in struct:VP8BitWriter
63 return bw->buf_;
92 uint8_t* buf_; // start of buffer member in struct:__anon30459
104 return (bw->cur_ - bw->buf_) + ((bw->used_ + 7) >> 3);

Completed in 785 milliseconds

12