HomeSort by relevance Sort by last modified time
    Searched defs:image_ (Results 1 - 14 of 14) sorted by null

  /external/webrtc/talk/media/devices/
carbonvideorenderer.h 62 rtc::scoped_ptr<uint8_t[]> image_; member in class:cricket::CarbonVideoRenderer
gtkvideorenderer.h 61 rtc::scoped_ptr<uint8_t[]> image_; member in class:cricket::GtkVideoRenderer
gdivideorenderer.cc 103 rtc::scoped_ptr<uint8_t[]> image_; member in class:cricket::GdiVideoRenderer::VideoWindow
126 image_.reset(new uint8_t[bmi_.bmiHeader.biSizeImage]);
212 image_.get(), &bmi_, DIB_RGB_COLORS, SRCCOPY);
240 image_.reset(new uint8_t[bmi_.bmiHeader.biSizeImage]);
249 frame->ConvertToRgbBuffer(cricket::FOURCC_ARGB, image_.get(),
  /external/webrtc/webrtc/modules/desktop_capture/
mouse_cursor.h 33 void set_image(DesktopFrame* image) { image_.reset(image); }
34 const DesktopFrame* image() const { return image_.get(); }
40 rtc::scoped_ptr<DesktopFrame> image_; member in class:webrtc::MouseCursor
  /external/drm_hwcomposer/
autogl.h 58 : display_(display), image_(image) {
64 image_ = rhs.image_;
66 rhs.image_ = EGL_NO_IMAGE_KHR;
77 std::swap(image_, rhs.image_);
84 image_ = image;
88 if (image_ != EGL_NO_IMAGE_KHR) {
89 eglDestroyImageKHR(display_, image_);
91 image_ = EGL_NO_IMAGE_KHR
101 EGLImageKHR image_ = EGL_NO_IMAGE_KHR; member in struct:android::AutoEGLDisplayImage
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
packet_manipulator_unittest.cc 31 EncodedImage image_; member in class:webrtc::test::PacketManipulatorTest
36 image_._buffer = packet_data_;
37 image_._length = kPacketDataLength;
38 image_._size = kPacketDataLength;
63 EXPECT_EQ(expected_packet_data_length, image_._length);
75 int nbr_packets_dropped = manipulator.ManipulatePackets(&image_);
77 image_);
82 image_._length = data_length;
84 int nbr_packets_dropped = manipulator.ManipulatePackets(&image_);
86 VerifyPacketLoss(0, nbr_packets_dropped, data_length, packet_data_, image_);
    [all...]
  /art/patchoat/
patchoat.h 61 : image_(image), bitmap_(bitmap), heap_(heap),
116 DCHECK_LT(heap_off, image_->Size());
117 return reinterpret_cast<T*>(image_->Begin() + heap_off);
177 const MemMap* const image_; member in class:art::PatchOat
  /external/webrtc/webrtc/examples/peerconnection/client/linux/
main_wnd.h 84 const uint8_t* image() const { return image_.get(); }
95 rtc::scoped_ptr<uint8_t[]> image_; member in class:GtkMainWnd::VideoRenderer
  /packages/apps/Camera2/jni/
tinyplanet.cc 31 : image_(image), width_(width), height_(height) {
45 return image_ + y * width_step_ + x * 4;
48 return image_ + y * width_step_ + x * 4;
52 unsigned char* image_; member in class:ImageRGBA
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 30 : image_(image), width_(width), height_(height) {
44 return image_ + y * width_step_ + x * 4;
47 return image_ + y * width_step_ + x * 4;
51 unsigned char* image_; member in class:ImageRGBA
  /art/dexoptanalyzer/
dexoptanalyzer.cc 157 image_ = option.substr(strlen("--image=")).ToString();
168 if (image_.empty()) {
172 image_ = GetDefaultBootImageLocation(&error_msg);
174 if (image_.empty()) {
184 std::string img = "-Ximage:" + image_;
250 std::string image_; member in class:art::FINAL
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.h 124 const uint8_t* image() const { return image_.get(); }
134 rtc::scoped_ptr<uint8_t[]> image_; member in class:MainWnd::VideoRenderer
  /external/opencv/cxcore/include/
cvwimage.h 185 IplImage* Ipl() {return image_; }
186 const IplImage* Ipl() const {return image_; }
187 T* ImageData() { return reinterpret_cast<T*>(image_->imageData); }
189 return reinterpret_cast<const T*>(image_->imageData);
192 int Width() const {return image_->width; }
193 int Height() const {return image_->height; }
196 int WidthStep() const {return image_->widthStep; }
198 int Channels() const {return image_->nChannels; }
210 return reinterpret_cast<T*>(image_->imageData + r*image_->widthStep)
251 IplImage* image_; member in class:cv::WImage
536 WImage<T>::image_ = cvCreateImage(cvSize(width, height), member in class:cv::WImage
    [all...]
  /art/compiler/
image_writer.h 270 std::unique_ptr<MemMap> image_; // Memory mapped for generating the image. member in struct:art::FINAL::ImageInfo
273 // of the target image, not necessarily where image_ is mapped. The address is only valid
277 // Offset to the free space in image_, initially size of image header.
370 uint8_t* dst = image_info.image_->Begin() + offset;
558 // Offset from image_begin_ to where the first object is in image_.

Completed in 333 milliseconds