| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/ |
| vmm.h | 27 bool sparse:1; member in struct:nvif_vmm::__anon5167 38 int nvif_vmm_get(struct nvif_vmm *, enum nvif_vmm_get, bool sparse,
|
| if000c.h | 28 __u8 sparse; member in struct:nvif_vmm_page_v0 41 __u8 sparse; member in struct:nvif_vmm_get_v0
|
| /src/external/gpl3/gcc/dist/gcc/ |
| sparseset.h | 24 /* Implementation of the Briggs and Torczon sparse set representation. 25 The sparse set representation was first published in: 27 "An Efficient Representation for Sparse Sets", 30 The sparse set representation is suitable for integer sets with a 32 the set. If an element I is in the set, then sparse[I] is the 33 index of I in the dense vector, and dense[sparse[I]] == I. The dense 47 Additionally, the sparse set representation supports enumeration of 50 This makes it a competitive choice for iterating over relatively sparse 65 sparse sets will often be superior to alternatives such as simple 67 hash tables, linked lists, etc., if the set is sufficiently sparse 91 SPARSESET_ELT_TYPE *sparse; \/* Sparse array. *\/ member in struct:sparseset_def [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| sparseset.h | 24 /* Implementation of the Briggs and Torczon sparse set representation. 25 The sparse set representation was first published in: 27 "An Efficient Representation for Sparse Sets", 30 The sparse set representation is suitable for integer sets with a 32 the set. If an element I is in the set, then sparse[I] is the 33 index of I in the dense vector, and dense[sparse[I]] == I. The dense 47 Additionally, the sparse set representation supports enumeration of 50 This makes it a competitive choice for iterating over relatively sparse 65 sparse sets will often be superior to alternatives such as simple 67 hash tables, linked lists, etc., if the set is sufficiently sparse 91 SPARSESET_ELT_TYPE *sparse; \/* Sparse array. *\/ member in struct:sparseset_def [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/ |
| nouveau_nvkm_subdev_mmu_uvmm.c | 283 bool getref, mapref, sparse; local 290 sparse = args->v0.sparse; 298 ret = nvkm_vmm_get_locked(vmm, getref, mapref, sparse, 327 args->v0.sparse = !!(type & NVKM_VMM_PAGE_SPARSE);
|
| vmm.h | 26 /* Entire page table sparse. 30 bool sparse:1; member in struct:nvkm_vmm_pt 35 * child page table, or indicate the PDE is marked as sparse. 65 nvkm_vmm_pxe_func sparse; member in struct:nvkm_vmm_desc_func 175 bool sparse, u8 page, u8 align, u64 size,
|
| /src/bin/dd/ |
| dd.c | 81 static off_t pending = 0; /* pending seek if sparse */ 485 /* If there are pending sparse blocks, make sure 486 * to write out the final block un-sparse 543 int sparse, i; local 544 sparse = 1; /* Is buffer sparse? */ 547 sparse = 0; 550 if (sparse) { 560 err(EXIT_FAILURE, "%s: seek error creating sparse file", 576 st.sparse += pending/out.dbsz [all...] |
| dd.h | 96 uint64_t sparse; /* # of sparse output blocks */ member in struct:__anon7
|
| /src/sys/arch/alpha/pci/ |
| pci_swiz_bus_mem_chipdep.c | 80 * CHIP_S_MEM_BASE Sparse Mem space base to use. 83 * for the sparse memory space arena. If this is 89 * sparse memory space arena's boundary tags. Ignored 92 * The number of device-provided static sparse memory 709 * This address isn't mapped into sparse space; don't 716 * If this address isn't mapped into dense or sparse, we lose. 720 printf("mem: address 0x%lx not in dense or sparse space\n", 729 printf("mem: %s dense, %s sparse\n", mustd ? "need" : "want", 747 printf("mem: failed to get sparse (%d)\n", errors); 803 printf("mem: freeing sparse\n") 830 int sparse, haves, haved; local [all...] |
| /src/sys/arch/hp300/dev/ |
| topcat.c | 320 bool sparse = false; local 375 sparse = true; 381 if (!sparse) {
|
| /src/external/bsd/libarchive/dist/libarchive/test/ |
| test_sparse_basic.c | 52 /* The logic to compare sparse file data read from disk with the 63 struct sparse { struct 68 static void create_sparse_file(const char *, const struct sparse *); 71 * does support sparse files is certain to store a gap this big 84 * Create a sparse file on Windows. 117 create_sparse_file(const char *path, const struct sparse *s) 175 * FIEMAP, which can detect 'hole' of a sparse file, has 182 const struct sparse sparse_file[] = { 183 /* This hole size is too small to create a sparse 223 * FreeBSD and Solaris can detect 'hole' of a sparse fil [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/ |
| mmu.h | 14 bool sparse:1; /* Unmapped PDEs/PTEs will not trigger MMU faults. */ member in struct:nvkm_vma
|
| /src/external/bsd/libarchive/dist/tar/ |
| write.c | 763 int64_t sparse = offset - progress; local 771 while (sparse > 0) { 772 if (sparse > (int64_t)bsdtar->buff_size) 775 ns = (size_t)sparse; 794 sparse -= bytes_written;
|
| /src/usr.sbin/makefs/ |
| makefs.h | 177 int sparse; /* sparse image, don't fill it with zeros */ member in struct:makefs_fsinfo
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
| kvmgt.c | 1313 struct vfio_region_info_cap_sparse_mmap *sparse = NULL; local 1356 sparse = kzalloc(struct_size(sparse, areas, nr_areas), 1358 if (!sparse) 1361 sparse->header.id = VFIO_REGION_INFO_CAP_SPARSE_MMAP; 1362 sparse->header.version = 1; 1363 sparse->nr_areas = nr_areas; 1365 sparse->areas[0].offset = 1367 sparse->areas[0].size = vgpu_aperture_sz(vgpu); 1418 if ((info.flags & VFIO_REGION_INFO_FLAG_CAPS) && sparse) { [all...] |
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_read_support_format_tar.c | 100 struct gnu_sparse sparse[4]; member in struct:archive_entry_header_gnutar 121 /* For "GNU.sparse.name" and other similar path extensions. */ 174 const struct gnu_sparse *sparse, int length); 245 static const size_t sparse_map_limit = 8 * 1048576; /* Longest sparse map: 8MiB */ 566 * "non-sparse" files are really just sparse files with 619 /* Remove exhausted entries from sparse list. */ 657 * current sparse block. */ 691 /* Free the sparse list. */ 950 /* Reconcile GNU sparse attributes * 3109 struct gnu_sparse sparse[21]; member in struct:extended [all...] |
| archive_write_disk_windows.c | 1046 * On Windows, A creating sparse file requires a special mark. 1052 int sparse = 0; local 1057 sparse = 1;/* we have a hole. */ 1062 if (sparse) { 1064 /* Mark this file as sparse. */
|