Searched defs:planes (Results 1 - 25 of 66) sorted by relevance

123

/external/drm_hwcomposer/
H A Ddrmresources.h46 const std::vector<std::unique_ptr<DrmPlane>> &planes() const { function in class:android::DrmResources
H A Dplatform.cpp44 std::vector<DrmPlane *> planes = local
46 if (planes.empty()) {
47 ALOGE("Display %d has no usable planes", crtc->display());
54 if (!planes.empty()) {
55 squash_plane = planes.back();
56 planes.pop_back();
58 ALOGI("Not enough planes to reserve for squash fb");
64 if (layers.size() > planes.size()) {
65 if (!planes.empty()) {
66 precomp_plane = planes
91 ProvisionPlanes( std::vector<DrmCompositionPlane> *composition, std::map<size_t, DrmHwcLayer *> &layers, DrmCrtc *crtc, std::vector<DrmPlane *> *planes) argument
143 ProvisionPlanes( std::vector<DrmCompositionPlane> *composition, std::map<size_t, DrmHwcLayer *> &layers, DrmCrtc *crtc, std::vector<DrmPlane *> *planes) argument
171 ProvisionPlanes( std::vector<DrmCompositionPlane> *composition, std::map<size_t, DrmHwcLayer *> &layers, DrmCrtc *crtc, std::vector<DrmPlane *> *planes) argument
[all...]
H A Dplatform.h64 std::vector<DrmPlane *> *planes) = 0;
67 // Removes and returns the next available plane from planes
68 static DrmPlane *PopPlane(std::vector<DrmPlane *> *planes) { argument
69 if (planes->empty())
71 DrmPlane *plane = planes->front();
72 planes->erase(planes->begin());
88 std::vector<DrmPlane *> *planes,
91 DrmPlane *plane = PopPlane(planes);
113 // Takes a stack of layers and provisions hardware planes fo
87 Emplace(std::vector<DrmCompositionPlane> *composition, std::vector<DrmPlane *> *planes, DrmCompositionPlane::Type type, DrmCrtc *crtc, size_t source_layer) argument
[all...]
/external/skia/tests/
H A DYUVTest.cpp64 void* planes[3]; local
65 planes[0] = storage.get();
66 planes[1] = SkTAddOffset<void>(planes[0],
68 planes[2] = SkTAddOffset<void>(planes[1],
75 codec->getYUV8Planes(info, planes));
H A DImageGeneratorTest.cpp55 void* planes[3] = { nullptr }; local
65 planes[SkYUVSizeInfo::kY] = planes[SkYUVSizeInfo::kU] = planes[SkYUVSizeInfo::kV] = &dummy;
66 ig.getYUV8Planes(sizeInfo, planes);
/external/skia/src/codec/
H A DSkCodecImageGenerator.cpp58 bool SkCodecImageGenerator::onGetYUV8Planes(const SkYUVSizeInfo& sizeInfo, void* planes[3]) { argument
59 SkCodec::Result result = fCodec->getYUV8Planes(sizeInfo, planes);
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkImageUtil.hpp101 Plane planes[MAX_PLANES]; member in struct:vk::PlanarFormatDescription
/external/dng_sdk/source/
H A Ddng_simple_image.cpp26 uint32 planes,
31 planes,
40 ComputeBufferSize (pixelType, bounds.Size (), planes, pad16Bytes);
44 fBuffer = dng_pixel_buffer (bounds, 0, planes, pixelType, pcInterleaved, fMemory->Buffer ());
25 dng_simple_image(const dng_rect &bounds, uint32 planes, uint32 pixelType, dng_memory_allocator &allocator) argument
H A Ddng_host.cpp342 uint32 planes,
347 planes,
341 Make_dng_image(const dng_rect &bounds, uint32 planes, uint32 pixelType) argument
H A Ddng_image.h140 // Number of image planes.
176 uint32 planes,
213 /// Getter method for number of planes in an image.
283 /// \param planes Number of planes to copy.
289 uint32 planes);
295 /// \param planes Number of planes to copy.
300 uint32 planes)
303 CopyArea (src, area, plane, plane, planes);
297 CopyArea(const dng_image &src, const dng_rect &area, uint32 plane, uint32 planes) argument
[all...]
H A Ddng_lens_correction.cpp47 dng_warp_params::dng_warp_params (uint32 planes, argument
50 : fPlanes (planes)
55 DNG_ASSERT (planes >= 1, "Too few planes." );
56 DNG_ASSERT (planes <= kMaxColorPlanes, "Too many planes.");
318 dng_warp_params_rectilinear::dng_warp_params_rectilinear (uint32 planes, argument
323 : dng_warp_params (planes,
735 dng_warp_params_fisheye::dng_warp_params_fisheye (uint32 planes,
739 : dng_warp_params (planes, cente
[all...]
/external/libdrm/tests/modetest/
H A Dbuffers.c137 void *planes[3] = { 0, }; local
247 planes[0] = virtual;
261 planes[0] = virtual;
262 planes[1] = virtual + offsets[1];
277 planes[0] = virtual;
278 planes[1] = virtual + offsets[1];
279 planes[2] = virtual + offsets[2];
322 planes[0] = virtual;
326 util_fill_pattern(format, pattern, planes, width, height, pitches[0]);
/external/skia/src/core/
H A DSkImageGenerator.cpp46 bool SkImageGenerator::getYUV8Planes(const SkYUVSizeInfo& sizeInfo, void* planes[3]) { argument
59 SkASSERT(planes && planes[0] && planes[1] && planes[2]);
61 return this->onGetYUV8Planes(sizeInfo, planes);
/external/skia/src/gpu/
H A DGrYUVProvider.cpp31 bool init(GrYUVProvider*, SkYUVPlanesCache::Info*, void* planes[3], bool useCache);
40 bool YUVScoper::init(GrYUVProvider* provider, SkYUVPlanesCache::Info* yuvInfo, void* planes[3], argument
47 planes[0] = (void*)fCachedData->data();
48 planes[1] = (uint8_t*)planes[0] + (yuvInfo->fSizeInfo.fWidthBytes[SkYUVSizeInfo::kY] *
50 planes[2] = (uint8_t*)planes[1] + (yuvInfo->fSizeInfo.fWidthBytes[SkYUVSizeInfo::kU] *
65 planes[0] = fCachedData->writable_data();
68 planes[0] = fStorage.get();
70 planes[
93 void* planes[3]; local
[all...]
/external/strace/mpers-m32/
H A Dstruct_v4l2_buffer.h28 mpers_ptr_t planes; member in union:__anon18979::__anon18982
/external/strace/mpers-mx32/
H A Dstruct_v4l2_buffer.h29 mpers_ptr_t planes; member in union:__anon19138::__anon19141
/external/libdrm/tests/etnaviv/
H A Dwrite_bmp.c50 unsigned short planes; member in struct:dib_header
79 .planes = 1,
/external/libdrm/tests/kms/
H A Dlibkms-test.h42 struct kms_plane **planes; member in struct:kms_device
/external/libdrm/tests/planetest/
H A Ddev.h57 struct sp_plane *planes; member in struct:sp_dev
/external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
H A DYUVImage.java44 * image format consisting of Y, Cb, and Cr image planes.
62 * chrominance planes would be 18 x 35 bytes. If you specify a line padding of
64 * each of the chrominance planes would be 20 x 35 bytes.
73 * planes, and allocate memory for the image planes.
81 * strides for all planes will be set to their respective plane widths. When
115 * planes.
117 * @param planes an array of buffers representing the Y, U (Cb), and V (Cr)
118 * image planes (or just the Y plane, if the image is grayscale.) These
119 * planes ca
147 YUVImage(byte[][] planes, int[] offsets, int width, int[] strides, int height, int subsamp) argument
211 setBuf(byte[][] planes, int[] offsets, int width, int strides[], int height, int subsamp) argument
216 setBuf(byte[][] planes, int[] offsets, int width, int strides[], int height, int subsamp, boolean alloc) argument
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_regions.h129 } planes[3]; member in struct:intel_image_format
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_image.h64 } planes[3]; member in struct:intel_image_format
/external/opencv/cvaux/src/
H A Dcamshift.cpp86 uchar* planes[CV_MAX_DIM]; local
116 cvGetRawData( m_color_planes[i], &planes[i], &plane_step, &size );
132 planes[0][x] = (uchar)val0;
134 planes[1][x] = (uchar)val1;
136 planes[2][x] = (uchar)val2;
142 planes[0][x] = 0;
144 planes[1][x] = 0;
146 planes[2][x] = 0;
151 planes[i] += plane_step;
/external/ImageMagick/coders/
H A Ddib.c87 planes,
514 dib_info.planes=ReadBlobLSBShort(image);
541 if (dib_info.planes != 1)
1079 dib_info.planes=1;
1275 (void) WriteBlobLSBShort(image,(unsigned short) dib_info.planes);
85 planes, member in struct:_DIBInfo
H A Dpcx.c91 planes;
360 pcx_info.planes=(unsigned char) ReadBlobByte(image);
361 if ((pcx_info.bits_per_pixel*pcx_info.planes) >= 64)
364 if ((pcx_info.bits_per_pixel != 8) || (pcx_info.planes == 1))
366 ((pcx_info.bits_per_pixel*pcx_info.planes) == 1))
368 (pcx_info.bits_per_pixel*pcx_info.planes)),256UL);
371 if ((pcx_info.bits_per_pixel >= 8) && (pcx_info.planes != 1))
398 if (HeapOverflowSanityCheck(pcx_packets, (size_t)pcx_info.planes) != MagickFalse)
400 pcx_packets=(size_t) pcx_packets*pcx_info.planes;
401 if ((size_t) (pcx_info.bits_per_pixel*pcx_info.planes*imag
89 planes; member in struct:_PCXInfo
[all...]

Completed in 616 milliseconds

123