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

1 23 4 5 6 7 8 910

  /external/puffin/src/
memory_stream.h 47 uint64_t offset_; member in class:puffin::MemoryStream
  /system/update_engine/common/
multi_range_http_fetcher.h 127 Range(off_t offset, size_t length) : offset_(offset), length_(length) {}
128 explicit Range(off_t offset) : offset_(offset), length_(0) {}
130 inline off_t offset() const { return offset_; }
138 off_t offset_; member in class:chromeos_update_engine::MultiRangeHttpFetcher::Range
file_fetcher.h 47 void SetOffset(off_t offset) override { offset_ = offset; }
104 uint64_t offset_{0};
  /tools/dexter/slicer/
bytecode_encoder.cc 126 bytecode->offset = offset_;
213 assert(label->offset <= offset_);
214 A = label->offset - offset_;
218 fixups_.push_back(LabelFixup(offset_, label, true));
231 assert(label->offset <= offset_);
232 A = label->offset - offset_;
234 fixups_.push_back(LabelFixup(offset_, label, false));
248 assert(label->offset <= offset_);
249 B = label->offset - offset_;
253 fixups_.push_back(LabelFixup(offset_, label, true))
    [all...]
  /bionic/libc/malloc_debug/
GuardData.h 71 size_t offset() { return offset_; }
76 size_t offset_ = 0; member in class:FrontGuardData
  /external/sfntly/cpp/src/sfntly/table/
header.h 43 int32_t offset() { return offset_; }
76 int32_t offset_; member in class:sfntly::Header
  /external/tensorflow/tensorflow/python/lib/io/
py_record_reader.cc 43 reader->offset_ = start_offset;
64 Status s = reader_->ReadRecord(&offset_, &record_);
  /external/v8/src/compiler/x64/
unwinding-info-writer-x64.h 60 : register_(reg), offset_(offset), tracking_fp_(tracking_fp) {}
63 int offset_; member in class:v8::internal::compiler::UnwindingInfoWriter::BlockInitialState
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_nalu.h 70 size_t offset_; member in class:webrtc::final
92 size_t offset_; member in class:webrtc::final
  /frameworks/base/tools/aapt2/io/
File.h 73 : file_(file), offset_(offset), len_(len) {}
86 size_t offset_; member in class:aapt::io::FileSegment
BigBufferStream.h 52 size_t offset_ = 0; member in class:aapt::io::BigBufferInputStream
  /system/core/libunwindstack/
Symbols.h 55 cur_offset_ = offset_;
60 uint64_t offset_; member in class:unwindstack::Symbols
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
consuming_buffers.hpp 61 offset_(0),
113 || offset_ + buffer_size(first_) >= max_size_)
119 offset_ += buffer_size(first_);
120 first_ = buffer(*begin_remainder_++, max_size_ - offset_);
146 std::size_t offset_; member in class:asio::detail::consuming_buffers_iterator
  /external/perf_data_converter/src/quipper/
perf_parser.h 65 uint64_t offset_; member in struct:quipper::ParsedEvent::DSOAndOffset
76 uint64_t offset() const { return offset_; }
78 DSOAndOffset() : dso_info_(NULL), offset_(0) {}
81 return offset_ == other.offset_ &&
  /external/tensorflow/tensorflow/compiler/xla/service/
buffer_assignment.h 131 : allocation_(allocation), offset_(offset), size_(size) {}
135 int64 offset() const { return offset_; }
139 return index() == other.index() && offset_ == other.offset_ &&
145 if (offset_ != other.offset_) return offset_ < other.offset_;
152 const int64 end = offset_ + size_;
153 const int64 other_end = other.offset_ + other.size_
166 int64 offset_ = 0; member in class:xla::BufferAllocation::Slice
    [all...]
  /art/dexlayout/
