HomeSort by relevance Sort by last modified time
    Searched refs:outbuf_ (Results 1 - 8 of 8) sorted by null

  /external/compiler-rt/test/msan/
iconv.cc 17 char outbuf_[100]; local
24 char *outbuf = outbuf_;
26 size_t outbytesleft = sizeof(outbuf_);
49 assert(memcmp(inbuf_, outbuf_, strlen(inbuf_)) == 0);
  /external/icu/icu4c/source/common/
bytestream.cpp 32 : outbuf_(outbuf), capacity_(capacity < 0 ? 0 : capacity),
54 if (n > 0 && bytes != (outbuf_ + size_)) {
55 uprv_memcpy(outbuf_ + size_, bytes, n);
72 return outbuf_ + size_;
  /external/protobuf/src/google/protobuf/stubs/
bytestream.cc 67 : outbuf_(outbuf), capacity_(capacity), size_(0), overflowed_(false) {
76 if (n > 0 && bytes != (outbuf_ + size_)) {
78 GOOGLE_DCHECK(!(outbuf_ <= bytes && bytes < (outbuf_ + capacity_)))
79 << "Append() bytes[] overlaps with outbuf_[]";
80 memcpy(outbuf_ + size_, bytes, n);
bytestream.h 203 char* outbuf_; member in class:google::protobuf::strings::CheckedArrayByteSink
  /external/webrtc/webrtc/base/
asynctcpsocket.cc 60 outbuf_ = new char[outsize_];
78 delete [] outbuf_;
145 memcpy(outbuf_ + outpos_, pv, cb);
152 int res = socket_->Send(outbuf_, outpos_);
163 memmove(outbuf_, outbuf_ + res, outpos_);
170 memcpy(outbuf_ + outpos_, pv, cb);
asynctcpsocket.h 58 // Add data to |outbuf_|.
74 char* inbuf_, * outbuf_; member in class:rtc::AsyncTCPSocketBase
  /external/icu/icu4c/source/common/unicode/
bytestream.h 215 char* outbuf_; member in class:CheckedArrayByteSink
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
bytestream.h 203 char* outbuf_; member in class:google::protobuf::strings::CheckedArrayByteSink

Completed in 409 milliseconds