| /external/autotest/client/cros/chameleon/ |
| chameleon.py | 12 from PIL import Image 413 @return An Image object. 415 return Image.fromstring( 493 return Image.fromstring('RGB',
|
| /external/autotest/frontend/tko/ |
| graphing_utils.py | 24 import StringIO, colorsys, PIL.Image, PIL.ImageChops 93 <img src="data:image/png;base64,%s" usemap="#%s" 360 # Let matplotlib plot the data, so that we can get the data-to-image 436 # Draw the image 441 image = PIL.Image.fromstring('RGB', size, image_as_string, 'raw', 'RGB', 0, 443 image_background = PIL.Image.new(image.mode, image.size, 446 # Crop the image to remove surrounding whitespac [all...] |
| /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/ |
| vktSparseResourcesTestsUtil.cpp | 49 Image::Image (const DeviceInterface& vk, 93 DE_FATAL("Unknown image type"); 117 DE_FATAL("Unknown image type"); 143 DE_FATAL("Unknown image type"); 174 DE_FATAL("Unknown image type"); 198 DE_FATAL("Unknown image type"); 233 DE_FATAL("Unknown image type"); 364 const VkImage image, 374 image, // VkImage image [all...] |
| /external/deqp/framework/common/ |
| tcuTestLog.hpp | 64 * // Write image 66 * log << TestLog::Image("TestImage", "My test image", myImage); 72 * << TestLog::Image("ImageA", "Image A", imageA) 73 * << TestLog::Image("ImageB", "Image B", imageB) 94 typedef LogImage Image; 112 TestLog& operator<< (const Image& image); [all...] |
| /external/deqp/modules/egl/ |
| teglImageUtil.cpp | 46 namespace Image 171 const EGLImageKHR image = egl.createImageKHR(dpy, ctx, getSource(), local 174 return image; 220 return deqp::egl::Image::getEffectiveFormat(m_format, m_type); 554 } // Image
|
| teglImageFormatTests.cpp | 21 * \brief EGL image tests. 108 namespace Image 121 virtual bool invoke (ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& refImg) const = 0; 178 bool invoke (ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) const; 179 virtual bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) const = 0; 187 bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) const; 200 class RenderTexture2D : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) const; }; 201 class RenderTextureCubemap : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) const; }; 202 class RenderReadPixelsRenderbuffer : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) const; }; 203 class RenderDepthbuffer : public Render { public: bool invokeGLES2 (GLES2ImageApi& api, MovePtr<UniqueImage>& image, tcu::Texture2D& ref) const; } 325 const EGLImageKHR image = source.createImage(m_egl, m_display, m_context, buffer.get()); local [all...] |
| /frameworks/native/vulkan/libvulkan/ |
| swapchain.cpp | 130 struct Image { 131 Image() : image(VK_NULL_HANDLE), dequeue_fence(-1), dequeued(false) {} 132 VkImage image; member in struct:vulkan::driver::__anon29311::Swapchain::Image 154 Swapchain::Image& image) { 155 ALOG_ASSERT(release_fence == -1 || image.dequeued, 159 if (image.dequeued) { 165 if (image.dequeue_fence >= 0) 166 close(image.dequeue_fence) [all...] |
| /external/deqp/external/vulkancts/framework/vulkan/ |
| vkNullDriver.cpp | 288 class Image 291 Image (VkDevice, const VkImageCreateInfo* pCreateInfo) 569 const Image* image = reinterpret_cast<const Image*>(imageHandle.getInternal()); local 574 if (isCompressedFormat(image->getFormat())) 575 requirements->size = getCompressedImageDataSize(image->getFormat(), image->getExtent()); 577 requirements->size = getPackedImageDataSize(image->getFormat(), image->getExtent(), image->getSamples()) [all...] |
| /external/giflib/ |
| gif_lib.h | 48 GifWord Left, Top, Width, Height; /* Current image dimensions. */ 67 int ExtensionBlockCount; /* Count of extensions before image */ 68 ExtensionBlock *ExtensionBlocks; /* Extensions before image */ 77 int ImageCount; /* Number of current image (both APIs) */ 78 GifImageDesc Image; /* Current image (low-level API) */ 79 SavedImage *SavedImages; /* Image sequence (high-level API) */ 80 int ExtensionBlockCount; /* Count extensions past last image */ 81 ExtensionBlock *ExtensionBlocks; /* Extensions past last image */ 112 #define DISPOSE_DO_NOT 1 /* Leave image in place * [all...] |
| /external/vulkan-validation-layers/tests/ |
| vktestbinding.h | 53 class Image; 432 class Image : public internal::NonDispHandle<VkImage> { 434 explicit Image() : NonDispHandle(), format_features_(0) {} 435 explicit Image(const Device &dev, const VkImageCreateInfo &info) 440 ~Image(); 491 barrier.image = handle(); 766 inline VkImageCreateInfo Image::create_info() { 778 inline VkImageSubresource Image::subresource(VkImageAspectFlagBits aspect, 789 Image::subresource(const VkImageSubresourceRange &range, uint32_t mip_level, 796 inline VkImageSubresourceLayers Image::subresource(VkImageAspectFlagBits aspect [all...] |
| /external/deqp/executor/ |
| xeTestCaseResult.hpp | 65 class Image; 242 class Image : public Item 261 Image (void) : Item(TYPE_IMAGE), width(0), height(0), format(FORMAT_LAST), compression(COMPRESSION_LAST) {} 262 ~Image (void) {}
|
| /external/deqp/external/vulkancts/modules/vulkan/api/ |
| vktApiCopiesAndBlittingTests.cpp | 69 struct Image 73 } image; member in union:vkt::api::__anon9724::TestParams::Data 110 void uploadImage (tcu::ConstPixelBufferAccess imageAccess, const VkImage& image); 123 vk::VkImage image, 221 void CopiesAndBlittingTestInstance::uploadImage(tcu::ConstPixelBufferAccess imageAccess, const VkImage& image) 280 // Barriers for copying buffer to image 304 image, // VkImage image; 324 image, // VkImage image; [all...] |
| /external/deqp/external/vulkancts/modules/vulkan/pipeline/ |
| vktPipelineEarlyFragmentTests.cpp | 84 class Image 87 Image (const DeviceInterface& vk, 108 Image (const Image&); 109 Image& operator= (const Image&); 114 const VkImage image, 124 image, // VkImage image; 259 const VkImage image, [all...] |
| /external/deqp/modules/glshared/ |
| glsFboUtil.hpp | 202 struct Image : public Config 209 Image (void) 215 struct Renderbuffer : public Image 222 struct Texture : public Image 264 //! image with name `imageName` is `image`, using `vfr` to check format 266 bool isComplete (glw::GLenum attPoint, const Image* image, 300 glw::GLsizei imageNumSamples (const Image& img); 321 const Image* getImage (glw::GLenum type, glw::GLuint imgName) const [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/ |
| gdiplusimpl.h | 5 * Image, InstalledFontCollection, PrivateFontCollection, Region 41 // Image 43 __inline__ Image* Image::FromFile(const WCHAR *filename, 46 return new Image(filename, useEmbeddedColorManagement); 49 __inline__ Image* Image::FromStream(IStream *stream, 52 return new Image(stream, useEmbeddedColorManagement); 55 __inline__ Image::Image(const WCHAR *filename, BOOL useEmbeddedColorManagement) [all...] |
| /external/chromium-trace/catapult/telemetry/third_party/png/ |
| png.py | 44 # 2006-06-17 Nicko: Test suite with various image generators. 95 for Red, Green, Blue, the components of a colour image; *A* stands for 109 Consider an image that is 3 pixels wide by 2 pixels high, and each pixel 131 The entire image is one single giant sequence of colour values. 154 by the PNG image format) each pixel value is decomposed into 2 bytes 157 format, but may be just right if the source data for the PNG image 191 __all__ = ['Image', 'Reader', 'Writer', 'write_chunks', 'from_array'] 343 Image size in pixels, as two separate arguments. 345 Image size (w,h) in pixels, as single argument. 353 Create a palette for a colour mapped image (colour type 3) [all...] |
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
| connection.py | 37 from boto.ec2.image import Image, ImageAttribute, CopyImage 143 # Image methods 151 :param image_ids: A list of strings with the image IDs wanted 175 :return: A list of :class:`boto.ec2.image.Image` 189 [('item', Image)], verb='POST') 197 :param kernel_ids: A list of strings with the image IDs wanted 206 :return: A list of :class:`boto.ec2.image.Image` [all...] |
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mws/ |
| response.py | 475 class Image(ResponseElement): 483 SmallImage = Element(Image)
|
| /external/deqp/external/vulkancts/modules/vulkan/ |
| vktSynchronization.cpp | 221 struct Image 223 vk::Move<VkImage> image; member in struct:vkt::__anon9910::Image 229 void createVulkanImage (const DeviceInterface& vkd, VkDevice device, Allocator& allocator, const ImageParameters& imageParameters, Image& image, MemoryRequirement visibility) 254 image.image = createImage(vkd, device, &imageCreateParams); 255 image.allocation = allocator.allocate(getImageMemoryRequirements(vkd, device, *image.image), visibility); 257 VK_CHECK(vkd.bindImageMemory(device, *image.image, image.allocation->getMemory(), image.allocation->getOffset())) 451 VkImage image; member in struct:vkt::__anon9910::RenderInfo 514 VkImage image; member in struct:vkt::__anon9910::TransferInfo 575 vk::Move<VkImage> image; member in struct:vkt::__anon9910::TestContext 670 Image image; local [all...] |
| /frameworks/native/vulkan/nulldrv/ |
| null_driver.cpp | 821 // Image 823 struct Image { 827 DEFINE_OBJECT_HANDLE_CONVERSION(Image) 846 "CreateImage: image size 0x%" PRIx64 852 Image* image = static_cast<Image*>(allocator->pfnAllocation( local 853 allocator->pUserData, sizeof(Image), alignof(Image), 855 if (!image) 865 Image* image = GetImageFromHandle(image_handle); local 876 Image* image = GetImageFromHandle(image_handle); local [all...] |
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
| ant-jai.jar | |
| /external/libpng/contrib/libtests/ |
| pngstest.c | 570 /* THE Image STRUCTURE */ 571 /* The super-class of a png_image, contains the decoded image plus the input 576 png_image image; member in struct:__anon16780 590 Image; 594 newimage(Image *image) 596 memset(image, 0, sizeof *image); 599 /* Reset the image to be read again - only needs to rewind the FILE* at present. 602 resetimage(Image *image 3440 Image image; local [all...] |
| /external/mesa3d/include/CL/ |
| cl.hpp | [all...] |
| /external/opencv3/3rdparty/include/opencl/1.2/CL/ |
| cl.hpp | 371 #define __IMAGE_DIMENSION_ERR __ERR_STR(Incorrect image dimensions) [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
| Tkinter.py | [all...] |