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

  /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...]
  /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/patchoat/
patchoat.h 63 : oat_file_(oat_file), image_(nullptr), bitmap_(nullptr), heap_(nullptr), delta_(delta),
67 : image_(image), bitmap_(bitmap), heap_(heap),
72 : oat_file_(oat_file), image_(image), bitmap_(bitmap), heap_(heap),
136 DCHECK_LT(heap_off, image_->Size());
137 return reinterpret_cast<T*>(image_->Begin() + heap_off);
192 const MemMap* const image_; member in class:art::PatchOat
patchoat.cc 331 CHECK(image_ != nullptr);
333 size_t expect = image_->Size();
334 if (out->WriteFully(reinterpret_cast<char*>(image_->Begin()), expect) &&
470 temp_table.ReadFromMemory(image_->Begin() + section.Offset());
515 ImageHeader* image_header = reinterpret_cast<ImageHeader*>(image_->Begin());
516 CHECK_GT(image_->Size(), sizeof(ImageHeader));
    [all...]
  /art/dex2oat/
dex2oat.cc 518 image_(false),
1892 bool image_; member in class:art::FINAL
    [all...]
  /art/compiler/
image_writer.cc 190 ImageHeader* image_header = reinterpret_cast<ImageHeader*>(image_->Begin());
203 if (!image_file->WriteFully(image_->Begin(), write_count)) {
524 image_.reset(MemMap::MapAnonymous("image writer image", nullptr, length, PROT_READ | PROT_WRITE,
526 if (UNLIKELY(image_.get() == nullptr)) {
534 "image bitmap", image_->Begin(), RoundUp(image_end_, kPageSize)));
    [all...]
image_writer.h 195 uint8_t* dst = image_->Begin() + offset;
298 // Offset to the free space in image_.
301 // Offset from image_begin_ to where the first object is in image_.
311 std::unique_ptr<MemMap> image_; member in class:art::FINAL
  /art/compiler/driver/
compiler_driver.h 156 return image_;
644 const bool image_; member in class:art::CompilerDriver
646 // If image_ is true, specifies the classes that will be included in
    [all...]
compiler_driver.cc 373 image_(image),
401 CHECK_EQ(image_, image_classes_.get() != nullptr);
    [all...]

Completed in 468 milliseconds