HomeSort by relevance Sort by last modified time
    Searched defs:images (Results 26 - 50 of 183) sorted by null

12 3 4 5 6 7 8

  /external/ImageMagick/coders/
djvu.c 13 % Read DjVu Images. %
116 % image or set of images.
753 *images;
864 images=NewImageList();
874 AppendImageToList(&images,CloneImageList(image,exception));
875 images->extent=GetBlobSize(image);
881 (void) CloseBlob(images);
904 return(GetFirstImageInList(images));
750 *images; local
icon.c 169 *images;
177 images=NULL;
207 return(DestroyImageList(images));
209 if (images == (Image *) NULL)
210 images=resized;
212 AppendImageToList(&images,resized);
214 return(images);
871 *images,
916 images=(Image *) NULL;
920 images=AutoResizeImage(image,option,&scene,exception)
165 *images; local
863 *images, local
    [all...]
dcm.c 600 { 0x0018, 0x1090, "IS", "Cardiac Number of Images" },
3548 *images; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_context.c 858 struct __DRIimageList images; local
886 &images);
890 if (images.image_mask & __DRI_IMAGE_BUFFER_FRONT) {
891 drawable->w = images.front->width;
892 drawable->h = images.front->height;
896 images.front,
899 if (images.image_mask & __DRI_IMAGE_BUFFER_BACK) {
900 drawable->w = images.back->width;
901 drawable->h = images.back->height;
905 images.back
    [all...]
  /external/skia/tests/
ProcessorTest.cpp 74 const SkTArray<Image>& images) {
75 return sk_sp<GrFragmentProcessor>(new TestFP(proxies, buffers, images));
89 const SkTArray<Image>& images)
97 for (const Image& image : images) {
179 SkTArray<TestFP::Image> images; local
185 images.emplace_back(proxy2, GrIOType::kRead_GrIOType);
186 images.emplace_back(proxy3, GrIOType::kWrite_GrIOType);
187 images.emplace_back(proxy4, GrIOType::kRW_GrIOType);
189 auto fp = TestFP::Make(std::move(proxies), std::move(buffers), std::move(images));
  /external/vboot_reference/firmware/include/
bmpblk_header.h 71 /* Screen layout, describing how to stack multiple images on screen */
74 * Images contained in the screen. Will be rendered from 0 to
83 } images[MAX_IMAGE_IN_LAYOUT]; member in struct:ScreenLayout
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
RunLintAction.java 144 ISharedImages images = PlatformUI.getWorkbench().getSharedImages(); local
145 ImageDescriptor clear = images.getImageDescriptor(ISharedImages.IMG_ELCL_REMOVEALL);
  /external/ImageMagick/MagickWand/
composite.c 91 % CompositeImageCommand() reads one or more images and an optional mask and
249 "-blend geometry blend images",
256 "-dissolve value dissolve the two images a given percent",
279 "-write filename write images to this file",
342 "-swap indexes swap two images in the image sequence",
432 *images,
517 *images;
526 images=ReadImages(image_info,filename,exception);
527 status&=(images != (Image *) NULL) &&
529 if (images == (Image *) NULL
429 *images, local
514 *images; local
    [all...]
  /external/mesa3d/src/vulkan/wsi/
wsi_common_wayland.c 370 /* For true mailbox mode, we need at least 4 images:
498 struct wsi_wl_image images[0]; member in struct:wsi_wl_swapchain
522 pSwapchainImages[i] = chain->images[i].image;
546 if (!chain->images[i].busy) {
549 chain->images[i].busy = true;
594 wl_surface_attach(chain->surface, chain->images[image_index].buffer, 0, 0);
604 chain->images[image_index].busy = true;
682 if (chain->images[i].buffer)
684 chain->images[i].image,
685 chain->images[i].memory)
    [all...]
wsi_common_x11.c 418 /* For true mailbox mode, we need at least 4 images:
544 struct x11_image images[0]; member in struct:x11_swapchain
568 pSwapchainImages[i] = chain->images[i].image;
592 if (chain->images[i].pixmap == idle->pixmap) {
593 chain->images[i].busy = false;
646 if (!chain->images[i].busy) {
648 xshmfence_await(chain->images[i].shm_fence);
650 chain->images[i].busy = true;
713 xshmfence_await(chain->images[image_index].shm_fence);
724 struct x11_image *image = &chain->images[image_index]
    [all...]
  /external/webp/src/mux/
muxedit.c 39 // Delete all images in 'wpi_list'.
245 // Only one 'simple image' can be added in mux. So, remove present images.
475 const WebPMuxImage* images = NULL; local
478 images = mux->images_; // First image.
479 if (images == NULL || images->img_ == NULL ||
480 images->img_->data_.bytes == NULL) {
499 if (images->header_ != NULL) {
500 if (images->header_->tag_ == kChunks[IDX_ANMF].tag) {
505 if (MuxImageCount(images, WEBP_CHUNK_ALPHA) > 0)
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
PoolableImageCache.java 261 final LinkedList<ImageResource> images = mImageListSparseArray.get(poolKey); local
262 if (images != null && images.size() > 0) {
266 for (int i = 0; i < images.size(); i++) {
267 final ImageResource image = images.get(i);
272 imageToUse = images.remove(i);
308 images.addLast(imageToUse);
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_from_tgsi.cpp 976 std::vector<Image> images; member in class:tgsi::Source
1031 images.resize(scan.file_max[TGSI_FILE_IMAGE] + 1);
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_context.h 87 struct pipe_image_view images[PIPE_SHADER_TYPES][PIPE_MAX_SHADER_IMAGES]; member in struct:softpipe_context
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_context.c 288 /* Access to images is implemented using indirect messages
1730 struct __DRIimageList images; local
    [all...]
  /external/vulkan-validation-layers/layers/
swapchain.h 57 SWAPCHAIN_APP_ACQUIRES_TOO_MANY_IMAGES, // vkAcquireNextImageKHR() asked for more images than are available
252 unordered_map<int, SwpImage> images; member in struct:SwpSwapchain
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
core_validation.h 102 std::vector<VkImageView> images; member in struct:MT_DESCRIPTOR_SET_INFO
109 std::vector<VkImage> images; member in struct:MT_SWAP_CHAIN_INFO
swapchain.h 60 SWAPCHAIN_APP_ACQUIRES_TOO_MANY_IMAGES, // vkAcquireNextImageKHR() asked for more images than are available
302 unordered_map<int, SwpImage> images; member in struct:SwpSwapchain
  /external/ImageMagick/MagickCore/
animate.c 143 " < Press to speed-up the display of the images. Refer to",
146 " > Press to slow the display of the images. Refer to",
159 " Ctl-q Press to discard all images and exit program.",
276 % Image *images,ExceptionInfo *exception)
288 Image *images,ExceptionInfo *exception)
307 assert(images != (Image *) NULL);
308 assert(images->signature == MagickCoreSignature);
309 if (images->debug != MagickFalse)
310 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",images->filename);
328 (void) XAnimateImages(display,&resource_info,argv,1,images,exception)
398 *images, local
    [all...]
blob.c 403 *images;
408 for (images=GetFirstImageInList(image); images != (Image *) NULL; )
410 (void) CopyMagickString(images->filename,image_info->filename,
412 (void) CopyMagickString(images->magick_filename,image_info->filename,
414 (void) CopyMagickString(images->magick,magick_info->name,
416 images=GetNextImageInList(images);
734 % blob of the specified image is referenced by other images. If the reference
396 *images; local
    [all...]
effect.c 2263 *images, local
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_descriptors.c 67 /* NULL image and buffer descriptor for textures (alpha = 1) and images
70 * For images, all fields must be zero except for the swizzle, which
507 sctx->images[shader].compressed_colortex_mask)
603 si_release_image_views(struct si_images_info *images)
608 struct pipe_image_view *view = &images->views[i];
615 si_image_views_begin_new_cs(struct si_context *sctx, struct si_images_info *images)
617 uint mask = images->enabled_mask;
622 struct pipe_image_view *view = &images->views[i];
634 struct si_images_info *images = &ctx->images[shader] local
667 struct si_images_info *images = &ctx->images[shader]; local
1668 struct si_images_info *images = &sctx->images[shader]; local
1704 struct si_images_info *images = &sctx->images[shader]; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/dri/
dri2.c 109 /* NOTE this probably isn't going to do the right thing for YUV images
305 struct __DRIimageList *images,
354 images);
467 struct __DRIimageList images; local
475 if (!dri_image_drawable_get_buffers(drawable, &images,
544 if (images.image_mask & __DRI_IMAGE_BUFFER_FRONT) {
547 struct pipe_resource *texture = images.front->texture;
555 if (images.image_mask & __DRI_IMAGE_BUFFER_BACK) {
558 struct pipe_resource *texture = images.back->texture;
    [all...]
  /external/opencv/cvaux/src/
cveigenobjects.cpp 196 // (images, vectors, etc.). ROI supported.
421 // object for a group of input objects (images, vectors, etc.). ROI supported.
1202 IplImage **images = (IplImage **) (((CvInput *) & input)->data); local
    [all...]
  /external/skia/dm/
DM.cpp 635 // There is not currently a reason to test RAW images on image generator.
712 // We will only produce output for the larger sizes on large images.
767 SkTArray<SkString> images; local
768 if (!CollectImages(FLAGS_images, &images)) {
772 for (auto image : images) {
    [all...]

Completed in 1110 milliseconds

12 3 4 5 6 7 8