/src/sys/dev/cardbus/ |
cardbus_exrom.c | 51 /* A PCI ROM is divided into a number of images. Each image has two 52 * data structures, a header located at the start of the image, and a 73 * 0x10 2 image length (in 512 byte blocks) 76 * 0x15 1 indicator (bit 7 indicates final image) 83 * ROM image. This function assumes that the ROM is mapped at 95 size_t addr = 0; /* offset of current rom image */ 102 struct cardbus_rom_image *image; local in function:cardbus_read_exrom 108 "bad header signature in ROM image %u: 0x%04x\n", 114 /* get the ROM image size, in blocks */ 124 image = malloc(sizeof(*image), M_DEVBUF, M_WAITOK) [all...] |
/src/sys/arch/mmeye/stand/bootelf/ |
boot.c | 57 void *image; local in function:main 83 image = &ap[2]; 85 marks[MARK_START] = (u_long)image - start; 95 lp = image; 109 LoadAndReset(void *image) 116 val = (u_long)image;
|
/src/distrib/utils/embedded/conf/ |
usermode.conf | 6 image=usermode.img key
|
rpi_inst.conf | 11 image=$HOME/${board}.img key
|
x86.conf | 5 image=$HOME/${board}.img key
|
evbppc.conf | 4 image=$HOME/${board}.img key
|
riscv.conf | 4 image=$HOME/${board}.img key
|
evbarm.conf | 4 image=$HOME/${board}.img key
|
evbmips.conf | 4 image=$HOME/${board}.img key
|
/src/etc/ |
Makefile | 51 # Flags for creating ISO CDROM image for mac68k and macppc that require 427 # iso-image -- 428 # Standalone target to create a CDROM image after the release 430 # The do-iso-image is to be called from etc.$MACHINE/Makefile.inc 439 iso-image: 441 do-iso-image: .PHONY check_DESTDIR check_RELEASEDIR iso-image-md-post 443 @echo "iso-image created as: ${CDROM_IMAGE}" 445 iso-image-setup: .PHONY check_RELEASEDIR 458 # iso-image-mi - [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/ |
nouveau_nvkm_subdev_bios_base.c | 34 #include <subdev/bios/image.h> 151 struct nvbios_image image; local in function:nvkm_bios_new 166 if (nvbios_image(bios, idx++, &image)) { 167 bios->image0_size = image.size; 168 while (nvbios_image(bios, idx++, &image)) { 169 if (image.type == 0xe0) { 170 bios->imaged_addr = image.base;
|
nouveau_nvkm_subdev_bios_shadow.c | 33 #include <subdev/bios/image.h> 60 struct nvbios_image image; local in function:shadow_image 64 image.base = 0; 65 image.type = 0; 66 image.size = mthd->func->size(mthd->data); 67 image.last = 1; 75 if (!nvbios_image(bios, idx, &image)) { 76 nvkm_debug(subdev, "image %d invalid\n", idx); 81 image.base, image.type, image.size) [all...] |
/src/sys/external/bsd/drm2/dist/drm/qxl/ |
qxl_image.c | 40 struct qxl_drm_image *image, 56 list_add_tail(&chunk->head, &image->chunk_list); 66 struct qxl_drm_image *image; local in function:qxl_image_alloc_objects 69 image = kmalloc(sizeof(struct qxl_drm_image), GFP_KERNEL); 70 if (!image) 73 INIT_LIST_HEAD(&image->chunk_list); 75 ret = qxl_alloc_bo_reserved(qdev, release, sizeof(struct qxl_image), &image->bo); 77 kfree(image); 81 ret = qxl_allocate_chunk(qdev, release, image, sizeof(struct qxl_data_chunk) + stride * height); 83 qxl_bo_unref(&image->bo) 114 struct qxl_image *image; local in function:qxl_image_init_helper [all...] |
/src/ |
Makefile | 66 # iso-image: 67 # Create CD-ROM image in RELEASEDIR/images. 70 # iso-image-source: 71 # Create CD-ROM image with source in RELEASEDIR/images. 74 # live-image: 75 # Create bootable live image for emulators or USB stick etc. 79 # install-image: 80 # Create bootable installation image for USB stick etc. 404 # Create a CD-ROM image. 407 iso-image: .PHON [all...] |
/src/games/warp/ |
object.h | 31 char image; member in struct:object
|
/src/sbin/nvmectl/ |
firmware.c | 91 * The NVMe spec does not explicitly state a maximum firmware image 93 * for the size and offset fields in the Firmware Image Download 192 char *p, *image = NULL; local in function:firmware 227 image = optarg; 240 "activate ([-a]) firmware image action\n" 276 read_image_file(image, &buf, &size); 280 "firmware image (%s) to controller %s.\n" 282 "overwrite an existing firmware image.\n", 283 image, controller); 286 "image on controller %s.\n [all...] |
/src/sys/arch/mac68k/nubus/ |
grf_nubus.c | 83 load_image_data(void * data, struct image_data *image) 87 memcpy(&image->size, d , 4); 88 memcpy(&image->offset, d + 4, 4); 89 memcpy(&image->rowbytes, d + 8, 2); 90 memcpy(&image->top, d + 10, 2); 91 memcpy(&image->left, d + 12, 2); 92 memcpy(&image->bottom, d + 14, 2); 93 memcpy(&image->right, d + 16, 2); 94 memcpy(&image->version, d + 18, 2); 95 memcpy(&image->packType, d + 20, 2) 136 struct image_data image_store, image; local in function:grfmv_attach [all...] |
/src/sys/arch/amiga/stand/bootblock/elf2bb/ |
elf2bb.c | 95 void *image; local in function:main 143 image = mmap(0, 65536, PROT_READ, MAP_FILE|MAP_PRIVATE, ifd, 0); 144 if (image == MAP_FAILED) 147 eh = (Elf32_Ehdr *)image; /* XXX endianness */ 160 sh = (Elf32_Shdr *)(image + be32toh(eh->e_shoff)); 161 shstrtab = (char *)(image + 197 symtab = (Elf32_Sym *)(image + 201 strtab = image + be32toh(sh[i].sh_offset); 236 errx(1, "%s: resulting image too big %d+%d+%d=%d", 262 image + be32toh(sh[i].sh_offset) [all...] |
/src/sys/dev/ic/ |
bt485.c | 102 char curimage[512]; /* cursor image data */ 111 #define DATA_CURSHAPE_CHANGED 0x04 /* cursor size, image, mask changed */ 322 char r[2], g[2], b[2], image[512], mask[512]; local in function:bt485_set_cursor 352 error = copyin(cursorp->image, image, icount); 386 memcpy(data->curimage, image, icount); 430 if (cursorp->image != NULL) { 432 error = copyout(data->curimage, cursorp->image, count); 516 * Write the cursor image data:
|
hd44780var.h | 87 uint8_t *image; /* characters of screen */ member in struct:hlcd_screen
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/acr/ |
priv.h | 61 u8 *image; member in struct:nvkm_acr_hsfw
|
/src/sys/external/mit/xen-include-public/dist/xen/include/public/ |
kexec.h | 109 * Control is transferred to the image entry point with the host in 112 * - The image may be executed on any PCPU and all other PCPUs are 119 * - The image segments have writeable 1:1 virtual to machine 129 * Load/Unload kernel image for kexec or kdump. 131 * image == relocation information for kexec (ignored for unload) [in] 137 xen_kexec_image_t image; member in struct:xen_kexec_load_v1 171 * A contiguous chunk of a kexec image and it's destination machine 186 * Load a kexec image into memory. 189 * The image is relocated prior to being executed. 191 * For KEXEC_TYPE_CRASH images, each segment of the image must resid [all...] |
/src/usr.bin/mail/ |
glob.h | 59 EXTERN int image; /* File descriptor for image of msg */ variable in typeref:typename:EXTERN int
|
/src/usr.sbin/makefs/cd9660/ |
cd9660_eltorito.c | 135 mode_msg = "Assigned boot image to 1.44 emulation mode"; 139 mode_msg = "Assigned boot image to 1.2 emulation mode"; 143 mode_msg = "Assigned boot image to 2.88 emulation mode"; 147 mode_msg = "Assigned boot image to no emulation mode"; 159 printf("New image has size %d, uses %d 512-byte sectors\n", 183 /* TODO : Need to do anything about the boot image in the tree? */ 186 /* First boot image is initial/default entry. */ 198 struct cd9660_boot_image *image; local in function:cd9660_eltorito_add_boot_option 202 /* Find the last image added */ 203 TAILQ_FOREACH(image, &diskStructure->boot_images, image_list) [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
disp.h | 86 struct nouveau_bo *image[2]; member in struct:nv04_display
|