Home
last modified time | relevance | path

Searched refs:image (Results 1 – 25 of 517) sorted by relevance

12345678910>>...21

/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dsyntax2.C14 template <class T> class image
17 template <class U> image(const image<U> &copy);
20 template <class T> template <class U> image<T>::image(const image<U> &copy) in image() function
24 template class image<double>;
25 template class image<double>::image (const image<int> &); // ERROR - parse error
26 template class image<double>::image (image<int>); // ERROR - specified as declarator-id
27 template image<double>::image (const image<int> &);
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dunwind-dw2-fde-darwin.c105 if (image->object_info) in live_image_destructor()
110 free (image->object_info); in live_image_destructor()
111 image->object_info = NULL; in live_image_destructor()
113 free (image->fde); in live_image_destructor()
114 image->fde = NULL; in live_image_destructor()
116 image->examined_p = 0; in live_image_destructor()
117 image->destructor = NULL; in live_image_destructor()
129 struct live_images *image; in examine_objects() local
133 for (; image != NULL; image = image->next) in examine_objects()
175 image->object_info = ob; in examine_objects()
[all …]
/openbsd/gnu/gcc/gcc/
H A Dunwind-dw2-fde-darwin.c109 if (image->object_info) in live_image_destructor()
129 free (image->object_info); in live_image_destructor()
130 image->object_info = NULL; in live_image_destructor()
132 free (image->fde); in live_image_destructor()
133 image->fde = NULL; in live_image_destructor()
135 image->examined_p = 0; in live_image_destructor()
136 image->destructor = NULL; in live_image_destructor()
148 struct live_images *image; in examine_objects() local
152 for (; image != NULL; image = image->next) in examine_objects()
197 image->fde = real_fde; in examine_objects()
[all …]
/openbsd/usr.bin/file/magdir/
H A Dimages64 !:mime image/x-niff
70 !:mime image/tiff
72 !:mime image/tiff
81 !:mime image/png
117 !:mime image/gif
163 # CGM image files
380 # PCX image files
393 >68 byte 0 image,
396 >68 byte >2 image,
397 >68 byte <0 image,
[all …]
H A Diff27 # image formats
28 >8 string ILBMBMHD \b, ILBM interleaved image
31 >8 string RGBN \b, RGBN 12-bit RGB image
32 >8 string RGB8 \b, RGB8 24-bit RGB image
33 >8 string DEEP \b, DEEP TVPaint/XiPaint image
44 >8 string ACBM \b, ACBM continuous image
45 >8 string FAXX \b, FAXX fax image
/openbsd/sys/dev/cardbus/
H A Dcardbus_exrom.c106 struct cardbus_rom_image *image; in cardbus_read_exrom() local
131 image = malloc(sizeof(*image), M_DEVBUF, M_NOWAIT); in cardbus_read_exrom()
132 if (image == NULL) { in cardbus_read_exrom()
136 image->rom_image = rom_image; in cardbus_read_exrom()
137 image->image_size = image_size; in cardbus_read_exrom()
138 image->romt = romt; in cardbus_read_exrom()
140 image_size, &image->romh)) { in cardbus_read_exrom()
142 free(image, M_DEVBUF, sizeof(*image)); in cardbus_read_exrom()
145 SIMPLEQ_INSERT_TAIL(head, image, next); in cardbus_read_exrom()
/openbsd/gnu/llvm/clang/docs/
H A DClangOffloadPackager.rst13 This tool bundles device files into a single image containing necessary
50 image. It contains the fields shown in the following
59 | uint16_t | image kind | The kind of the device image (e.g. bc, cubin) |
69 | uint64_t | image offset | Absolute offset of the device image in bytes |
71 | uint64_t | image size | Size of the device image in bytes |
80 :ref:`image kind<table-image_kind>`.
88 | IMG_None | 0x00 | No image information provided |
90 | IMG_Object | 0x01 | The image is a generic object file |
92 | IMG_Bitcode | 0x02 | The image is an LLVM-IR bitcode file |
94 | IMG_Cubin | 0x03 | The image is a CUDA object file |
[all …]
/openbsd/gnu/llvm/llvm/docs/
H A DDocker.rst35 One can start a container from a prebuilt docker image.
39 the docker image (see `official
43 image, docker will first download your base image, mount its filesystem as
47 base image's filesystem is stored in the resulting image.
54 upstream git repository when building the image.
106 After the image is built you can run bash inside a container based on your image
131 Which image should I choose?
140 you should try Debian10-based image.
147 image.
173 Minimizing docker image size
[all …]
/openbsd/lib/libelf/
H A Dlibelf_memory.c42 _libelf_memory(unsigned char *image, size_t sz, int reporterror) in _libelf_memory() argument
49 assert(image != NULL); in _libelf_memory()
56 e->e_rawfile = image; in _libelf_memory()
64 if (sz > EI_NIDENT && LIBELF_IS_ELF(image)) { in _libelf_memory()
65 e_byteorder = image[EI_DATA]; in _libelf_memory()
66 e_class = image[EI_CLASS]; in _libelf_memory()
67 e_version = image[EI_VERSION]; in _libelf_memory()
92 strncmp((const char *) image, ARMAG, (size_t) SARMAG) == 0) in _libelf_memory()
H A Delf_memory.c34 elf_memory(char *image, size_t sz) in elf_memory() argument
41 if (image == NULL || sz == 0) { in elf_memory()
46 return (_libelf_memory((unsigned char *) image, sz, 1)); in elf_memory()
/openbsd/gnu/usr.bin/gcc/contrib/
H A Dparanoia.cc217 { memcpy(image, b.image, sizeof(image)); } in real_c_float()
508 image = verbose_binop(image, '+', b.image, image + b.image); in operator +=()
513 image = verbose_binop(image, '-', b.image, image - b.image); in operator -=()
518 image = verbose_binop(image, '*', b.image, image * b.image); in operator *=()
523 image = verbose_binop(image, '/', b.image, image / b.image); in operator /=()
541 { return verbose_cmp(image, "<", b.image, image < b.image); } in operator <()
543 { return verbose_cmp(image, "<=", b.image, image <= b.image); } in operator <=()
545 { return verbose_cmp(image, "==", b.image, image == b.image); } in operator ==()
547 { return verbose_cmp(image, "!=", b.image, image != b.image); } in operator !=()
549 { return verbose_cmp(image, ">=", b.image, image >= b.image); } in operator >=()
[all …]
/openbsd/sys/stand/boot/
H A Dboot.c75 strlcpy(cmd.image, kernelfile, sizeof(cmd.image)); in boot()
81 strlcpy(cmd.image, "/bsd.upgrade", sizeof(cmd.image)); in boot()
82 printf("upgrade detected: switching to %s\n", cmd.image); in boot()
92 strlcpy(cmd.image, "/bsd.booted", sizeof(cmd.image)); in boot()
93 printf("unhibernate detected: switching to %s\n", cmd.image); in boot()
100 cmd.bootdev, cmd.image); in boot()
147 strlcpy(cmd.image, kernelfile, sizeof(cmd.image)); in boot()
/openbsd/share/misc/
H A Dmime.types32 application/vnd.oasis.opendocument.image odi
69 image/gif gif
70 image/jpeg jpeg jpg
71 image/png png
72 image/svg+xml svg svgz
73 image/tiff tif tiff
74 image/vnd.wap.wbmp wbmp
75 image/webp webp
76 image/x-icon ico
77 image/x-jng jng
[all …]
/openbsd/gnu/llvm/lldb/docs/use/
H A Dqemu-testing.rst20 * **run-qemu.sh** utilizes QEMU to boot a Linux kernel image with a root file system image.
32 Create Ubuntu root file system image for QEMU system emulation with rootfs.sh
35 **Example:** generate Ubuntu Bionic (armhf) rootfs image of size 1 GB
40 **Example:** generate Ubuntu Focal (arm64) rootfs image of size 2 GB
53 **Example:** Build QEMU binaries and Arm/AArch64 Linux kernel image
59 **Example:** Build Linux kernel image only
88 * Linux kernel image must be built from source using setup.sh or provided via
103 $ sudo bash run-qemu.sh --arch arm --rootfs <path of rootfs image>
104 $ sudo bash run-qemu.sh --arch arm64 --rootfs <path of rootfs image>
109 $ sudo bash run-qemu.sh --arch arm64 --rootfs <path of rootfs image> \
[all …]
/openbsd/gnu/llvm/lldb/examples/python/
H A Dsymbolication.py463 obj.images.append(image)
481 for image in self.images:
482 s += ' %s\n' % (image)
487 for image in self.images:
489 images.append(image)
493 for image in self.images:
499 for image in self.images:
501 return image
536 if image:
703 image = Image(options.file)
[all …]
H A Dcrashlog.py359 for image in self.images:
360 image.dump(' ')
369 for image in self.images:
371 return image
374 for image in self.images:
376 return image
390 if image:
395 for image in self.images:
1012 print(image)
1048 return image, image.add_module(target)
[all …]
/openbsd/sys/arch/powerpc64/stand/rdboot/
H A Drdboot.c77 strlcpy(cmd.image, KERNEL, sizeof(cmd.image)); in main()
90 strlcpy(cmd.image, "/bsd.upgrade", sizeof(cmd.image)); in main()
91 printf("upgrade detected: switching to %s\n", cmd.image); in main()
110 strlcpy(cmd.image, KERNEL, sizeof(cmd.image)); in main()
111 printf("will try %s\n", cmd.image); in main()
/openbsd/gnu/usr.sbin/mkhybrid/src/
H A Dmore.mapping20 .arr Raw 'GKON' 'ARR ' "GraphicConverter - Amber ARR image"
74 .gif Raw 'JVWR' 'GIFf' "JPEGView - GIF Picture (image/gif)"
92 .ief Raw 'GKON' 'IEF ' "GraphicConverter - IEF image (image/ief)"
95 .image Raw 'dCpy' 'dImg' "DiskCopy - Apple DiskCopy Image"
96 .img Raw 'GKON' 'IMGg' "GraphicConverter - GEM bit image/XIMG"
101 .jpe Raw 'JVWR' 'JPEG' "JPEGView - JPEG Picture (image/jpeg)"
102 .jpeg Raw 'JVWR' 'JPEG' "JPEGView - JPEG Picture (image/jpeg)"
103 .jpg Raw 'JVWR' 'JPEG' "JPEGView - JPEG Picture (image/jpeg)"
187 .qdv Raw 'GKON' 'QDVf' "GraphicConverter - QDV image"
198 .rle Raw 'GKON' 'RLE ' "GraphicConverter - RLE image"
[all …]
H A DREADME.eltorito22 size image (exactly 1440k for a 1.44 meg floppy) somewhere in the
23 iso fs. In the headers of the iso fs you place a pointer to this image.
24 The BIOS will then grab this image from the CD and for all purposes it
29 which is an exact image of the boot floppu currently in use. There is
31 floppy handy, you can make a boot image with the command
37 Place this image somewhere in the hierarchy which will be the source
54 as the boot image, and a name like "boot.catalog" seems appropriate.
57 So we have our boot image in the file "boot.image", and we are going to
65 The -b option specifies the boot image to be used (note the path is
76 If your bootable floppy image needs to access the boot floppy, it has
[all …]
/openbsd/usr.sbin/makefs/
H A Dmsdos.c111 msdos_makefs(const char *image, const char *dir, fsnode *root, fsinfo_t *fsopts) in msdos_makefs() argument
117 assert(image != NULL); in msdos_makefs()
142 printf("Creating `%s'\n", image); in msdos_makefs()
143 if (mkfs_msdos(image, NULL, msdos_opt) == -1) in msdos_makefs()
146 fsopts->fd = open(image, O_RDWR); in msdos_makefs()
156 printf("Populating `%s'\n", image); in msdos_makefs()
158 errx(1, "Image file `%s' not created.", image); in msdos_makefs()
162 printf("Image `%s' complete\n", image); in msdos_makefs()
H A DREADME4 makefs - build a file system image from a directory tree
17 makefs creates a file system image from a given directory tree.
50 2 some files couldn't be added during image creation
51 (bad perms, missing file, etc). image will continue
65 the tree to stuff into the image. The structure will
71 - Call an fs-specific routine to build the image based on the
88 (e.g, the requested image will be large enough),
89 create the image, and
90 populate the image
108 the image. When building and populating the image, the implementation
/openbsd/sys/arch/octeon/stand/rdboot/
H A Drdboot.c77 strlcpy(cmd.image, KERNEL, sizeof(cmd.image)); in main()
92 strlcpy(cmd.image, "/bsd.upgrade", sizeof(cmd.image)); in main()
93 printf("upgrade detected: switching to %s\n", cmd.image); in main()
112 strlcpy(cmd.image, KERNEL, sizeof(cmd.image)); in main()
113 printf("will try %s\n", cmd.image); in main()
/openbsd/regress/sbin/newfs/
H A Dchecknewfs8 rm -f $image
19 image=$(mktemp -t imageXXXXXXXXXX);
20 dd if=/dev/random of=$image bs=512 count=$1 2>/dev/null &&
21 vnd=$(vnconfig $image) || exit 1
/openbsd/gnu/llvm/llvm/utils/docker/example/
H A DDockerfile8 # This is an example Dockerfile to build an image that compiles clang.
9 # Replace FIXMEs to prepare your own image.
12 # FIXME: Replace 'ubuntu' with your base image
30 # Stage 2. Produce a minimal release image with build results.
31 # FIXME: Replace 'ubuntu' with your base image.
/openbsd/gnu/llvm/llvm/utils/docker/
H A Dbuild_docker_image.sh26 -s|--source image source dir (i.e. debian10, nvidia-cuda, etc)
27 -d|--docker-repository docker repository for the image
28 -t|--docker-tag docker tag for the image
57 mydocker/debian10-clang-build:latest - an intermediate image used to compile
59 mydocker/clang-debian10:latest - a small image with preinstalled clang.

12345678910>>...21