HomeSort by relevance Sort by last modified time
    Searched refs:buf_ (Results 1 - 25 of 41) sorted by null

1 2

  /external/chromium/base/
dir_reader_linux.h 52 linux_dirent* dirent = reinterpret_cast<linux_dirent*>(&buf_[offset_]);
59 const int r = syscall(__NR_getdents64, fd_, buf_, sizeof(buf_));
76 reinterpret_cast<const linux_dirent*>(&buf_[offset_]);
90 unsigned char buf_[512]; member in class:base::DirReaderLinux
lazy_instance.h 129 // Create the instance in the space provided by |buf_|.
130 instance_ = Traits::New(buf_);
150 return static_cast<int8*>(static_cast<void*>(p)) == buf_;
170 int8 buf_[sizeof(Type)]; // Preallocate the space for the Type instance. member in class:base::LazyInstance
  /dalvik/vm/hprof/
HprofOutput.cpp 26 unsigned char *buf_ = (unsigned char *)(buf); \
29 buf_[offset_ + 0] = (unsigned char)(value_ >> 8); \
30 buf_[offset_ + 1] = (unsigned char)(value_ ); \
35 unsigned char *buf_ = (unsigned char *)(buf); \
38 buf_[offset_ + 0] = (unsigned char)(value_ >> 24); \
39 buf_[offset_ + 1] = (unsigned char)(value_ >> 16); \
40 buf_[offset_ + 2] = (unsigned char)(value_ >> 8); \
41 buf_[offset_ + 3] = (unsigned char)(value_ ); \
46 unsigned char *buf_ = (unsigned char *)(buf); \
49 buf_[offset_ + 0] = (unsigned char)(value_ >> 56);
    [all...]
  /external/webp/src/enc/
bit_writer.c 37 if (bw->pos_ > 0) memcpy(new_buf, bw->buf_, bw->pos_);
38 free(bw->buf_);
39 bw->buf_ = new_buf;
58 if (pos > 0) bw->buf_[pos - 1]++;
62 for (; bw->run_ > 0; --bw->run_) bw->buf_[pos++] = value;
64 bw->buf_[pos++] = bits;
160 bw->buf_ = NULL;
168 return bw->buf_;
176 memcpy(bw->buf_ + bw->pos_, data, size);
bit_writer.h 30 uint8_t* buf_; member in struct:VP8BitWriter
51 return bw->buf_;
  /packages/inputmethods/PinyinIME/jni/share/
