/freebsd/sys/dev/fdt/ |
H A D | fdt_slicer.c | 47 struct flash_slice *slices, int *slices_num); 51 fill_slices_from_node(phandle_t node, struct flash_slice *slices, int *count) in fill_slices_from_node() argument 99 slices[i].base = base; in fill_slices_from_node() 100 slices[i].size = size; in fill_slices_from_node() 101 slices[i].label = label; in fill_slices_from_node() 102 slices[i].flags = flags; in fill_slices_from_node() 112 struct flash_slice *slices, int *slices_num) in fill_slices() argument 120 if (slices == NULL) { in fill_slices() 135 return fill_slices_from_node(node, slices, slices_num); in fill_slices() 137 return fill_slices_from_node(child, slices, slices_num); in fill_slices()
|
/freebsd/sys/dev/bhnd/cores/chipc/ |
H A D | chipc_slicer.c | 58 struct flash_slice *slices, int *nslices); 81 struct flash_slice *slices, int *nslices) in chipc_slicer_cfi() argument 102 return (chipc_slicer_walk(dev, sc->sc_res, slices, nslices)); in chipc_slicer_cfi() 107 struct flash_slice *slices, int *nslices) in chipc_slicer_spi() argument 134 return (chipc_slicer_walk(dev, sc->sc_flash_res, slices, nslices)); in chipc_slicer_spi() 142 struct flash_slice *slices, int *nslices) in chipc_slicer_walk() argument 186 slices[*nslices].base = ofs + fs_ofs; in chipc_slicer_walk() 189 slices[*nslices].size = fw_len - fs_ofs; in chipc_slicer_walk() 190 slices[*nslices].label = "rootfs"; in chipc_slicer_walk()
|
H A D | chipc_slicer.h | 45 struct flash_slice *slices, int *nslices); 47 struct flash_slice *slices, int *nslices);
|
/freebsd/sys/geom/ |
H A D | geom_flashmap.c | 68 const char *devname, int secsize, struct g_flashmap_head *slices); 85 const char *devname, int secsize, struct g_flashmap_head *slices) in g_flashmap_modify() argument 93 STAILQ_FOREACH(slice, slices, sl_link) { in g_flashmap_modify() 109 STAILQ_FOREACH(slice, slices, sl_link) { in g_flashmap_modify() 186 struct flash_slice *slices; in g_flashmap_load() local 190 slices = malloc(sizeof(struct flash_slice) * FLASH_SLICES_MAX_NUM, in g_flashmap_load() 192 if (slicer(dev, pp->name, slices, &nslices) == 0) { in g_flashmap_load() 197 slice->sl_name = slices[i].label; in g_flashmap_load() 198 slice->sl_start = slices[i].base; in g_flashmap_load() 199 slice->sl_end = slices[i].base + slices[i].size - 1; in g_flashmap_load() [all …]
|
H A D | geom_slice.c | 65 gsp->slices = g_malloc(nslice * sizeof(struct g_slice), in g_slice_alloc() 86 g_free(gsp->slices); in g_slice_free() 108 gsl = &gsp->slices[pp->index]; in g_slice_access() 110 gsl2 = &gsp->slices[u]; in g_slice_access() 172 gsl = &gsp->slices[idx]; in g_slice_finish_hot() 228 gsl = &gsp->slices[idx]; in g_slice_start() 303 gkd->offset += gsp->slices[idx].offset; in g_slice_start() 304 if (gkd->length > gsp->slices[idx].length) in g_slice_start() 305 gkd->length = gsp->slices[idx].length; in g_slice_start() 334 (uintmax_t)gsp->slices[pp->index].offset); in g_slice_dumpconf() [all …]
|
H A D | geom_slice.h | 61 struct g_slice *slices; member 78 struct g_geom * g_slice_new(struct g_class *mp, u_int slices, struct g_provider *pp, struct g_consu…
|
/freebsd/sys/contrib/ncsw/user/env/ |
H A D | xx.c | 152 XX_MallocSmartMapCheck(unsigned int start, unsigned int slices) in XX_MallocSmartMapCheck() argument 157 for (i = start; i < start + slices; i++) in XX_MallocSmartMapCheck() 164 XX_MallocSmartMapSet(unsigned int start, unsigned int slices) in XX_MallocSmartMapSet() argument 170 for (i = start; i < start + slices; i++) in XX_MallocSmartMapSet() 171 XX_MallocSmartMap[i] = ((i == start) ? slices : -1); in XX_MallocSmartMapSet() 175 XX_MallocSmartMapClear(unsigned int start, unsigned int slices) in XX_MallocSmartMapClear() argument 181 for (i = start; i < start + slices; i++) in XX_MallocSmartMapClear() 243 unsigned int start, slices; in XX_FreeSmart() local 256 slices = XX_MallocSmartMap[start]; in XX_FreeSmart() 257 XX_MallocSmartMapClear(start, slices); in XX_FreeSmart()
|
/freebsd/tests/sys/cddl/zfs/tests/interop/ |
H A D | interop.cfg | 35 # We need to repartition the single disk to two slices 46 # We need to repartition the single disk to two slices and allocate
|
/freebsd/sys/sys/ |
H A D | slicer.h | 52 struct flash_slice *slices, int *slices_num);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCScheduleP9.td | 35 // resolved and they can be issued. Each of four execution slices has an 55 // corresponds to one of the four execution slices. 58 // The xa and xb ports can be used to send an iop to either of the two slices 135 // dispatch slot but are dispatched to both the even and odd slices of a
|
H A D | P9InstrResources.td | 17 // - Each superslice is made up of two slices. Therefore, there are 4 slices
|
/freebsd/tests/sys/cddl/zfs/tests/grow_pool/ |
H A D | grow_pool.cfg | 33 # Do not make SIZE too large as the three slices may exceed
|
/freebsd/tests/sys/cddl/zfs/tests/clean_mirror/ |
H A D | default.cfg | 34 # We need to repartition the single disk to two slices
|
/freebsd/sys/dev/mmc/ |
H A D | mmcsd.c | 193 struct flash_slice *slices, int *nslices); 620 struct flash_slice *slices, int *nslices) in mmcsd_slicer() argument 627 if (slices == NULL) in mmcsd_slicer() 641 slices[0].base = sc->enh_base; in mmcsd_slicer() 642 slices[0].size = sc->enh_size; in mmcsd_slicer() 643 slices[0].label = MMCSD_LABEL_ENH; in mmcsd_slicer()
|
/freebsd/tests/sys/cddl/zfs/tests/grow_replicas/ |
H A D | grow_replicas.cfg | 57 # Do not make SIZE too large as the three slices may exceed
|
/freebsd/sys/dev/qat_c2xxx/ |
H A D | qat.c | 1923 int error, slices; in qat_newsession() local 2033 slices = 0; in qat_newsession() 2047 slices = 2; in qat_newsession() 2058 slices = 1; in qat_newsession() 2072 slices = 2; in qat_newsession() 2078 slices = 1; in qat_newsession() 2085 ddesc->qcd_slices[slices] = FW_SLICE_DRAM_WR; in qat_newsession() 2086 edesc->qcd_slices[slices] = FW_SLICE_DRAM_WR; in qat_newsession()
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/migration/ |
H A D | migration.cfg | 41 # We need to repartition the single disk to two slices.
|
/freebsd/sys/geom/part/ |
H A D | g_part_gpt.c | 385 int bootable, error, index, slices, typ; in gpt_update_bootcamp() local 396 slices = 0; in gpt_update_bootcamp() 430 slices |= 1 << index; in gpt_update_bootcamp() 432 if ((slices & 3) == 3) in gpt_update_bootcamp()
|
/freebsd/tools/tools/sysbuild/ |
H A D | README | 29 Create four disk slices:
|
/freebsd/tools/tools/nanobsd/embedded/ |
H A D | common | 257 # Now shuffle all the slices together into the proper layout 555 # slices from working.
|
/freebsd/contrib/llvm-project/lld/docs/ |
H A D | NewLLD.rst | 200 Since we have less synthesized data for ELF, we don't abstract slices of
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | arm_sme.td | 99 // Read horizontal/vertical ZA slices 120 // Write horizontal/vertical ZA slices
|
/freebsd/sys/contrib/device-tree/src/arm64/nvidia/ |
H A D | tegra194.dtsi | 1355 nvidia,slices = <11>; 1578 nvidia,slices = <3>;
|
/freebsd/sys/contrib/openzfs/tests/zfs-tests/include/ |
H A D | libtest.shlib | 1031 # disk slices from 0 to the total slice number with the same specified
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | images | 4170 >>0x0E ulelong&0xFFFFFF >1 \b, %u slices
|