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

  /external/chromium/net/base/
io_buffer.cc 27 if (offset_ > capacity)
30 set_offset(offset_); // The pointer may have changed.
35 offset_ = offset;
io_buffer.h 114 GrowableIOBuffer() : IOBuffer(), capacity_(0), offset_(0) {}
122 int offset() { return offset_; }
124 int RemainingCapacity() { return capacity_ - offset_; }
132 int offset_; member in class:net::GrowableIOBuffer
  /dalvik/vm/hprof/
HprofOutput.c 27 int offset_ = (int)(offset); \
29 buf_[offset_ + 0] = (unsigned char)(value_ >> 8); \
30 buf_[offset_ + 1] = (unsigned char)(value_ ); \
36 int offset_ = (int)(offset); \
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_ ); \
47 int offset_ = (int)(offset); \
49 buf_[offset_ + 0] = (unsigned char)(value_ >> 56);
    [all...]
  /external/chromium/net/url_request/
url_request_test_job.cc 82 offset_(0),
91 offset_(0),
105 offset_(0),
166 if (offset_ >= static_cast<int>(response_data_.length())) {
171 if (to_read + offset_ > static_cast<int>(response_data_.length()))
172 to_read = static_cast<int>(response_data_.length()) - offset_;
174 memcpy(buf->data(), &response_data_.c_str()[offset_], to_read);
175 offset_ += to_read;
url_request_test_job.h 128 int offset_; member in class:URLRequestTestJob
  /external/v8/src/
unicode-inl.h 52 if (entry.offset_ == 0) {
55 result[0] = c + entry.offset_;
202 buffer_ = R::ReadBlock(input_, util_buffer_, s, &remaining_, &offset_);
215 offset_ = position;
216 buffer_ = R::ReadBlock(input_, util_buffer_, s, &remaining_, &offset_);
226 offset_ = position;
227 buffer_ = R::ReadBlock(input_, util_buffer_, s, &remaining_, &offset_);
unicode.h 83 inline CacheEntry() : code_point_(kNoChar), offset_(0) { }
86 offset_(offset) { }
88 signed offset_; member in struct:unibrow::Mapping::CacheEntry
191 unsigned offset_; member in class:unibrow::InputBuffer
  /dalvik/vm/alloc/
HeapBitmap.h 30 #define HB_OFFSET_TO_INDEX(offset_) \
31 ((uintptr_t)(offset_) / HB_OBJECT_ALIGNMENT / HB_BITS_PER_WORD)
35 #define HB_OFFSET_TO_BYTE_INDEX(offset_) \
36 (HB_OFFSET_TO_INDEX(offset_) * sizeof(*((HeapBitmap *)0)->bits))
41 #define HB_OFFSET_TO_MASK(offset_) \
43 (31-(((uintptr_t)(offset_) / HB_OBJECT_ALIGNMENT) % HB_BITS_PER_WORD)))
  /external/chromium/net/disk_cache/
sparse_control.cc 191 offset_ = offset;
225 *start = offset_;
414 offset_ >> 20);
448 int child_bit = static_cast<int>(offset_ >> 20);
456 int child_bit = static_cast<int>(offset_ >> 20);
480 child_offset_ = static_cast<int>(offset_) & (kMaxEntrySize - 1);
676 // Only update offset_ when this query found zeros at the start.
678 offset_ += empty_start;
695 offset_ += result;
file_posix.cc 35 buf_len_(buf_len), offset_(offset), controller_(controller),
87 size_t offset_; member in class:__anon2586::BackgroundIO
152 if (file_->Read(const_cast<void*>(buf_), buf_len_, offset_)) {
171 bool rv = file_->Write(buf_, buf_len_, offset_);
sparse_control.h 165 int64 offset_; // Current sparse offset. member in class:disk_cache::SparseControl
  /external/chromium/net/tools/dump_cache/
upgrade.cc 245 int offset_; member in class:__anon2818::MasterSM
427 offset_ = 0;
443 offset_);
456 msg.arg3 = offset_;
477 if (!writer_->WriteEntry(entry_, stream_, offset_, buf, read_size))
480 offset_ += read_size;
  /external/v8/src/mips/
assembler-mips.cc 222 offset_ = offset;
776 GenInstrImmediate(LB, rs.rm(), rd, rs.offset_);
781 GenInstrImmediate(LBU, rs.rm(), rd, rs.offset_);
786 GenInstrImmediate(LW, rs.rm(), rd, rs.offset_);
791 GenInstrImmediate(SB, rs.rm(), rd, rs.offset_);
796 GenInstrImmediate(SW, rs.rm(), rd, rs.offset_);
900 GenInstrImmediate(LWC1, src.rm(), fd, src.offset_);
905 GenInstrImmediate(LDC1, src.rm(), fd, src.offset_);
910 GenInstrImmediate(SWC1, src.rm(), fd, src.offset_);
915 GenInstrImmediate(SDC1, src.rm(), fd, src.offset_);
    [all...]
assembler-mips.h 264 int16_t offset_; member in class:v8::internal::MemOperand
  /external/v8/src/arm/
assembler-arm.cc 272 offset_ = offset;
700 int offset_12 = x.offset_;
709 mov(ip, Operand(x.offset_), LeaveCC,
734 int offset_8 = x.offset_;
743 mov(ip, Operand(x.offset_), LeaveCC,
782 int offset_8 = x.offset_;
    [all...]
assembler-thumb2.cc 252 offset_ = offset;
680 int offset_12 = x.offset_;
689 mov(ip, Operand(x.offset_), LeaveCC,
714 int offset_8 = x.offset_;
723 mov(ip, Operand(x.offset_), LeaveCC,
762 int offset_8 = x.offset_;
    [all...]
assembler-arm.h 454 int32_t offset_; // valid if rm_ == no_reg member in class:v8::internal::BASE_EMBEDDED
    [all...]
assembler-thumb2.h 454 int32_t offset_; // valid if rm_ == no_reg member in class:v8::internal::BASE_EMBEDDED
    [all...]

Completed in 161 milliseconds