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

1 2 3 4 5

  /external/v8/src/interpreter/
bytecode-label.h 18 BytecodeLabel() : bound_(false), offset_(kInvalidOffset) {}
21 size_t offset() const { return offset_; }
28 offset_ = offset;
33 DCHECK(!bound_ && offset != kInvalidOffset && offset_ == kInvalidOffset);
34 offset_ = offset;
42 // bound_ offset_
47 size_t offset_; member in class:v8::internal::interpreter::final
  /art/compiler/linker/
vector_output_stream.cc 24 : OutputStream(location), offset_(vector->size()), vector_(vector) {}
35 new_offset = offset_ + offset;
44 offset_ = new_offset;
45 return offset_;
vector_output_stream.h 35 if (static_cast<size_t>(offset_) == vector_->size()) {
38 offset_ += byte_count;
40 off_t new_offset = offset_ + byte_count;
42 memcpy(&(*vector_)[offset_], buffer, byte_count);
43 offset_ = new_offset;
61 off_t offset_; member in class:art::FINAL
  /external/sfntly/cpp/src/sfntly/table/
header.cc 26 offset_(0),
36 offset_(0),
46 offset_(offset),
58 return lhs->offset_ > rhs->offset_;
header.h 43 int32_t offset() { return offset_; }
76 int32_t offset_; member in class:sfntly::Header
  /external/libchrome/base/files/
dir_reader_linux.h 35 offset_(0),
54 linux_dirent* dirent = reinterpret_cast<linux_dirent*>(&buf_[offset_]);
55 offset_ += dirent->d_reclen;
58 if (offset_ != size_)
69 offset_ = 0;
78 reinterpret_cast<const linux_dirent*>(&buf_[offset_]);
93 size_t offset_; member in class:base::DirReaderLinux
  /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...]
  /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
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
overuse_estimator.h 40 return offset_;
58 double offset_; member in class:webrtc::OveruseEstimator
overuse_estimator.cc 32 offset_(options_.initial_offset),
65 if ((current_hypothesis == kBwOverusing && offset_ < prev_offset_) ||
66 (current_hypothesis == kBwUnderusing && offset_ > prev_offset_)) {
74 const double residual = t_ts_delta - slope_*h[0] - offset_;
113 prev_offset_ = offset_;
114 offset_ = offset_ + K[1] * residual;
  /external/webrtc/webrtc/common_audio/
sparse_fir_filter.cc 22 offset_(offset),
24 state_(sparsity_ * (num_nonzero_coeffs - 1) + offset_, 0.f) {
35 for (j = 0; i >= j * sparsity_ + offset_ &&
37 out[i] += in[i - j * sparsity_ - offset_] * nonzero_coeffs_[j];
sparse_fir_filter.h 43 const size_t offset_; member in class:webrtc::final
  /external/google-breakpad/src/common/dwarf/
dwarf2diehandler.cc 106 entry.offset_ = offset;
120 assert(entry->offset_ == offset);
131 if (entry->offset_ != offset)
143 assert(offset == current.offset_);
153 assert(offset == current.offset_);
163 assert(offset == current.offset_);
174 assert(offset == current.offset_);
184 assert(offset == current.offset_);
194 assert(offset == current.offset_);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/special_functions/detail/
fp_traits.hpp 209 std::memcpy(&a, reinterpret_cast<const unsigned char*>(&x) + offset_, 4);
214 std::memcpy(reinterpret_cast<unsigned char*>(&x) + offset_, &a, 4);
220 BOOST_STATIC_CONSTANT(int, offset_ = 0);
222 BOOST_STATIC_CONSTANT(int, offset_ = 4);
269 std::memcpy(&a, reinterpret_cast<const unsigned char*>(&x) + offset_, 4);
274 std::memcpy(reinterpret_cast<unsigned char*>(&x) + offset_, &a, 4);
280 BOOST_STATIC_CONSTANT(int, offset_ = 0);
282 BOOST_STATIC_CONSTANT(int, offset_ = 4);
376 std::memcpy(&a, reinterpret_cast<const unsigned char*>(&x) + offset_, 4);
381 std::memcpy(reinterpret_cast<unsigned char*>(&x) + offset_, &a, 4)
    [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
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_nalu.cc 273 : start_(annexb_buffer), offset_(0), next_offset_(0), length_(length) {
275 offset_ = FindNextNaluHeader(start_, length_, 0);
277 FindNextNaluHeader(start_, length_, offset_ + sizeof(kAnnexBHeaderBytes));
287 size_t data_offset = offset_ + sizeof(kAnnexBHeaderBytes);
293 offset_ = next_offset_;
295 FindNextNaluHeader(start_, length_, offset_ + sizeof(kAnnexBHeaderBytes));
300 return length_ - offset_;
330 : start_(avcc_buffer), offset_(0), length_(length) {
341 memcpy(start_ + offset_, &big_endian_length, sizeof(big_endian_length));
342 offset_ += sizeof(big_endian_length)
    [all...]
h264_video_toolbox_nalu.h 70 size_t offset_; member in class:webrtc::final
92 size_t offset_; member in class:webrtc::final
  /external/ImageMagick/Magick++/lib/Magick++/
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_);
  /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
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
advance.hpp 39 typedef typename if_< backward_, negate<N>, N >::type offset_; typedef in struct:boost::mpl::advance_impl::apply
43 , aux::advance_backward< BOOST_MPL_AUX_VALUE_WKND(offset_)::value >
44 , aux::advance_forward< BOOST_MPL_AUX_VALUE_WKND(offset_)::value >
  /art/runtime/mirror/
string-inl.h 62 : count_(count), src_array_(src_array), offset_(offset), high_byte_(high_byte) {
71 const uint8_t* const src = reinterpret_cast<uint8_t*>(src_array_->GetData()) + offset_;
80 const int32_t offset_; member in class:art::mirror::SetStringCountAndBytesVisitor
89 count_(count), src_array_(src_array), offset_(offset) {
97 const uint16_t* const src = src_array_->GetData() + offset_;
104 const int32_t offset_; member in class:art::mirror::SetStringCountAndValueVisitorFromCharArray
112 count_(count), src_string_(src_string), offset_(offset) {
120 const uint16_t* const src = src_string_->GetValue() + offset_;
127 const int32_t offset_; member in class:art::mirror::SetStringCountAndValueVisitorFromString
  /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};
  /art/runtime/
art_field.cc 33 ArtField::ArtField() : access_flags_(0), field_dex_idx_(0), offset_(0) {
47 offset_ = num_bytes.Uint32Value();
  /bionic/libc/malloc_debug/
GuardData.h 70 size_t offset() { return offset_; }
75 size_t offset_ = 0; member in class:FrontGuardData

Completed in 1334 milliseconds

1 2 3 4 5