dictlist.cpp 32 buf_ = NULL;
52 buf_ = static_cast<char16*>(malloc(buf_size * sizeof(char16)));
53 if (NULL == buf_)
72 if (NULL != buf_)
73 free(buf_);
74 buf_ = NULL;
93 if (NULL != buf_)
94 free(buf_);
181 utf16_strncpy(buf_, lemma_arr[0].hanzi_str,
189 utf16_strncpy(buf_ + current_pos, lemma_arr[i].hanzi_str
    [all...]
  /external/flac/libFLAC/
md5.c 281 register FLAC__byte *buf_ = buf; local
286 FLAC__int16 *buf1_ = ((FLAC__int16*)buf_) + 1;
287 memcpy(buf_, signal[0], sizeof(FLAC__int32) * samples);
292 FLAC__int16 *buf1_ = (FLAC__int16*)buf_;
302 *buf_++ = (FLAC__byte)a_word; a_word >>= 8;
303 *buf_++ = (FLAC__byte)a_word;
305 *buf_++ = (FLAC__byte)a_word; a_word >>= 8;
306 *buf_++ = (FLAC__byte)a_word;
312 *buf_++ = (FLAC__byte)a_word; a_word >>= 8;
313 *buf_++ = (FLAC__byte)a_word
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
asyncudpsocket.cc 55 buf_ = new char[size_];
62 delete [] buf_;
112 int len = socket_->RecvFrom(buf_, size_, &remote_addr);
126 SignalReadPacket(this, buf_, (size_t)len, remote_addr);
asyncudpsocket.h 65 char* buf_; member in class:talk_base::AsyncUDPSocket
  /external/webp/src/dec/
bits.h 26 const uint8_t* buf_; // next byte to be read member in struct:__anon15209
54 if (br->buf_ < br->buf_end_) {
55 assert(br->buf_);
56 return *br->buf_++;
bits.c 27 br->buf_ = start;
idec.c 50 uint8_t* buf_; // We don't own this buffer in case WebPIUpdate() member in struct:__anon15212
85 // Appends data to the end of MemBuffer->buf_. It expands the allocated memory
100 const uint8_t* const base = mem->buf_ + mem->start_;
108 if (dec->parts_[p].buf_) {
109 REMAP(dec->parts_[p].buf_, base, new_buf);
115 free(mem->buf_);
116 mem->buf_ = new_buf;
123 memcpy(mem->buf_ + mem->end_, data, data_size);
126 dec->parts_[last_part].buf_end_ = mem->buf_ + mem->end_;
130 idec->io_.data = mem->buf_ + mem->start_
    [all...]
  /sdk/emulator/qtools/
decoder.h 25 uint8_t buf_[kBufSize]; member in class:Decoder
decoder.cpp 123 int rval = fread(buf_, 1, kBufSize, fstream_);
134 next_ = buf_;
135 end_ = buf_ + rval;
142 if (end_ - next_ < kDecodingSpace && end_ == &buf_[kBufSize]) {
147 memcpy(buf_, next_, len);
151 int rval = fread(buf_ + len, 1, nbytes, fstream_);
162 end_ = &buf_[len + rval];
163 next_ = buf_;
187 // the array "buf_" and return the decoded value as a 64-bit integer.
  /external/chromium/net/base/
upload_data_stream.cc 38 memmove(buf_->data(), buf_->data() + num_bytes, buf_len_);
48 buf_(new IOBuffer(kBufSize)),
78 memcpy(buf_->data() + buf_len_, &d[next_element_offset_], bytes_copied);
119 rv = next_element_java_stream_->Read(buf_->data() + buf_len_, count);
123 rv = next_element_stream_->Read(buf_->data() + buf_len_, count, NULL);
131 memset(buf_->data() + buf_len_, 0, count);
upload_data_stream.h 31 IOBuffer* buf() const { return buf_; }
91 scoped_refptr<IOBuffer> buf_; member in class:net::UploadDataStream
  /external/chromium/net/spdy/
spdy_stream_unittest.cc 38 buf_(buf),
64 if (buf_) {
66 stream_->WriteStreamData(buf_.get(), buf_->size(),
95 scoped_refptr<IOBufferWithSize> buf_; member in class:net::__anon4221::TestSpdyStreamDelegate
  /external/chromium/net/url_request/
url_request_test_util.cc 124 buf_(new net::IOBuffer(kBufferSize)) {
201 if (request->Read(buf_, kBufferSize, &bytes_read))
223 data_received_.append(buf_->data(), bytes_read);
229 while (request->Read(buf_, kBufferSize, &bytes_read)) {
231 data_received_.append(buf_->data(), bytes_read);
view_cache_helper.cc 285 buf_ = new IOBuffer(buf_len_);
286 return entry_->ReadData(0, 0, buf_, buf_len_, entry_callback_);
294 if (HttpCache::ParseResponseInfo(buf_->data(), buf_len_, &response,
330 buf_ = new IOBuffer(buf_len_);
331 return entry_->ReadData(index_, 0, buf_, buf_len_, entry_callback_);
337 HexDump(buf_->data(), buf_len_, data_);
view_cache_helper.h 100 scoped_refptr<IOBuffer> buf_; member in class:net::ViewCacheHelper
  /external/chromium/net/disk_cache/
file_posix.cc 30 buf_(buf), buf_len_(buf_len), offset_(offset) {
55 const void* buf_; member in class:__anon4026::FileBackgroundIO
93 if (file_->Read(const_cast<void*>(buf_), buf_len_, offset_)) {
103 bool rv = file_->Write(buf_, buf_len_, offset_);
in_flight_backend_io.cc 133 buf_ = buf;
143 buf_ = buf;
153 buf_ = buf;
162 buf_ = buf;
249 result_ = entry_->ReadDataImpl(index_, offset_, buf_, buf_len_,
253 result_ = entry_->WriteDataImpl(index_, offset_, buf_, buf_len_,
257 result_ = entry_->ReadSparseDataImpl(offset64_, buf_, buf_len_,
261 result_ = entry_->WriteSparseDataImpl(offset64_, buf_, buf_len_,
  /external/chromium/net/proxy/
proxy_script_fetcher_impl.h 88 scoped_refptr<IOBuffer> buf_; member in class:net::ProxyScriptFetcherImpl
proxy_script_fetcher_impl.cc 77 buf_(new IOBuffer(kBufSize)),
244 if (!request->Read(buf_, kBufSize, &num_bytes)) {
271 bytes_read_so_far_.append(buf_->data(), num_bytes);
  /packages/inputmethods/PinyinIME/jni/include/
dictlist.h 41 char16 *buf_; member in class:ime_pinyin::DictList

Completed in 974 milliseconds

1 2