/third_party/uboot/u-boot-2020.01/common/ |
D | bootm.c | 41 bootm_headers_t images; /* pointers to os/initrd/fdt images */ variable 44 char * const argv[], bootm_headers_t *images, 52 static void boot_start_lmb(bootm_headers_t *images) in boot_start_lmb() argument 60 lmb_init_and_reserve_range(&images->lmb, (phys_addr_t)mem_start, in boot_start_lmb() 65 static inline void boot_start_lmb(bootm_headers_t *images) { } in boot_start_lmb() argument 71 memset((void *)&images, 0, sizeof(images)); in bootm_start() 72 images.verify = env_get_yesno("verify"); in bootm_start() 74 boot_start_lmb(&images); in bootm_start() 77 images.state = BOOTM_STATE_START; in bootm_start() 91 &images, &images.os.image_start, &images.os.image_len); in bootm_find_os() [all …]
|
D | bootm_os.c | 20 bootm_headers_t *images) in do_bootm_standalone() argument 28 env_set_hex("filesize", images->os.image_len); in do_bootm_standalone() 31 appl = (int (*)(int, char * const []))images->ep; in do_bootm_standalone() 56 bootm_headers_t *images) in do_bootm_netbsd() argument 67 if (!images->legacy_hdr_valid) { in do_bootm_netbsd() 72 hdr = images->legacy_hdr_os; in do_bootm_netbsd() 86 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) { in do_bootm_netbsd() 106 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep; in do_bootm_netbsd() 128 bootm_headers_t *images) in do_bootm_lynxkdi() argument 130 image_header_t *hdr = &images->legacy_hdr_os_copy; in do_bootm_lynxkdi() [all …]
|
D | image-fdt.c | 266 bootm_headers_t *images, char **of_flat_tree, ulong *of_size) in boot_get_fdt() argument 278 const char *fit_uname_config = images->fit_uname_cfg; in boot_get_fdt() 293 if (select || genimg_has_config(images)) { in boot_get_fdt() 302 if (images->fit_uname_rd) in boot_get_fdt() 303 default_addr = (ulong)images->fit_hdr_rd; in boot_get_fdt() 304 else if (images->fit_uname_os) in boot_get_fdt() 305 default_addr = (ulong)images->fit_hdr_os; in boot_get_fdt() 329 fdt_addr = map_to_sysmem(images->fit_hdr_os); in boot_get_fdt() 330 fdt_noffset = fit_get_node_from_config(images, in boot_get_fdt() 401 fdt_noffset = boot_get_fdt_fit(images, in boot_get_fdt() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/powerpc/lib/ |
D | bootm.c | 43 static void boot_jump_linux(bootm_headers_t *images) in boot_jump_linux() argument 48 char *of_flat_tree = images->ft_addr; in boot_jump_linux() 52 ulong, ulong, ulong))images->ep; in boot_jump_linux() 99 ulong cmd_start = images->cmdline_start; in boot_jump_linux() 100 ulong cmd_end = images->cmdline_end; in boot_jump_linux() 101 ulong initrd_start = images->initrd_start; in boot_jump_linux() 102 ulong initrd_end = images->initrd_end; in boot_jump_linux() 103 bd_t *kbd = images->kbd; in boot_jump_linux() 162 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument 170 flush_cache((unsigned long)images->ft_addr, images->ft_len); in boot_prep_linux() [all …]
|
/third_party/skia/tools/svg/ |
D | svg_images.txt | 1 https://www.w3.org/Graphics/SVG/Test/20110816/images/20x20.png 2 https://www.w3.org/Graphics/SVG/Test/20110816/images/blue_10x10.png 3 https://www.w3.org/Graphics/SVG/Test/20110816/images/bluesquidj.png 4 https://www.w3.org/Graphics/SVG/Test/20110816/images/bumpMap2.png 5 https://www.w3.org/Graphics/SVG/Test/20110816/images/DisplaceChecker.png 6 https://www.w3.org/Graphics/SVG/Test/20110816/images/filters-conv-01-f.includeimage.png 7 https://www.w3.org/Graphics/SVG/Test/20110816/images/galpha.png 8 https://www.w3.org/Graphics/SVG/Test/20110816/images/gam030.png 9 https://www.w3.org/Graphics/SVG/Test/20110816/images/gam045.png 10 https://www.w3.org/Graphics/SVG/Test/20110816/images/gam056.png [all …]
|
/third_party/uboot/u-boot-2020.01/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() 123 images->os.load = load_address; in boot_prep_linux() 125 images->ep = (ulong)base_ptr; in boot_prep_linux() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/mips/lib/ |
D | bootm.c | 77 static void linux_cmdline_legacy(bootm_headers_t *images) in linux_cmdline_legacy() argument 117 static void linux_cmdline_append(bootm_headers_t *images) in linux_cmdline_append() argument 128 rd_start = images->initrd_start; in linux_cmdline_append() 129 rd_size = images->initrd_end - images->initrd_start; in linux_cmdline_append() 170 static void linux_env_legacy(bootm_headers_t *images) in linux_env_legacy() argument 186 rd_start = UNCACHED_SDRAM(images->initrd_start); in linux_env_legacy() 187 rd_size = images->initrd_end - images->initrd_start; in linux_env_legacy() 219 static int boot_reloc_fdt(bootm_headers_t *images) in boot_reloc_fdt() argument 225 if (images->state & BOOTM_STATE_FDT) { in boot_reloc_fdt() 231 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr); in boot_reloc_fdt() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/arm/lib/ |
D | bootm.c | 228 __weak void board_prep_linux(bootm_headers_t *images) { } in board_prep_linux() argument 231 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument 235 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { in boot_prep_linux() 238 if (image_setup_linux(images)) { in boot_prep_linux() 262 if (images->initrd_start && images->initrd_end) { in boot_prep_linux() 263 setup_initrd_tag(gd->bd, images->initrd_start, in boot_prep_linux() 264 images->initrd_end); in boot_prep_linux() 265 } else if (images->rd_start && images->rd_end) { in boot_prep_linux() 266 setup_initrd_tag(gd->bd, images->rd_start, in boot_prep_linux() 267 images->rd_end); in boot_prep_linux() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/riscv/lib/ |
D | bootm.c | 65 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument 67 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { in boot_prep_linux() 70 if (image_setup_linux(images)) { in boot_prep_linux() 81 static void boot_jump_linux(bootm_headers_t *images, int flag) in boot_jump_linux() argument 89 kernel = (void (*)(ulong, void *))images->ep; in boot_jump_linux() 99 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { in boot_jump_linux() 101 ret = smp_call_function(images->ep, in boot_jump_linux() 102 (ulong)images->ft_addr, 0, 0); in boot_jump_linux() 106 kernel(gd->arch.boot_hart, images->ft_addr); in boot_jump_linux() 112 bootm_headers_t *images) in do_bootm_linux() argument [all …]
|
/third_party/uboot/u-boot-2020.01/arch/microblaze/lib/ |
D | bootm.c | 60 static void boot_jump_linux(bootm_headers_t *images, int flag) in boot_jump_linux() argument 63 ulong dt = (ulong)images->ft_addr; in boot_jump_linux() 64 ulong rd_start = images->initrd_start; in boot_jump_linux() 65 ulong cmdline = images->cmdline_start; in boot_jump_linux() 68 thekernel = (void (*)(char *, ulong, ulong))images->ep; in boot_jump_linux() 96 static void boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument 98 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { in boot_prep_linux() 100 if (image_setup_linux(images)) { in boot_prep_linux() 108 bootm_headers_t *images) in do_bootm_linux() argument 110 images->cmdline_start = (ulong)env_get("bootargs"); in do_bootm_linux() [all …]
|
/third_party/wayland_standard/cursor/ |
D | wayland-cursor.c | 189 wl_cursor_image_destroy(cursor->images[i]); in wl_cursor_destroy() 191 free(cursor->images); in wl_cursor_destroy() 211 cursor->cursor.images = malloc(sizeof *cursor->cursor.images); in wl_cursor_create_from_data() 212 if (!cursor->cursor.images) in wl_cursor_create_from_data() 222 cursor->cursor.images[0] = (struct wl_cursor_image *) image; in wl_cursor_create_from_data() 247 free(cursor->cursor.images); in wl_cursor_create_from_data() 281 wl_cursor_create_from_xcursor_images(XcursorImages *images, in wl_cursor_create_from_xcursor_images() argument 292 cursor->cursor.images = in wl_cursor_create_from_xcursor_images() 293 malloc(images->nimage * sizeof cursor->cursor.images[0]); in wl_cursor_create_from_xcursor_images() 294 if (!cursor->cursor.images) { in wl_cursor_create_from_xcursor_images() [all …]
|
D | xcursor.c | 232 XcursorImages *images; in XcursorImagesCreate() local 234 images = malloc (sizeof (XcursorImages) + in XcursorImagesCreate() 236 if (!images) in XcursorImagesCreate() 238 images->nimage = 0; in XcursorImagesCreate() 239 images->images = (XcursorImage **) (images + 1); in XcursorImagesCreate() 240 images->name = NULL; in XcursorImagesCreate() 241 return images; in XcursorImagesCreate() 245 XcursorImagesDestroy (XcursorImages *images) in XcursorImagesDestroy() argument 249 if (!images) in XcursorImagesDestroy() 252 for (n = 0; n < images->nimage; n++) in XcursorImagesDestroy() [all …]
|
/third_party/uboot/u-boot-2020.01/cmd/ |
D | booti.c | 21 char * const argv[], bootm_headers_t *images) in booti_start() argument 29 images, 1); in booti_start() 51 images->ep = relocated_addr; in booti_start() 52 images->os.start = relocated_addr; in booti_start() 53 images->os.end = relocated_addr + image_size; in booti_start() 55 lmb_reserve(&images->lmb, images->ep, le32_to_cpu(image_size)); in booti_start() 74 if (booti_start(cmdtp, flag, argc, argv, &images)) in do_booti() 83 images.os.os = IH_OS_LINUX; in do_booti() 85 images.os.arch = IH_ARCH_RISCV; in do_booti() 87 images.os.arch = IH_ARCH_ARM64; in do_booti() [all …]
|
D | bootz.c | 26 char * const argv[], bootm_headers_t *images) in bootz_start() argument 32 images, 1); in bootz_start() 36 images->ep = load_addr; in bootz_start() 40 images->ep = simple_strtoul(argv[0], NULL, 16); in bootz_start() 42 images->ep); in bootz_start() 45 ret = bootz_setup(images->ep, &zi_start, &zi_end); in bootz_start() 49 lmb_reserve(&images->lmb, images->ep, zi_end - zi_start); in bootz_start() 68 if (bootz_start(cmdtp, flag, argc, argv, &images)) in do_bootz() 77 images.os.os = IH_OS_LINUX; in do_bootz() 84 &images, 1); in do_bootz()
|
/third_party/uboot/u-boot-2020.01/arch/arc/lib/ |
D | bootm.c | 49 __weak int board_prep_linux(bootm_headers_t *images) { return 0; } in board_prep_linux() argument 52 static int boot_prep_linux(bootm_headers_t *images) in boot_prep_linux() argument 56 ret = image_setup_linux(images); in boot_prep_linux() 60 return board_prep_linux(images); in boot_prep_linux() 74 static void boot_jump_linux(bootm_headers_t *images, int flag) in boot_jump_linux() argument 80 kernel_entry = images->ep; in boot_jump_linux() 90 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) { in boot_jump_linux() 92 r2 = (unsigned int)images->ft_addr; in boot_jump_linux() 104 int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images) in do_bootm_linux() argument 111 return boot_prep_linux(images); in do_bootm_linux() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/doc/ |
D | TextureDataCompleteness.md | 3 The OpenGL spec allows a texture's images to be defined without consistent size and format through 6 The OpenGL context checks the texture's images during draw calls. It considers the texture complete 7 if the images are consistent in size and format. Then it uses the texture for rendering. 9 Metal textures (i.e. MTLTexture) on the other hand require consistent defined images at all times. 12 This is an overview of how the Metal back-end implements images' management for a texture to make 17 * a single image (`images[slice][level]`: 2D/3D MTLTexture no mipmap + single slice) is 20 * modifies the data of `images[slice][level]`; 24 - `images[0][0]` --> copy to actual texture's slice 0, level 0. 25 - `images[0][1]` --> copy to actual texture's slice 0, level 1. 26 - `images[0][2]` --> copy to actual texture's slice 0, level 2. [all …]
|
/third_party/uboot/u-boot-2020.01/arch/arm/mach-k3/ |
D | sysfw-loader.c | 53 static int fit_get_data_by_name(const void *fit, int images, const char *name, in fit_get_data_by_name() argument 58 node_offset = fdt_subnode_offset(fit, images, name); in fit_get_data_by_name() 67 int images; in k3_sysfw_load_using_fit() local 73 images = fdt_path_offset(fit, FIT_IMAGES_PATH); in k3_sysfw_load_using_fit() 74 if (images < 0) in k3_sysfw_load_using_fit() 75 panic("Cannot find /images node (%d)\n", images); in k3_sysfw_load_using_fit() 78 ret = fit_get_data_by_name(fit, images, SYSFW_FIRMWARE, in k3_sysfw_load_using_fit() 107 int images; in k3_sysfw_configure_using_fit() local 113 images = fdt_path_offset(fit, FIT_IMAGES_PATH); in k3_sysfw_configure_using_fit() 114 if (images < 0) in k3_sysfw_configure_using_fit() [all …]
|
/third_party/skia/gm/ |
D | crosscontextimage.cpp | 37 sk_sp<SkImage> images[3]; variable 38 images[0] = SkImage::MakeFromEncoded(encodedData); 42 SkAssertResult(images[0]->asLegacyBitmap(&bmp) && 45 images[1] = SkImage::MakeCrossContextFromPixmap(dContext, pixmap, false); 46 images[2] = SkImage::MakeCrossContextFromPixmap(dContext, pixmap, true); 50 for (size_t i = 0; i < SK_ARRAY_COUNT(images); ++i) { 53 canvas->drawImage(images[i], 0, 0); 56 canvas->drawImage(images[i]->makeSubset(SkIRect::MakeXYWH(64, 64, 128, 128), dContext), 60 canvas->drawImageRect(images[i], SkRect::MakeWH(128, 128),
|
/third_party/flutter/skia/gm/ |
D | crosscontextimage.cpp | 33 sk_sp<SkImage> images[3]; variable 34 images[0] = SkImage::MakeFromEncoded(encodedData); 38 SkAssertResult(images[0]->asLegacyBitmap(&bmp) && 41 images[1] = SkImage::MakeCrossContextFromPixmap(context, pixmap, false); 42 images[2] = SkImage::MakeCrossContextFromPixmap(context, pixmap, true); 46 for (size_t i = 0; i < SK_ARRAY_COUNT(images); ++i) { 49 canvas->drawImage(images[i], 0, 0); 52 canvas->drawImage(images[i]->makeSubset(SkIRect::MakeXYWH(64, 64, 128, 128)), 0, 0); 57 canvas->drawImageRect(images[i], SkRect::MakeWH(128, 128), &paint);
|
/third_party/boost/libs/compute/doc/ |
D | performance.qbk | 19 [$images/perf/accumulate_time_plot.png [width 850px] [align center]] 22 [$images/perf/count_time_plot.png [width 850px] [align center]] 25 [$images/perf/inner_product_time_plot.png [width 850px] [align center]] 28 [$images/perf/merge_time_plot.png [width 850px] [align center]] 31 [$images/perf/partial_sum_time_plot.png [width 850px] [align center]] 34 [$images/perf/partition_time_plot.png [width 850px] [align center]] 37 [$images/perf/reverse_time_plot.png [width 850px] [align center]] 40 [$images/perf/rotate_time_plot.png [width 850px] [align center]] 43 [$images/perf/set_difference_time_plot.png [width 850px] [align center]] 46 [$images/perf/sort_time_plot.png [width 850px] [align center]] [all …]
|
/third_party/wayland_standard/doc/publican/ |
D | Makefile.am | 29 $(srcdir)/sources/images/icon.svg \ 30 $(srcdir)/sources/images/wayland.png \ 31 $(srcdir)/sources/images/xwayland-architecture.png \ 47 $(srcdir)/sources/images/icon.svg \ 48 $(srcdir)/sources/images/wayland.png \ 49 $(srcdir)/sources/images/xwayland-architecture.png 69 …dirs := $(builddir)/en-US $(builddir)/en-US/images $(html_destdir) $(html_destdir)/css $(html_dest… 73 html_img_targets = $(addprefix $(html_destdir)/images/,$(notdir $(img_sources))) 74 doxygen_img_targets := $(doxygen_img_sources:$(doxydir)/xml/%=$(html_destdir)/images/%) 75 map_targets := $(map_sources:$(doxydir)/xml/%=$(builddir)/en-US/images/%) [all …]
|
/third_party/ffmpeg/libavformat/ |
D | icodec.c | 43 IcoImage * images; member 90 ico->images = av_malloc_array(ico->nb_images, sizeof(IcoImage)); in read_header() 91 if (!ico->images) in read_header() 103 av_freep(&ico->images); in read_header() 110 ico->images[i].nb_pal = avio_r8(pb); in read_header() 111 if (ico->images[i].nb_pal == 255) in read_header() 112 ico->images[i].nb_pal = 0; in read_header() 116 ico->images[i].size = avio_rl32(pb); in read_header() 117 if (ico->images[i].size <= 0) { in read_header() 118 av_log(s, AV_LOG_ERROR, "Invalid image size %d\n", ico->images[i].size); in read_header() [all …]
|
/third_party/uboot/u-boot-2020.01/arch/sh/lib/ |
D | bootm.c | 52 int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images) in do_bootm_linux() argument 55 void (*kernel) (void) = (void (*)(void))images->ep; in do_bootm_linux() 58 = (unsigned char *)image_get_load(images->legacy_hdr_os); in do_bootm_linux() 62 unsigned long size = images->ep - (unsigned long)param; in do_bootm_linux() 81 if (images->rd_start || images->rd_end) { in do_bootm_linux() 100 GET_INITRD_START(images->rd_start, CONFIG_SYS_SDRAM_BASE)); in do_bootm_linux() 102 images->rd_end - images->rd_start); in do_bootm_linux()
|
/third_party/uboot/u-boot-2020.01/arch/m68k/lib/ |
D | bootm.c | 50 int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images) in do_bootm_linux() argument 55 struct lmb *lmb = &images->lmb; in do_bootm_linux() 74 ret = image_setup_linux(images); in do_bootm_linux() 78 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))images->ep; in do_bootm_linux() 94 (*kernel)(kbd, images->initrd_start, images->initrd_end, in do_bootm_linux() 95 images->cmdline_start, images->cmdline_end); in do_bootm_linux()
|
/third_party/uboot/u-boot-2020.01/common/spl/ |
D | spl_fit.c | 42 static int spl_fit_get_image_name(const void *fit, int images, in spl_fit_get_image_name() argument 96 static int spl_fit_get_image_node(const void *fit, int images, in spl_fit_get_image_node() argument 103 err = spl_fit_get_image_name(fit, images, type, index, &str); in spl_fit_get_image_node() 109 node = fdt_subnode_offset(fit, images, str); in spl_fit_get_image_node() 281 void *fit, int images, ulong base_offset) in spl_fit_append_fdt() argument 293 node = spl_fit_get_image_node(fit, images, FIT_FDT_PROP, 0); in spl_fit_append_fdt() 323 static int spl_fit_record_loadable(const void *fit, int images, int index, in spl_fit_record_loadable() argument 331 ret = spl_fit_get_image_name(fit, images, "loadables", in spl_fit_record_loadable() 336 node = spl_fit_get_image_node(fit, images, "loadables", index); in spl_fit_record_loadable() 373 int images, ret; in spl_load_simple_fit() local [all …]
|