Searched refs:raw_ (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/ |
D | vp9_impl.cc | 71 raw_(NULL), in VP9EncoderImpl() 105 if (raw_ != NULL) { in Release() 106 vpx_img_free(raw_); in Release() 107 raw_ = NULL; in Release() 281 raw_ = vpx_img_wrap(NULL, VPX_IMG_FMT_I420, codec_.width, codec_.height, 1, in InitEncode() 492 RTC_DCHECK_EQ(input_image.width(), static_cast<int>(raw_->d_w)); in Encode() 493 RTC_DCHECK_EQ(input_image.height(), static_cast<int>(raw_->d_h)); in Encode() 503 raw_->planes[VPX_PLANE_Y] = const_cast<uint8_t*>(input_image.buffer(kYPlane)); in Encode() 504 raw_->planes[VPX_PLANE_U] = const_cast<uint8_t*>(input_image.buffer(kUPlane)); in Encode() 505 raw_->planes[VPX_PLANE_V] = const_cast<uint8_t*>(input_image.buffer(kVPlane)); in Encode() [all …]
|
D | vp9_impl.h | 115 vpx_image_t* raw_; variable
|
/external/v8/src/compiler/ |
D | source-position.h | 19 explicit SourcePosition(int raw = kUnknownPosition) : raw_(raw) {} in raw_() function 25 int raw() const { return raw_; } in raw() 29 int raw_; variable
|
/external/v8/src/parsing/ |
D | parser.h | 598 : cooked_(8, zone), raw_(8, zone), expressions_(8, zone), pos_(pos) {} in TemplateLiteral() 601 const ZoneList<Expression*>* raw() const { return &raw_; } in raw() 609 raw_.Add(raw, zone); in AddTemplateSpan() 619 ZoneList<Expression*> raw_; variable
|