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

12 3 4

  /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; }
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
printer.h 301 size_t offset_; member in class:google::protobuf::io::Printer
  /system/core/libunwindstack/include/unwindstack/
Memory.h 85 size_t offset_ = 0; member in class:unwindstack::MemoryFileAtOffset
  /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
  /system/update_engine/payload_generator/
full_update_generator.cc 58 offset_(offset),
79 off_t offset_; member in class:chromeos_update_engine::__anon115321::ChunkProcessor
89 LOG(ERROR) << "Error processing region at " << offset_ << " of size "
101 offset_,
  /external/google-breakpad/src/common/linux/
synth_elf.h 144 : Section(section), type_(type), addr_(addr), offset_(offset)
150 uint32_t offset_; member in struct:google_breakpad::synth_elf::ELF::ElfSection
  /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/sfntly/cpp/src/sfntly/table/
header.h 43 int32_t offset() { return offset_; }
76 int32_t offset_; member in class:sfntly::Header
  /external/stressapptest/src/
error_diag.h 112 int offset_; // offset. member in class:HDDMiscompareErrorInstance
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/error/
error.h 104 ParseResult() : code_(kParseErrorNone), offset_(0) {}
106 ParseResult(ParseErrorCode code, size_t offset) : code_(code), offset_(offset) {}
111 size_t Offset() const { return offset_; }
125 void Set(ParseErrorCode code, size_t offset = 0) { code_ = code; offset_ = offset; }
129 size_t offset_; member in struct:ParseResult
  /toolchain/binutils/binutils-2.25/gold/
nacl.h 38 : file_(input_file->file()), offset_(offset)
45 : offset_(file_offset), size_(data_size)
49 { return this->offset_; }
55 off_t offset_; member in class:gold::Sniff_file::Location
75 return View(this->file_, this->offset_ + file_offset, data_size);
89 off_t offset_; member in class:gold::Sniff_file
stringpool.h 204 && this->offset_ == sizeof(Stringpool_char));
206 this->offset_ = 0;
411 section_offset_type offset_; member in class:gold::Stringpool_template
  /art/runtime/mirror/
string-inl.h 65 : count_(count), src_array_(src_array), offset_(offset), high_byte_(high_byte) {
75 const uint8_t* const src = reinterpret_cast<uint8_t*>(src_array_->GetData()) + offset_;
92 const int32_t offset_; member in class:art::mirror::SetStringCountAndBytesVisitor
101 count_(count), src_array_(src_array), offset_(offset) {
109 const uint16_t* const src = src_array_->GetData() + offset_;
123 const int32_t offset_; member in class:art::mirror::SetStringCountAndValueVisitorFromCharArray
132 count_(count), src_string_(src_string), offset_(offset) {
143 const uint8_t* const src = src_string_->GetValueCompressed() + offset_;
146 const uint16_t* const src = src_string_->GetValue() + offset_;
160 const int32_t offset_; member in class:art::mirror::SetStringCountAndValueVisitorFromString
    [all...]
  /external/eigen/unsupported/test/
cxx11_tensor_reduction.cpp 302 UserReducer(float offset) : offset_(offset) {}
305 float finalize(const float accum) const { return 1.0f / (accum + offset_); }
308 const float offset_; member in struct:UserReducer
  /external/flatbuffers/include/flatbuffers/
reflection.h 331 : offset_(reinterpret_cast<uint8_t *>(ptr) -
337 reinterpret_cast<uint8_t *>(vec_.data()) + offset_);
344 size_t offset_; member in class:flatbuffers::pointer_inside_vector
  /external/libchrome/sandbox/win/src/
crosscall_params.h 68 uint32_t offset_; member in struct:sandbox::ParamInfo
193 param_info_[0].offset_ =
201 param_info_[0].offset_ =
208 uint32_t previous_size = param_info_[NUMBER_PARAMS].offset_;
209 param_info_[NUMBER_PARAMS].offset_ = new_size;
234 (param_info_[index].offset_ > (sizeof(*this) - size))) {
239 char* dest = reinterpret_cast<char*>(this) + param_info_[index].offset_;
255 param_info_[index + 1].offset_ = Align(param_info_[index].offset_ +
264 return reinterpret_cast<char*>(this) + param_info_[index].offset_;
    [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::__anon23691::MessageView
    [all...]
channel_win.cc 36 offset_(offset) {
37 DCHECK_GT(message_->data_num_bytes(), offset_);
44 offset_ = other.offset_;
51 return static_cast<const char*>(message_->data()) + offset_;
54 size_t data_num_bytes() const { return message_->data_num_bytes() - offset_; }
56 size_t data_offset() const { return offset_; }
58 DCHECK_GE(message_->data_num_bytes(), offset_ + num_bytes);
59 offset_ += num_bytes;
66 size_t offset_; member in class:mojo::edk::__anon23692::MessageView
    [all...]
  /external/v8/src/compiler/
frame.h 158 inline bool from_stack_pointer() { return (offset_ & 1) == kFromSp; }
159 inline bool from_frame_pointer() { return (offset_ & 1) == kFromFp; }
160 inline int offset() { return offset_ & ~1; }
173 explicit FrameOffset(int offset) : offset_(offset) {}
175 int offset_; // Encodes SP or FP in the low order bit. member in class:v8::internal::compiler::FrameOffset
store-store-elimination.cc 79 StoreOffset offset_; member in struct:v8::internal::compiler::__anon35926::UnobservableStore
530 if (obs.offset_ != offset) {
553 return (id_ == other.id_) && (offset_ == other.offset_);
561 return (id_ < other.id_) || (id_ == other.id_ && offset_ < other.offset_);
  /external/v8/src/
messages.h 123 int offset_; member in class:v8::internal::JSStackFrame
165 int offset_; member in class:v8::internal::WasmStackFrame
    [all...]
unicode.h 72 inline CacheEntry() : code_point_(kNoChar), offset_(0) { }
75 offset_(offset) { }
77 signed offset_; member in struct:unibrow::Mapping::CacheEntry
  /external/vixl/examples/aarch32/
disasm-a32.cc 52 int32_t offset_; member in class:Symbol
64 offset_(offset),
70 offset_(ref.offset_),
76 Elf32_Addr GetMemoryAddress() const { return (addr_ & ~1) + offset_; }
  /system/extras/perfprofd/quipper/
perf_parser.h 67 uint64_t offset_; member in struct:quipper::ParsedEvent::DSOAndOffset
81 return offset_;
85 offset_(0) {}
  /art/compiler/optimizing/
nodes_vector.h 32 Alignment(size_t base, size_t offset) : base_(base), offset_(offset) {
42 return ((offset_ | base_) & (base - 1u)) == 0;
46 return "ALIGN(" + std::to_string(base_) + "," + std::to_string(offset_) + ")";
50 return base_ == other.base_ && offset_ == other.offset_;
55 size_t offset_; member in class:art::Alignment

Completed in 932 milliseconds

12 3 4