/external/ImageMagick/MagickCore/ |
D | list.c | 69 % AppendImageToList(Image *images,const Image *image) 73 % o images: the image list to be appended to. 78 MagickExport void AppendImageToList(Image **images,const Image *append) in AppendImageToList() argument 84 assert(images != (Image **) NULL); in AppendImageToList() 90 if ((*images) == (Image *) NULL) in AppendImageToList() 92 *images=(Image *) append; in AppendImageToList() 95 assert((*images)->signature == MagickCoreSignature); in AppendImageToList() 96 p=GetLastImageInList(*images); in AppendImageToList() 117 % Image *CloneImageList(const Image *images,ExceptionInfo *exception) 121 % o images: the image list. [all …]
|
/external/u-boot/common/ |
D | bootm.c | 43 bootm_headers_t images; /* pointers to os/initrd/fdt images */ variable 46 char * const argv[], bootm_headers_t *images, 54 static void boot_start_lmb(bootm_headers_t *images) in boot_start_lmb() argument 59 lmb_init(&images->lmb); in boot_start_lmb() 64 lmb_add(&images->lmb, (phys_addr_t)mem_start, mem_size); in boot_start_lmb() 66 arch_lmb_reserve(&images->lmb); in boot_start_lmb() 67 board_lmb_reserve(&images->lmb); in boot_start_lmb() 71 static inline void boot_start_lmb(bootm_headers_t *images) { } in boot_start_lmb() argument 77 memset((void *)&images, 0, sizeof(images)); in bootm_start() 78 images.verify = env_get_yesno("verify"); in bootm_start() [all …]
|
D | bootm_os.c | 18 bootm_headers_t *images) in do_bootm_standalone() argument 26 env_set_hex("filesize", images->os.image_len); in do_bootm_standalone() 29 appl = (int (*)(int, char * const []))images->ep; in do_bootm_standalone() 54 bootm_headers_t *images) in do_bootm_netbsd() argument 65 if (!images->legacy_hdr_valid) { in do_bootm_netbsd() 70 hdr = images->legacy_hdr_os; in do_bootm_netbsd() 84 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) { in do_bootm_netbsd() 104 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep; in do_bootm_netbsd() 126 bootm_headers_t *images) in do_bootm_lynxkdi() argument 128 image_header_t *hdr = &images->legacy_hdr_os_copy; in do_bootm_lynxkdi() [all …]
|
/external/ImageMagick/Magick++/demo/ |
D | demo.cpp | 40 cout << "Read images ..." << endl; in main() 60 list<Image> images( 7, null ); in main() local 73 images.push_back( example ); in main() 78 images.push_back( example ); in main() 90 images.push_back( example ); in main() 96 images.push_back( example ); in main() 102 images.push_back( example ); in main() 109 images.push_back( example ); in main() 115 images.push_back( example ); in main() 121 images.push_back( example ); in main() [all …]
|
/external/ImageMagick/PerlMagick/demo/ |
D | demo.pl | 31 $images=Image::Magick->new(); 37 push(@$images,$example); 43 push(@$images,$example); 49 push(@$images,$example); 55 push(@$images,$example); 61 push(@$images,$example); 68 push(@$images,$example); 74 push(@$images,$example); 80 push(@$images,$example); 86 push(@$images,$example); [all …]
|
/external/u-boot/arch/mips/lib/ |
D | bootm.c | 76 static void linux_cmdline_legacy(bootm_headers_t *images) in linux_cmdline_legacy() argument 116 static void linux_cmdline_append(bootm_headers_t *images) in linux_cmdline_append() argument 127 rd_start = images->initrd_start; in linux_cmdline_append() 128 rd_size = images->initrd_end - images->initrd_start; in linux_cmdline_append() 169 static void linux_env_legacy(bootm_headers_t *images) in linux_env_legacy() argument 185 rd_start = UNCACHED_SDRAM(images->initrd_start); in linux_env_legacy() 186 rd_size = images->initrd_end - images->initrd_start; in linux_env_legacy() 218 static int boot_reloc_ramdisk(bootm_headers_t *images) in boot_reloc_ramdisk() argument 220 ulong rd_len = images->rd_end - images->rd_start; in boot_reloc_ramdisk() 226 if (images->state & BOOTM_STATE_RAMDISK) { in boot_reloc_ramdisk() [all …]
|
/external/u-boot/arch/powerpc/lib/ |
D | bootm.c | 42 static void boot_jump_linux(bootm_headers_t *images) in boot_jump_linux() argument 47 char *of_flat_tree = images->ft_addr; in boot_jump_linux() 51 ulong, ulong, ulong))images->ep; in boot_jump_linux() 98 ulong cmd_start = images->cmdline_start; in boot_jump_linux() 99 ulong cmd_end = images->cmdline_end; in boot_jump_linux() 100 ulong initrd_start = images->initrd_start; in boot_jump_linux() 101 ulong initrd_end = images->initrd_end; in boot_jump_linux() 102 bd_t *kbd = images->kbd; in boot_jump_linux() 161 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument 169 flush_cache((unsigned long)images->ft_addr, images->ft_len); in boot_prep_linux() [all …]
|
/external/tensorflow/tensorflow/python/layers/ |
D | pooling_test.py | 32 images = random_ops.random_uniform((5, height, width, 3), seed=1) 34 pooling_layers.max_pooling2d(images, 3, strides=2, data_format='invalid') 38 images = random_ops.random_uniform((5, height, width, 3), seed=1) 40 pooling_layers.max_pooling2d(images, 3, strides=(1, 2, 3)) 43 pooling_layers.max_pooling2d(images, 3, strides=None) 47 images = random_ops.random_uniform((5, height, width, 3), seed=1) 49 pooling_layers.max_pooling2d(images, (1, 2, 3), strides=2) 52 pooling_layers.max_pooling2d(images, None, strides=2) 56 images = random_ops.random_uniform((5, height, width, 4)) 58 output = layer.apply(images) [all …]
|
D | convolutional_test.py | 41 images = random_ops.random_uniform((5, height, width, 3), seed=1) 43 conv_layers.conv2d(images, 32, 3, data_format='invalid') 47 images = random_ops.random_uniform((5, height, width, 3), seed=1) 49 conv_layers.conv2d(images, 32, 3, strides=(1, 2, 3)) 52 conv_layers.conv2d(images, 32, 3, strides=None) 56 images = random_ops.random_uniform((5, height, width, 3), seed=1) 58 conv_layers.conv2d(images, 32, (1, 2, 3)) 61 conv_layers.conv2d(images, 32, None) 66 images = random_ops.random_uniform((5, height, width, 4)) 68 output = layer.apply(images) [all …]
|
/external/ImageMagick/www/source/ |
D | examples.pl | 31 $images=Image::Magick->new(); 37 push(@$images,$example); 43 push(@$images,$example); 49 push(@$images,$example); 55 push(@$images,$example); 61 push(@$images,$example); 68 push(@$images,$example); 74 push(@$images,$example); 80 push(@$images,$example); 86 push(@$images,$example); [all …]
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | layers_test.py | 60 images = np.random.uniform(size=(5, height, width, 3)) 63 _layers.avg_pool2d(images, [3, 3], data_format='CHWN') 67 images = np.random.uniform(size=(5, height, width, 3)) 68 output = _layers.avg_pool2d(images, [3, 3]) 74 images = np.random.uniform(size=(5, 2, height, width)) 75 output = _layers.avg_pool2d(images, [3, 3], data_format='NCHW') 80 images = random_ops.random_uniform((5, height, width, 3), seed=1) 81 output = _layers.avg_pool2d(images, [3, 3], outputs_collections='outputs') 88 images = random_ops.random_uniform((5, height, width, 3), seed=1) 89 output = _layers.avg_pool2d(images, 3) [all …]
|
/external/u-boot/arch/arm/lib/ |
D | bootm.c | 225 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument 229 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { in boot_prep_linux() 232 if (image_setup_linux(images)) { in boot_prep_linux() 251 * a specified location. And set images->initrd_start & in boot_prep_linux() 252 * images->initrd_end to relocated ramdisk's start/end in boot_prep_linux() 253 * addresses. So use them instead of images->rd_start & in boot_prep_linux() 254 * images->rd_end when possible. in boot_prep_linux() 256 if (images->initrd_start && images->initrd_end) { in boot_prep_linux() 257 setup_initrd_tag(gd->bd, images->initrd_start, in boot_prep_linux() 258 images->initrd_end); in boot_prep_linux() [all …]
|
/external/u-boot/arch/x86/lib/ |
D | bootm.c | 68 static int boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument 78 if (images->ft_len) { in boot_prep_linux() 80 if (image_setup_linux(images)) { in boot_prep_linux() 86 if (images->legacy_hdr_valid) { in boot_prep_linux() 87 hdr = images->legacy_hdr_os; in boot_prep_linux() 102 } else if (images->fit_uname_os && is_zimage) { in boot_prep_linux() 103 ret = fit_image_get_data(images->fit_hdr_os, in boot_prep_linux() 104 images->fit_noffset_os, in boot_prep_linux() 119 images->os.load = load_address; in boot_prep_linux() 121 images->ep = (ulong)base_ptr; in boot_prep_linux() [all …]
|
/external/apache-commons-bcel/src/site/resources/ |
D | bcel5-bcel6-clirr-report.html | 47 … <img class="logo-left" src="./images/commons-logo.png" alt="Apache Commons logo"/> 50 … <img class="logo-right" src="images/logo.gif" alt="Commons BCEL"/> 304 …<img class="builtBy" alt="Maven" src="http://maven.apache.org/images/logos/maven-feather.png" … 322 <td><img alt="Error" src="images/icon_error_sml.gif" /> Error</td> 325 <td><img alt="Warning" src="images/icon_warning_sml.gif" /> Warning</td> 328 <td><img alt="Info" src="images/icon_info_sml.gif" /> Info</td> 339 <td><img alt="Error" src="images/icon_error_sml.gif" /></td> 344 <td><img alt="Error" src="images/icon_error_sml.gif" /></td> 349 <td><img alt="Error" src="images/icon_error_sml.gif" /></td> 354 <td><img alt="Error" src="images/icon_error_sml.gif" /></td> [all …]
|
/external/ImageMagick/www/api/ |
D | list.html | 12 …n" content="Use ImageMagick® to create, edit, compose, or convert bitmap images. You can resize yo… 27 <link href="../../images/wand.png" rel="icon" /> 28 <link href="../../images/wand.ico" rel="shortcut icon" /> 34 …lass="d-block" id="icon" alt="ImageMagick" width="32" height="32" src="../../images/wand.ico"/></a> 93 AppendImageToList(Image *images,const Image *image) 103 <dt>images</dt> 119 Image *CloneImageList(const Image *images,ExceptionInfo *exception) 129 <dt>images</dt> 140 <p>CloneImages() clones one or more images from an image sequence, using a comma separated list of … 142 …images starting counting from the end of the range. Images may be referred to multiple times to cl… [all …]
|
/external/wayland/cursor/ |
D | wayland-cursor.c | 195 wl_cursor_image_destroy(cursor->images[i]); in wl_cursor_destroy() 197 free(cursor->images); in wl_cursor_destroy() 217 cursor->cursor.images = malloc(sizeof *cursor->cursor.images); in wl_cursor_create_from_data() 218 if (!cursor->cursor.images) in wl_cursor_create_from_data() 228 cursor->cursor.images[0] = (struct wl_cursor_image *) image; in wl_cursor_create_from_data() 253 free(cursor->cursor.images); in wl_cursor_create_from_data() 287 wl_cursor_create_from_xcursor_images(XcursorImages *images, in wl_cursor_create_from_xcursor_images() argument 298 cursor->cursor.images = in wl_cursor_create_from_xcursor_images() 299 malloc(images->nimage * sizeof cursor->cursor.images[0]); in wl_cursor_create_from_xcursor_images() 300 if (!cursor->cursor.images) { in wl_cursor_create_from_xcursor_images() [all …]
|
D | xcursor.c | 66 * CARD32 subtype entry subtype (size for images) 96 XcursorUInt subtype; /* subtype (size for images) */ 129 XcursorUInt subtype; /* chunk subtype (size for images) */ 227 XcursorImages *images; in XcursorImagesCreate() local 229 images = malloc (sizeof (XcursorImages) + in XcursorImagesCreate() 231 if (!images) in XcursorImagesCreate() 233 images->nimage = 0; in XcursorImagesCreate() 234 images->images = (XcursorImage **) (images + 1); in XcursorImagesCreate() 235 images->name = NULL; in XcursorImagesCreate() 236 return images; in XcursorImagesCreate() [all …]
|
/external/tensorflow/tensorflow/contrib/image/python/ops/ |
D | image_ops.py | 49 def rotate(images, angles, interpolation="NEAREST", name=None): argument 53 images: A tensor of shape (num_images, num_rows, num_columns, num_channels) 57 angles: A scalar angle to rotate all images by, or (if images has rank 4) 63 Image(s) with the same type and shape as `images`, rotated by the given 70 image_or_images = ops.convert_to_tensor(images) 76 images = image_or_images[None, :, :, None] 78 images = image_or_images[None, :, :, :] 80 images = image_or_images 82 raise TypeError("Images should have rank between 2 and 4.") 84 image_height = math_ops.cast(array_ops.shape(images)[1], [all …]
|
/external/autotest/client/cros/chameleon/ |
D | screen_comparison.py | 27 @param output_dir: The directory for output images. 55 images = [self._capturer1.capture(), self._capturer2.capture()] 57 if None in images: 59 tags[images.index(None)]) 63 # Sometimes the format of images got from X is not RGB, 66 for i, image in enumerate(images): 68 images[i] = image.convert('RGB') 74 if images[0].size != images[1].size: 75 message = ('Sizes of images %s and %s do not match: ' 77 (tuple(tags) + images[0].size + images[1].size)) [all …]
|
/external/tensorflow/tensorflow/contrib/gan/python/eval/python/ |
D | classifier_metrics_impl.py | 85 def _validate_images(images, image_size): argument 86 images = ops.convert_to_tensor(images) 87 images.shape.with_rank(4) 88 images.shape.assert_is_compatible_with([None, image_size, image_size, None]) 89 return images 119 def preprocess_image(images, argument 123 """Prepare a batch of images for evaluation. 132 images: 3-D or 4-D Tensor of images. Values are in [0, 255]. 140 is_single = images.shape.ndims == 3 141 with ops.name_scope(scope, 'preprocess', [images, height, width]): [all …]
|
D | eval_utils_impl.py | 15 """Utility file for visualizing generated images.""" 35 """Arrange a minibatch of images into a grid to form a single image. 38 input_tensor: Tensor. Minibatch of images to format, either 4D 48 Tensor representing a single image in which the input images have been 83 def _validate_images(images): argument 84 for img in images: 88 raise ValueError("image_reshaper only supports 1 or 3 channel images.") 92 def image_reshaper(images, num_cols=None): argument 96 laid out in a nearly-square tiling pattern (e.g. 11 images will lead to a 100 images: Image data to summarize. Can be an RGB or grayscale image, a list of [all …]
|
/external/tensorflow/tensorflow/python/ops/ |
D | image_ops_impl.py | 485 def _rot90_4D(images, k, name_scope): argument 486 """Rotate batch of images counter-clockwise by 90 degrees `k` times. 489 images: 4-D Tensor of shape `[height, width, channels]`. 490 k: A scalar integer. The number of times the images are rotated by 90 495 A 4-D tensor of the same type and shape as `images`. 500 return array_ops.transpose(array_ops.reverse_v2(images, [2]), [0, 2, 1, 3]) 503 return array_ops.reverse_v2(images, [1, 2]) 505 return array_ops.reverse_v2(array_ops.transpose(images, [0, 2, 1, 3]), [2]) 511 cases, default=lambda: images, exclusive=True, name=name_scope) 568 batch of images (`image` is a 4-D Tensor). [all …]
|
/external/libxml2/doc/ |
D | Makefile.am | 23 $(wildcard tutorial/images/*.png) \ 24 $(wildcard tutorial/images/callouts/*.png) $(wildcard API*.html) \ 190 tutorial/images/blank.png \ 191 tutorial/images/callouts/1.png \ 192 tutorial/images/callouts/10.png \ 193 tutorial/images/callouts/2.png \ 194 tutorial/images/callouts/3.png \ 195 tutorial/images/callouts/4.png \ 196 tutorial/images/callouts/5.png \ 197 tutorial/images/callouts/6.png \ [all …]
|
/external/skia/infra/bots/recipes/upload_dm_results.expected/ |
D | failed_all.json | 14 "name": "find .png images", 27 "gs://skia-infra-gm/dm-images-v1" 29 "name": "upload .png images", 41 "gs://skia-infra-gm/dm-images-v1" 43 "name": "upload .png images (attempt 2)", 55 "gs://skia-infra-gm/dm-images-v1" 57 "name": "upload .png images (attempt 3)", 69 "gs://skia-infra-gm/dm-images-v1" 71 "name": "upload .png images (attempt 4)", 83 "gs://skia-infra-gm/dm-images-v1" [all …]
|
/external/skqp/infra/bots/recipes/upload_dm_results.expected/ |
D | failed_all.json | 14 "name": "find .png images", 27 "gs://skia-infra-gm/dm-images-v1" 29 "name": "upload .png images", 41 "gs://skia-infra-gm/dm-images-v1" 43 "name": "upload .png images (attempt 2)", 55 "gs://skia-infra-gm/dm-images-v1" 57 "name": "upload .png images (attempt 3)", 69 "gs://skia-infra-gm/dm-images-v1" 71 "name": "upload .png images (attempt 4)", 83 "gs://skia-infra-gm/dm-images-v1" [all …]
|