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

  /external/v8/src/compiler/
source-position.h 19 explicit SourcePosition(int raw = kUnknownPosition) : raw_(raw) {}
25 int raw() const { return raw_; }
29 int raw_; member in class:v8::internal::compiler::final
  /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
  /external/v8/src/parsing/
parser.h 598 : cooked_(8, zone), raw_(8, zone), expressions_(8, zone), pos_(pos) {}
601 const ZoneList<Expression*>* raw() const { return &raw_; }
609 raw_.Add(raw, zone);
619 ZoneList<Expression*> raw_; member in class:v8::internal::ParserTraits::TemplateLiteral
    [all...]

Completed in 111 milliseconds