dex_writer.h 44 : type_(type), size_(size), offset_(offset) { }
48 return offset_ > other.offset_;
53 uint32_t offset_ = 0u; member in struct:art::MapItem
142 ScopedSeek(Stream* stream, uint32_t offset) : stream_(stream), offset_(stream->Tell()) {
147 stream_->Seek(offset_);
152 const uint32_t offset_; member in class:art::DexWriter::Stream::ScopedSeek
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format4.h 30 int32_t offset() const { return offset_; }
37 int32_t offset_; member in class:sfntly::IndexSubTableFormat4::CodeOffsetPair
45 void set_offset(int32_t v) { offset_ = v; }
  /external/tensorflow/tensorflow/core/kernels/
mirror_pad_op.cc 47 offset_ = 0;
51 offset_ = 1;
92 if (offset_ == 0) { // SYMMETRIC mode.
99 } else if (offset_ == 1) { // REFLECT mode.
126 To32Bit(in0.tensor<T, i>()), paddings, offset_); \
146 int offset_; member in class:tensorflow::MirrorPadOp
256 offset_ = 0;
260 offset_ = 1;
303 if (offset_ == 0) { // SYMMETRIC mode.
309 } else if (offset_ == 1) { // REFLECT mode
356 int offset_; member in class:tensorflow::MirrorPadGradOp
    [all...]
  /system/update_engine/payload_consumer/
extent_reader.h 70 uint64_t offset_{0};
  /system/update_engine/payload_generator/
full_update_generator.cc 58 offset_(offset),
79 off_t offset_; member in class:chromeos_update_engine::__anon3868::ChunkProcessor
89 LOG(ERROR) << "Error processing region at " << offset_ << " of size "
101 offset_,
  /external/deqp/modules/glshared/
glsCalibration.hpp 44 LineParameters (float offset_, float coefficient_) : offset(offset_), coefficient(coefficient_) {}
  /external/libmojo/mojo/edk/embedder/
platform_shared_buffer.h 155 : offset_(offset),
163 const size_t offset_; member in class:mojo::edk::PlatformSharedBufferMapping
  /external/ImageMagick/Magick++/lib/
Geometry.cpp 493 Magick::Offset::Offset(const char *offset_)
497 *this=offset_; // Use assignment operator
500 Magick::Offset::Offset(const Offset &offset_)
501 : _x(offset_._x),
502 _y(offset_._y)
506 Magick::Offset::Offset(const std::string &offset_)
510 *this=offset_; // Use assignment operator
523 const Magick::Offset& Magick::Offset::operator=(const char *offset_)
531 flags=ParseGeometry(offset_,&geometry_info);
539 Magick::Offset& Magick::Offset::operator=(const Offset &offset_)
    [all...]
  /art/runtime/mirror/
string-inl.h 74 : count_(count), src_array_(src_array), offset_(offset), high_byte_(high_byte) {
84 const uint8_t* const src = reinterpret_cast<uint8_t*>(src_array_->GetData()) + offset_;
101 const int32_t offset_; member in class:art::mirror::SetStringCountAndBytesVisitor
110 count_(count), src_array_(src_array), offset_(offset) {
118 const uint16_t* const src = src_array_->GetData() + offset_;
132 const int32_t offset_; member in class:art::mirror::SetStringCountAndValueVisitorFromCharArray
141 count_(count), src_string_(src_string), offset_(offset) {
152 const uint8_t* const src = src_string_->GetValueCompressed() + offset_;
155 const uint16_t* const src = src_string_->GetValue() + offset_;
169 const int32_t offset_; member in class:art::mirror::SetStringCountAndValueVisitorFromString
    [all...]
  /external/libmojo/mojo/edk/system/
channel_posix.cc 43 offset_(offset),
45 DCHECK_GT(message_->data_num_bytes(), offset_);
52 offset_ = other.offset_;
60 return static_cast<const char*>(message_->data()) + offset_;
63 size_t data_num_bytes() const { return message_->data_num_bytes() - offset_; }
65 size_t data_offset() const { return offset_; }
67 DCHECK_GT(message_->data_num_bytes(), offset_ + num_bytes);
68 offset_ += num_bytes;
80 size_t offset_; member in class:mojo::edk::__anon25145::MessageView
    [all...]

Completed in 899 milliseconds

1 23 4 5 6 7 8 910