HomeSort by relevance Sort by last modified time
    Searched defs:offset_ (Results 51 - 75 of 86) sorted by null

1 23 4

  /external/chromium_org/net/spdy/
spdy_stream_unittest.cc 51 offset_(0) {}
74 reads_.push_back(CreateMockRead(frame, offset_++));
78 writes_.push_back(CreateMockWrite(frame, offset_++));
82 reads_.push_back(MockRead(ASYNC, 0, offset_++));
109 int offset_; member in class:net::test::__anon11429::SpdyStreamTest
  /external/chromium_org/sandbox/win/src/
crosscall_params.h 69 uint32 offset_; member in struct:sandbox::ParamInfo
203 param_info_[0].offset_ = parameters_ - reinterpret_cast<char*>(this);
210 param_info_[0].offset_ = parameters_ - reinterpret_cast<char*>(this);
216 uint32 previous_size = param_info_[NUMBER_PARAMS].offset_;
217 param_info_[NUMBER_PARAMS].offset_ = new_size;
238 if (param_info_[index].offset_ > sizeof(*this)) {
243 char* dest = reinterpret_cast<char*>(this) + param_info_[index].offset_;
259 param_info_[index + 1].offset_ = Align(param_info_[index].offset_ +
268 return reinterpret_cast<char*>(this) + param_info_[index].offset_;
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
leveldb_main.cc 70 uint64_t offset_; member in class:leveldb::__anon13659::WriteBatchItemPrinter
  /external/chromium_org/v8/preparser/
preparser-process.cc 65 offset_(0) { }
70 offset_--;
72 if (offset_ < 0 ||
73 (ch != ((offset_ >= end_offset_) ? -1 : buffer_[offset_]))) {
74 fprintf(stderr, "Invalid pushback: '%c' at offset %d.", ch, offset_);
81 if (offset_ >= end_offset_) {
82 offset_++; // Increment anyway to allow symmetric pushbacks.
85 uint8_t next_char = buffer_[offset_];
92 offset_++
99 int offset_; member in class:AsciiInputStream
    [all...]
  /external/chromium_org/v8/src/
unicode.h 83 inline CacheEntry() : code_point_(kNoChar), offset_(0) { }
86 offset_(offset) { }
88 signed offset_; member in struct:unibrow::Mapping::CacheEntry
  /external/v8/preparser/
preparser-process.cc 65 offset_(0) { }
70 offset_--;
72 if (offset_ < 0 ||
73 (ch != ((offset_ >= end_offset_) ? -1 : buffer_[offset_]))) {
74 fprintf(stderr, "Invalid pushback: '%c' at offset %d.", ch, offset_);
81 if (offset_ >= end_offset_) {
82 offset_++; // Increment anyway to allow symmetric pushbacks.
85 uint8_t next_char = buffer_[offset_];
92 offset_++
99 int offset_; member in class:AsciiInputStream
    [all...]
  /external/v8/src/
unicode.h 83 inline CacheEntry() : code_point_(kNoChar), offset_(0) { }
86 offset_(offset) { }
88 signed offset_; member in struct:unibrow::Mapping::CacheEntry
234 unsigned offset_; member in class:unibrow::InputBuffer
  /external/chromium/base/
file_util_proxy.cc 531 offset_(offset),
540 bytes_read_ = base::ReadPlatformFile(file_, offset_, buffer_.get(),
555 int64 offset_; member in class:__anon4067::RelayRead
570 offset_(offset),
580 bytes_written_ = base::WritePlatformFile(file_, offset_, buffer_.get(),
595 int64 offset_; member in class:__anon4067::RelayWrite
  /external/chromium/chrome/browser/visitedlink/
visitedlink_master.cc 71 offset_(offset) {
77 WriteToFile(file_, offset_,
105 int32 offset_; // Offset from the beginning of the file. member in class:__anon5221::AsyncWriter
    [all...]
  /external/openfst/src/include/fst/
accumulator.h 705 offset_ = 1;
708 offset_ = 0;
724 w, aiter, begin ? begin - offset_ : 0, end - offset_);
725 if (begin == 0 && end != 0 && offset_ > 0)
736 size_t offset_; member in class:fst::ReplaceAccumulator
replace.h 1216 mutable ssize_t offset_; \/\/ Offset between position in iterator and in arcs_ member in class:fst::ArcIterator
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
screen_locker.cc 589 offset_.SetPoint(dest_x - src_x, dest_y - src_y);
597 copy->button.x -= offset_.x();
598 copy->button.y -= offset_.y();
606 copy->motion.x -= offset_.x();
607 copy->motion.y -= offset_.y();
620 gfx::Point offset_; member in class:chromeos::MouseEventRelay
    [all...]
  /external/chromium/net/disk_cache/
entry_impl.cc 94 : backend_(backend->GetWeakPtr()), offset_(0), grow_allowed_(true) {
125 int Start() { return offset_; }
126 int End() { return offset_ + Size(); }
133 int offset_; member in class:disk_cache::EntryImpl::UserBuffer
145 if (offset < offset_)
153 // buffer offset_ at 0.
157 int required = offset - offset_ + len;
163 DCHECK_GE(offset, offset_);
164 DVLOG(3) << "Buffer truncate at " << offset << " current " << offset_; local
166 offset -= offset_;
176 DVLOG(3) << "Buffer write at " << offset << " current " << offset_; local
    [all...]
  /external/chromium/net/tools/dump_cache/
upgrade.cc 262 int offset_; member in class:__anon5646::MasterSM
463 offset_ = 0;
479 offset_);
492 msg.arg3 = offset_;
513 int rv = writer_->WriteEntry(entry_, stream_, offset_, buf, read_size,
524 offset_ += read_size;
534 offset_ += ret;
  /external/chromium_org/net/disk_cache/
entry_impl.cc 95 : backend_(backend->GetWeakPtr()), offset_(0), grow_allowed_(true) {
126 int Start() { return offset_; }
127 int End() { return offset_ + Size(); }
134 int offset_; member in class:disk_cache::EntryImpl::UserBuffer
146 if (offset < offset_)
154 // buffer offset_ at 0.
158 int required = offset - offset_ + len;
164 DCHECK_GE(offset, offset_);
165 DVLOG(3) << "Buffer truncate at " << offset << " current " << offset_; local
167 offset -= offset_;
177 DVLOG(3) << "Buffer write at " << offset << " current " << offset_; local
    [all...]
  /external/chromium_org/net/disk_cache/v3/
entry_impl_v3.cc 40 : backend_(backend->GetWeakPtr()), offset_(0), grow_allowed_(true) {
71 int Start() { return offset_; }
72 int End() { return offset_ + Size(); }
79 int offset_; member in class:disk_cache::EntryImpl::UserBuffer
91 if (offset < offset_)
99 // buffer offset_ at 0.
103 int required = offset - offset_ + len;
109 DCHECK_GE(offset, offset_);
110 DVLOG(3) << "Buffer truncate at " << offset << " current " << offset_; local
112 offset -= offset_;
122 DVLOG(3) << "Buffer write at " << offset << " current " << offset_; local
    [all...]
  /external/chromium_org/net/tools/dump_cache/
upgrade_win.cc 264 int offset_; member in class:__anon11561::MasterSM
457 offset_ = 0;
473 offset_);
486 msg.arg3 = offset_;
508 entry_, stream_, offset_, buf, read_size,
519 offset_ += read_size;
529 offset_ += ret;
  /external/chromium_org/third_party/libwebp/demux/
demux.c 43 size_t offset_; member in struct:__anon13998
230 frame->img_components_[1].offset_ = chunk_start_offset;
257 frame->img_components_[0].offset_ = chunk_start_offset;
388 chunk->data_.offset_ = start_offset;
444 frame->img_components_[1].offset_ = 0;
645 if (alpha->size_ > 0 && alpha->offset_ > image->offset_) {
656 alpha->offset_ > image->offset_) {
800 size_t start_offset = image->offset_;
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
debugallocation.cc 282 // The four fields size1_,offset_,magic1_,alloc_type_
290 size_t offset_; // normally 0 unless memaligned memory member in class:MallocBlock
382 offset_ = 0;
477 void set_offset(int offset) { this->offset_ = offset; }
728 // If mb->offset_ is zero (common case), mb is the real header. If
729 // mb->offset_ is non-zero, this block was allocated by memalign, and
730 // mb->offset_ is the distance backwards to the real header from mb,
734 reinterpret_cast<char *>(mb) - mb->offset_);
749 return mb->offset_ != 0;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
debugallocation.cc 284 // The four fields size1_,offset_,magic1_,alloc_type_
292 size_t offset_; // normally 0 unless memaligned memory member in class:MallocBlock
384 offset_ = 0;
479 void set_offset(int offset) { this->offset_ = offset; }
732 // If mb->offset_ is zero (common case), mb is the real header. If
733 // mb->offset_ is non-zero, this block was allocated by memalign, and
734 // mb->offset_ is the distance backwards to the real header from mb,
738 reinterpret_cast<char *>(mb) - mb->offset_);
    [all...]
  /external/chromium_org/ui/base/events/
event.h 430 offset_(model.x_offset(), model.y_offset()){
435 int x_offset() const { return offset_.x(); }
436 int y_offset() const { return offset_.y(); }
437 const gfx::Vector2d& offset() const { return offset_; }
444 gfx::Vector2d offset_; member in class:ui::MouseWheelEvent
  /external/openfst/src/include/fst/extensions/ngram/
ngram-fst.h 49 size_t offset_; member in struct:fst::NGramFstInst
203 inst->offset_ = future_index_.Rank1(future_index_.Select0(state) + 1);
816 const Label *start = fst_.GetImpl()->future_words_ + inst_.offset_;
822 arc_.weight = fst_.GetImpl()->future_probs_[inst_.offset_ + state];
882 arc_.olabel = eps ? 0 : impl_->future_words_[inst_.offset_ + state];
896 impl_->future_words_[inst_.offset_ + state]);
902 impl_->future_probs_[inst_.offset_ + state];
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc 71 int32_t offset_ = Offset(index); local
73 (CMap::Builder::GetBuilder(data_, offset_, cmap_id));
    [all...]
  /external/webp/src/demux/
demux.c 43 size_t offset_; member in struct:__anon30382
227 frame->img_components_[1].offset_ = chunk_start_offset;
255 frame->img_components_[0].offset_ = chunk_start_offset;
389 chunk->data_.offset_ = start_offset;
443 frame->img_components_[1].offset_ = 0;
645 if (alpha->size_ > 0 && alpha->offset_ > image->offset_) {
656 alpha->offset_ > image->offset_) {
800 size_t start_offset = image->offset_;
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips.h 383 int32_t offset() const { return offset_; }
386 return is_int16(offset_);
390 int32_t offset_; member in class:v8::internal::MemOperand
    [all...]

Completed in 6996 milliseconds

1 23 4