/external/libchrome/sandbox/win/src/ |
D | crosscall_params.h | 68 uint32_t offset_; member 193 param_info_[0].offset_ = in ActualCallParams() 201 param_info_[0].offset_ = in ActualCallParams() 208 uint32_t previous_size = param_info_[NUMBER_PARAMS].offset_; in OverrideSize() 209 param_info_[NUMBER_PARAMS].offset_ = new_size; in OverrideSize() 234 (param_info_[index].offset_ > (sizeof(*this) - size))) { in CopyParamIn() 239 char* dest = reinterpret_cast<char*>(this) + param_info_[index].offset_; in CopyParamIn() 255 param_info_[index + 1].offset_ = Align(param_info_[index].offset_ + in CopyParamIn() 264 return reinterpret_cast<char*>(this) + param_info_[index].offset_; in GetParamPtr() 269 uint32_t GetSize() const { return param_info_[NUMBER_PARAMS].offset_; } in GetSize()
|
/external/libchrome/base/files/ |
D | dir_reader_linux.h | 35 offset_(0), in DirReaderLinux() 54 linux_dirent* dirent = reinterpret_cast<linux_dirent*>(&buf_[offset_]); in Next() 55 offset_ += dirent->d_reclen; in Next() 58 if (offset_ != size_) in Next() 69 offset_ = 0; in Next() 78 reinterpret_cast<const linux_dirent*>(&buf_[offset_]); in name() 93 size_t offset_; variable
|
/external/google-breakpad/src/common/dwarf/ |
D | dwarf2diehandler.cc | 106 entry.offset_ = offset; in StartDIE() 120 assert(entry->offset_ == offset); in EndDIE() 131 if (entry->offset_ != offset) in EndDIE() 143 assert(offset == current.offset_); in ProcessAttributeUnsigned() 153 assert(offset == current.offset_); in ProcessAttributeSigned() 163 assert(offset == current.offset_); in ProcessAttributeReference() 174 assert(offset == current.offset_); in ProcessAttributeBuffer() 184 assert(offset == current.offset_); in ProcessAttributeString() 194 assert(offset == current.offset_); in ProcessAttributeSignature()
|
/external/webrtc/webrtc/modules/video_coding/codecs/h264/ |
D | h264_video_toolbox_nalu.cc | 273 : start_(annexb_buffer), offset_(0), next_offset_(0), length_(length) { in AnnexBBufferReader() 275 offset_ = FindNextNaluHeader(start_, length_, 0); in AnnexBBufferReader() 277 FindNextNaluHeader(start_, length_, offset_ + sizeof(kAnnexBHeaderBytes)); in AnnexBBufferReader() 287 size_t data_offset = offset_ + sizeof(kAnnexBHeaderBytes); in ReadNalu() 293 offset_ = next_offset_; in ReadNalu() 295 FindNextNaluHeader(start_, length_, offset_ + sizeof(kAnnexBHeaderBytes)); in ReadNalu() 300 return length_ - offset_; in BytesRemaining() 330 : start_(avcc_buffer), offset_(0), length_(length) { in AvccBufferWriter() 341 memcpy(start_ + offset_, &big_endian_length, sizeof(big_endian_length)); in WriteNalu() 342 offset_ += sizeof(big_endian_length); in WriteNalu() [all …]
|
D | h264_video_toolbox_nalu.h | 70 size_t offset_; variable 92 size_t offset_; variable
|
/external/sfntly/cpp/src/sfntly/table/ |
D | header.cc | 26 offset_(0), in Header() 36 offset_(0), in Header() 46 offset_(offset), in Header() 58 return lhs->offset_ > rhs->offset_; in operator ()()
|
D | header.h | 43 int32_t offset() { return offset_; } in offset() 76 int32_t offset_; variable
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/ |
D | overuse_estimator.cc | 32 offset_(options_.initial_offset), in OveruseEstimator() 65 if ((current_hypothesis == kBwOverusing && offset_ < prev_offset_) || in Update() 66 (current_hypothesis == kBwUnderusing && offset_ > prev_offset_)) { in Update() 74 const double residual = t_ts_delta - slope_*h[0] - offset_; in Update() 113 prev_offset_ = offset_; in Update() 114 offset_ = offset_ + K[1] * residual; in Update()
|
D | overuse_estimator.h | 40 return offset_; in offset() 58 double offset_; variable
|
/external/ImageMagick/Magick++/lib/ |
D | Geometry.cpp | 493 Magick::Offset::Offset(const char *offset_) in Offset() argument 497 *this=offset_; // Use assignment operator in Offset() 500 Magick::Offset::Offset(const Offset &offset_) in Offset() argument 501 : _x(offset_._x), in Offset() 502 _y(offset_._y) in Offset() 506 Magick::Offset::Offset(const std::string &offset_) in Offset() argument 510 *this=offset_; // Use assignment operator in Offset() 523 const Magick::Offset& Magick::Offset::operator=(const char *offset_) in operator =() argument 531 flags=ParseGeometry(offset_,&geometry_info); in operator =() 539 Magick::Offset& Magick::Offset::operator=(const Offset &offset_) in operator =() argument [all …]
|
/external/webrtc/webrtc/common_audio/ |
D | sparse_fir_filter.cc | 22 offset_(offset), in SparseFIRFilter() 24 state_(sparsity_ * (num_nonzero_coeffs - 1) + offset_, 0.f) { in SparseFIRFilter() 35 for (j = 0; i >= j * sparsity_ + offset_ && in Filter() 37 out[i] += in[i - j * sparsity_ - offset_] * nonzero_coeffs_[j]; in Filter()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Geometry.h | 157 Offset(const char *offset_); 160 Offset(const Offset &offset_); 163 Offset(const std::string &offset_); 172 const Offset& operator=(const char *offset_); 175 Offset& operator=(const Offset& offset_); 178 const Offset& operator=(const std::string &offset_);
|
/external/v8/src/compiler/ |
D | frame.h | 199 inline bool from_stack_pointer() { return (offset_ & 1) == kFromSp; } in from_stack_pointer() 200 inline bool from_frame_pointer() { return (offset_ & 1) == kFromFp; } in from_frame_pointer() 201 inline int offset() { return offset_ & ~1; } in offset() 214 explicit FrameOffset(int offset) : offset_(offset) {} in FrameOffset() 216 int offset_; // Encodes SP or FP in the low order bit. variable
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
D | indented_text.cc | 20 IndentedText::IndentedText() : offset_(0) {} in IndentedText() 41 contents_.emplace_back(line, shift + offset_); in AddLineWithOffset() 125 offset_ += shift; in PushOffset() 131 offset_ -= offset_history_.back(); in PopOffset() 136 offset_ = 0; in Reset()
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | consuming_buffers.hpp | 61 offset_(0), in consuming_buffers_iterator() 113 || offset_ + buffer_size(first_) >= max_size_) in increment() 119 offset_ += buffer_size(first_); in increment() 120 first_ = buffer(*begin_remainder_++, max_size_ - offset_); in increment() 146 std::size_t offset_; member in asio::detail::consuming_buffers_iterator
|
/external/opencv3/3rdparty/libwebp/demux/ |
D | demux.c | 43 size_t offset_; member 230 frame->img_components_[1].offset_ = chunk_start_offset; in StoreFrame() 257 frame->img_components_[0].offset_ = chunk_start_offset; in StoreFrame() 388 chunk->data_.offset_ = start_offset; in StoreChunk() 444 frame->img_components_[1].offset_ = 0; in ParseSingleImage() 627 if (alpha->size_ > 0 && alpha->offset_ > image->offset_) { in IsValidExtendedFormat() 638 alpha->offset_ > image->offset_) { in IsValidExtendedFormat() 776 size_t start_offset = image->offset_; in GetFramePayload() 782 const size_t inter_size = (image->offset_ > 0) in GetFramePayload() 783 ? image->offset_ - (alpha->offset_ + alpha->size_) in GetFramePayload() [all …]
|
/external/webp/src/demux/ |
D | demux.c | 39 size_t offset_; member 199 frame->img_components_[0].offset_ = start_offset; in SetFrameInfo() 235 frame->img_components_[1].offset_ = chunk_start_offset; in StoreFrame() 356 chunk->data_.offset_ = start_offset; in StoreChunk() 411 frame->img_components_[1].offset_ = 0; in ParseSingleImage() 617 if (alpha->size_ > 0 && alpha->offset_ > image->offset_) { in IsValidExtendedFormat() 628 alpha->offset_ > image->offset_) { in IsValidExtendedFormat() 807 size_t start_offset = image->offset_; in GetFramePayload() 813 const size_t inter_size = (image->offset_ > 0) in GetFramePayload() 814 ? image->offset_ - (alpha->offset_ + alpha->size_) in GetFramePayload() [all …]
|
/external/v8/src/mips/ |
D | assembler-mips.cc | 215 offset_ = offset; in MemOperand() 221 offset_ = unit * multiplier + offset_addend; in MemOperand() 1726 lui(at, (src.offset_ >> kLuiShift) & kImm16Mask); in LoadRegPlusOffsetToAt() 1727 ori(at, at, src.offset_ & kImm16Mask); // Load 32-bit offset. in LoadRegPlusOffsetToAt() 1733 if (is_int16(rs.offset_)) { in lb() 1734 GenInstrImmediate(LB, rs.rm(), rd, rs.offset_); in lb() 1743 if (is_int16(rs.offset_)) { in lbu() 1744 GenInstrImmediate(LBU, rs.rm(), rd, rs.offset_); in lbu() 1753 if (is_int16(rs.offset_)) { in lh() 1754 GenInstrImmediate(LH, rs.rm(), rd, rs.offset_); in lh() [all …]
|
/external/v8/src/interpreter/ |
D | bytecode-array-builder.h | 349 BytecodeLabel() : bound_(false), offset_(kInvalidOffset) {} in BytecodeLabel() 352 size_t offset() const { return offset_; } in offset() 359 offset_ = offset; in bind_to() 364 DCHECK(!bound_ && offset != kInvalidOffset && offset_ == kInvalidOffset); in set_referrer() 365 offset_ = offset; in set_referrer() 378 size_t offset_; variable
|
/external/sfntly/cpp/src/sfntly/table/bitmap/ |
D | index_sub_table_format4.h | 30 int32_t offset() const { return offset_; } in offset() 37 int32_t offset_; variable 45 void set_offset(int32_t v) { offset_ = v; } in set_offset()
|
/external/v8/src/mips64/ |
D | assembler-mips64.cc | 193 offset_ = offset; in MemOperand() 200 offset_ = unit * multiplier + offset_addend; in MemOperand() 1925 DCHECK(is_int32(src.offset_)); in LoadRegPlusOffsetToAt() 1926 daddiu(at, zero_reg, (src.offset_ >> kLuiShift) & kImm16Mask); in LoadRegPlusOffsetToAt() 1928 ori(at, at, src.offset_ & kImm16Mask); // Load 32-bit offset. in LoadRegPlusOffsetToAt() 1934 if (is_int16(rs.offset_)) { in lb() 1935 GenInstrImmediate(LB, rs.rm(), rd, rs.offset_); in lb() 1944 if (is_int16(rs.offset_)) { in lbu() 1945 GenInstrImmediate(LBU, rs.rm(), rd, rs.offset_); in lbu() 1954 if (is_int16(rs.offset_)) { in lh() [all …]
|
/external/v8/src/ |
D | unicode.h | 72 inline CacheEntry() : code_point_(kNoChar), offset_(0) { } in CacheEntry() 75 offset_(offset) { } in CacheEntry() 77 signed offset_; member
|
/external/google-breakpad/src/common/ |
D | dwarf_cu_to_module.cc | 228 offset_(offset), in GenericDIEHandler() 263 uint64 offset_; member in google_breakpad::DwarfCUToModule::GenericDIEHandler 311 cu_context_->reporter->UnhandledInterCUReference(offset_, data); in ProcessAttributeReference() 330 cu_context_->reporter->UnknownSpecification(offset_, data); in ProcessAttributeReference() 427 cu_context_->file_context->file_private_->specifications[offset_] = spec; in ComputeQualifiedName() 513 cu_context_->reporter->UnknownAbstractOrigin(offset_, data); in ProcessAttributeReference() 549 cu_context_->reporter->UnnamedFunction(offset_); in Finish() 565 cu_context_->file_context->file_private_->origins[offset_] = origin; in Finish()
|
/external/deqp/modules/glshared/ |
D | glsCalibration.hpp | 44 LineParameters (float offset_, float coefficient_) : offset(offset_), coefficient(coefficient_) {} in LineParameters()
|
/external/google-breakpad/src/common/linux/ |
D | synth_elf.h | 144 : Section(section), type_(type), addr_(addr), offset_(offset) in ElfSection() 150 uint32_t offset_; member
|