| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/ |
| H A D | syntax2.C | 14 template <class T> class image 17 template <class U> image(const image<U> ©); 20 template <class T> template <class U> image<T>::image(const image<U> ©) 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-src/gnu/usr.bin/gcc/gcc/ |
| H A D | unwind-dw2-fde-darwin.c | 103 live_image_destructor (struct live_images *image) in live_image_destructor() argument 105 if (image->object_info) in live_image_destructor() 108 __deregister_frame_info_bases (image->fde); in live_image_destructor() 110 free (image->object_info); in live_image_destructor() 111 image->object_info = NULL; in live_image_destructor() 112 if (image->examined_p & ALLOCED_IMAGE_MASK) 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() [all …]
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | unwind-dw2-fde-darwin.c | 107 live_image_destructor (struct live_images *image) in live_image_destructor() argument 109 if (image->object_info) in live_image_destructor() 121 __deregister_frame_info_bases (image->fde); in live_image_destructor() 129 free (image->object_info); in live_image_destructor() 130 image->object_info = NULL; in live_image_destructor() 131 if (image->examined_p & ALLOCED_IMAGE_MASK) 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() [all …]
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | images | 4 # images: file(1) magic for image formats (see also "iff", and "c-lang" for 20 1 belong&0xfff7ffff 0x01010000 Targa image data - Map 24 1 belong&0xfff7ffff 0x00020000 Targa image data - RGB 28 1 belong&0xfff7ffff 0x00030000 Targa image data - Mono 35 0 search/1 P1 Netpbm PBM image text 36 !:mime image/x-portable-bitmap 37 0 search/1 P2 Netpbm PGM image text 38 !:mime image/x-portable-greymap 39 0 search/1 P3 Netpbm PPM image text 40 !:mime image/x-portable-pixmap [all …]
|
| H A D | iff | 27 # 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-src/sys/dev/cardbus/ |
| H A D | cardbus_exrom.c | 106 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-src/gnu/llvm/clang/docs/ |
| H A D | ClangOffloadPackager.rst | 13 This tool bundles device files into a single image containing necessary 15 together. The image format is a small header wrapping around a string map. This 26 format is a serialization of a string map and an image buffer. The binary header 47 of the binary blob containing the information for a single offloading image. We 49 the image and metadata. The offload entry contains information about the device 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) | 61 | uint16_t | offload kind | The producer of the image (e.g. openmp, cuda) | 63 | uint32_t | flags | Generic flags for the image | 69 | uint64_t | image offset | Absolute offset of the device image in bytes | [all …]
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | Docker.rst | 13 We also provide an ``example`` image, which contains placeholders that one would need 14 to fill out in order to produce Dockerfiles for a new docker image. 34 A snapshot of a docker container filesystem is called a *docker image*. 35 One can start a container from a prebuilt docker image. 39 the docker image (see `official 41 details). A minimal Dockerfile typically contains a base image and a number 42 of RUN commands that have to be executed to build the image. When building a new 43 image, docker will first download your base image, mount its filesystem as 45 filesystem modifications, performed while building your image. When the build 46 process is finished, a diff between your image's final filesystem state and the [all …]
|
| /openbsd-src/lib/libelf/ |
| H A D | libelf_memory.c | 42 _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 D | elf_memory.c | 34 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-src/gnu/usr.bin/gcc/contrib/ |
| H A D | paranoia.cc | 201 long image[external_max < internal_max ? internal_max : external_max]; member in real_c_float 217 { memcpy(image, b.image, sizeof(image)); } in real_c_float() 224 { memcpy(image, b.image, sizeof(image)); return *this; } in operator =() 260 real_to_target (image, &f, MODE); in from_long() 282 real_to_target (image, &f, MODE); in from_str() 290 real_from_target (&ai, image, MODE); in binop() 291 real_from_target (&bi, b.image, MODE); in binop() 293 real_to_target (image, &ri, MODE); in binop() 302 real_from_target (&ri, image, MODE); in binop() 335 real_from_target (&ai, image, MODE); in unop() [all …]
|
| /openbsd-src/sys/stand/boot/ |
| H A D | boot.c | 75 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-src/share/misc/ |
| H A D | mime.types | 32 application/vnd.oasis.opendocument.image odi 33 application/vnd.oasis.opendocument.image-template oti 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 [all …]
|
| /openbsd-src/gnu/llvm/lldb/docs/use/ |
| H A D | qemu-testing.rst | 18 * **setup.sh** is used to build the Linux kernel image and QEMU system emulation executable(s) from… 20 * **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 47 rootfs.sh defaults username of generated image to your current username on host computer. 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> [all …]
|
| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | symbolication.py | 462 image = Image.InitWithSBTargetAndSBModule(target, module) 463 obj.images.append(image) 481 for image in self.images: 482 s += ' %s\n' % (image) 487 for image in self.images: 488 if image.identifier == identifier: 489 images.append(image) 493 for image in self.images: 494 if regex.match(image.identifier): 495 images.append(image) [all …]
|
| H A D | crashlog.py | 359 for image in self.images: 360 image.dump(' ') 363 for i, image in enumerate(self.images): 364 if image.identifier == identifier: 369 for image in self.images: 370 if image.identifier == identifier: 371 return image 374 for image in self.images: 375 if regex.match(image.identifier): 376 return image [all …]
|
| /openbsd-src/sys/arch/powerpc64/stand/rdboot/ |
| H A D | rdboot.c | 77 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-src/gnu/usr.sbin/mkhybrid/src/ |
| H A D | more.mapping | 20 .arr Raw 'GKON' 'ARR ' "GraphicConverter - Amber ARR image" 67 .fit Raw 'GKON' 'FITS' "GraphicConverter - Flexible Image Transport (image/x-fits)" 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)" 114 .mac Raw 'ttxt' 'PICT' "SimpleText - PICT Picture (image/x-pict)" [all …]
|
| H A D | README.eltorito | 22 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-src/usr.sbin/makefs/ |
| H A D | msdos.c | 111 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 D | README | 4 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-src/sys/arch/octeon/stand/rdboot/ |
| H A D | rdboot.c | 77 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-src/regress/sbin/newfs/ |
| H A D | checknewfs | 8 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-src/gnu/llvm/llvm/utils/docker/ |
| H A D | build_docker_image.sh | 26 -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.
|
| /openbsd-src/gnu/llvm/llvm/utils/docker/example/ |
| H A D | Dockerfile | 8 # 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.
|