HomeSort by relevance Sort by last modified time
    Searched refs:raw_ (Results 1 - 5 of 5) sorted by null

  /system/core/libunwindstack/include/unwindstack/
Memory.h 74 void Resize(size_t size) { raw_.resize(size); }
76 uint64_t Size() { return raw_.size(); }
79 std::vector<uint8_t> raw_; member in class:unwindstack::MemoryBuffer
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.cc 71 raw_(NULL),
105 if (raw_ != NULL) {
106 vpx_img_free(raw_);
107 raw_ = NULL;
281 raw_ = vpx_img_wrap(NULL, VPX_IMG_FMT_I420, codec_.width, codec_.height, 1,
492 RTC_DCHECK_EQ(input_image.width(), static_cast<int>(raw_->d_w));
493 RTC_DCHECK_EQ(input_image.height(), static_cast<int>(raw_->d_h));
503 raw_->planes[VPX_PLANE_Y] = const_cast<uint8_t*>(input_image.buffer(kYPlane));
504 raw_->planes[VPX_PLANE_U] = const_cast<uint8_t*>(input_image.buffer(kUPlane));
505 raw_->planes[VPX_PLANE_V] = const_cast<uint8_t*>(input_image.buffer(kVPlane))
    [all...]
vp9_impl.h 115 vpx_image_t* raw_; member in class:webrtc::VP9EncoderImpl
  /system/core/libunwindstack/
Memory.cpp 178 if (addr >= raw_.size()) {
182 size_t bytes_left = raw_.size() - static_cast<size_t>(addr);
183 const unsigned char* actual_base = static_cast<const unsigned char*>(raw_.data()) + addr;
191 if (offset < raw_.size()) {
192 return &raw_[offset];
  /external/v8/src/parsing/
parser.h 572 : cooked_(8, zone), raw_(8, zone), expressions_(8, zone), pos_(pos) {}
575 const ZoneList<Expression*>* raw() const { return &raw_; }
583 raw_.Add(raw, zone);
593 ZoneList<Expression*> raw_; member in class:v8::internal::Parser::TemplateLiteral
    [all...]

Completed in 181 milliseconds