Home
last modified time | relevance | path

Searched full:slices (Results 1 – 25 of 108) sorted by relevance

12345

/freebsd/sys/dev/fdt/
H A Dfdt_slicer.c47 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
63 /* Nodes with a compatible property are not slices. */ in fill_slices_from_node()
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()
[all …]
/freebsd/sys/geom/
H A Dgeom_flashmap.c68 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 Dgeom_slice.c65 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 Dgeom_slice.h61 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/sbin/fdisk/
H A Dfdisk.840 BIOS slices can be used to break the disk up into several pieces.
50 you can have one or more slices with one active.
54 utility can be used to divide space on the disk into slices and set one
100 only modifies explicitly specified slices, unless
102 is also given, in which case all existing slices are deleted (marked
120 is used, you are not asked if you really want to write the slices
212 The disk is divided into three slices that happen to fill the disk.
276 After all the slices are processed,
374 slices (the
378 Non-bootable slices do not have this restriction.
[all …]
/freebsd/sys/contrib/device-tree/Bindings/timestamp/
H A Dnvidia,tegra194-hte.yaml17 a bitmap array arranged in 32bit slices where each bit represent signal/line
43 nvidia,slices:
50 GTE instances for both Tegra194 and Tegra234 has 3 slices. The Tegra194
51 LIC instance has 11 slices and Tegra234 LIC has 17 slices.
84 nvidia,slices:
95 nvidia,slices:
106 nvidia,slices:
/freebsd/usr.sbin/boot0cfg/
H A Dboot0cfg.852 .Dq slices
71 and data (an embedded table of defined slices).
111 Specify slices to be enabled/disabled, where
113 is an integer between 0 (no slices enabled) and 0xf (all four slices
138 (The MBR may be updated to flag slices as
148 Values between 1 and 4 refer to slices; a value of 5 refers to the
158 Verbose: display information about the slices defined, etc.
176 To enable just slices 1 and 3 in the menu:
/freebsd/sys/dev/bhnd/cores/chipc/
H A Dchipc_slicer.c58 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 Dchipc_slicer.h45 struct flash_slice *slices, int *nslices);
47 struct flash_slice *slices, int *nslices);
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOUniversalWriter.cpp261 buildFatArchList(ArrayRef<Slice> Slices) { in buildFatArchList()
264 sizeof(MachO::fat_header) + Slices.size() * sizeof(FatArchTy); in buildFatArchList()
266 for (const auto &S : Slices) { in buildFatArchList()
294 ArrayRef<Slice> Slices, in writeUniversalBinaryToStream()
297 buildFatArchList<FatArchTy>(Slices); in writeUniversalBinaryToStream()
319 for (size_t Index = 0, Size = Slices.size(); Index < Size; ++Index) { in writeUniversalBinary()
320 MemoryBufferRef BufferRef = Slices[Index].getBinary()->getMemoryBufferRef(); in writeUniversalBinary()
331 Error object::writeUniversalBinaryToStream(ArrayRef<Slice> Slices, in writeUniversalBinary()
335 FatHeader.nfat_arch = Slices.size();
340 return writeUniversalArchsToStream<MachO::fat_arch_64>(FatHeader, Slices,
244 buildFatArchList(ArrayRef<Slice> Slices) buildFatArchList() argument
273 writeUniversalBinaryToStream(ArrayRef<Slice> Slices,raw_ostream & Out) writeUniversalBinaryToStream() argument
314 writeUniversalBinary(ArrayRef<Slice> Slices,StringRef OutputFileName) writeUniversalBinary() argument
[all...]
/freebsd/share/man/man4/
H A Dmxge.4119 This value determines the maximum number of slices the driver
124 When using multiple slices, the NIC hashes traffic to different slices
127 Using multiple slices requires that your motherboard and Myri10GE NIC
134 slices.
/freebsd/sys/contrib/ncsw/user/env/
H A Dxx.c152 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()
217 /* Convert alignment and size to number of slices */ in XX_MallocSmart()
243 unsigned int start, slices; in XX_FreeSmart() local
256 slices = XX_MallocSmartMap[start]; in XX_FreeSmart()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DRecordsSlice.cpp304 createInterfaceFile(const Records &Slices, StringRef InstallName) { in createInterfaceFile() argument
307 for (auto &S : Slices) { in createInterfaceFile()
322 for (auto &S : Slices) { in createInterfaceFile()
337 llvm::MachO::convertToInterfaceFile(const Records &Slices) { in convertToInterfaceFile() argument
339 if (Slices.empty()) in convertToInterfaceFile()
343 for (auto &S : Slices) { in convertToInterfaceFile()
350 File = createInterfaceFile(Slices, *InstallNames.begin()); in convertToInterfaceFile()
352 File->addDocument(createInterfaceFile(Slices, IN)); in convertToInterfaceFile()
H A DTextStub.cpp41 archs: [ armv7, armv7s, arm64 ] # the list of architecture slices that are
54 - archs: [ arm64 ] # the list of architecture slices
70 archs: [ armv7, armv7s, arm64 ] # the list of architecture slices that are
88 - archs: [ arm64 ] # the list of architecture slices
99 - archs: [ arm64 ] # the list of architecture slices
111 archs: [ armv7, armv7s, arm64 ] # the list of architecture slices that are
129 - archs: [ arm64 ] # the list of architecture slices
142 - archs: [ arm64 ] # the list of architecture slices
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachOUniversalWriter.h41 // binaries. This is also needed to order the slices so the total
89 // force arm64-family to follow after all other slices for
102 Error writeUniversalBinary(ArrayRef<Slice> Slices, StringRef OutputFileName,
106 ArrayRef<Slice> Slices, raw_ostream &Out,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp584 /// Representation of the alloca slices.
586 /// This class represents the slices of an alloca which are formed by its
588 /// for the slices used and we reflect that in this structure. The uses are
589 /// stored, sorted by increasing beginning offset and with unsplittable slices
590 /// starting at a particular offset before splittable slices.
593 /// Construct the slices of a particular alloca.
598 /// If this is true, the slices are never fully built and should be
602 /// Support for iterating over the slices.
607 iterator begin() { return Slices.begin(); } in begin()
608 iterator end() { return Slices.end(); } in end()
[all …]
/freebsd/stand/common/
H A Ddisk.h70 * Active MBR slices (marked as bootable) are preferred over inactive. GPT
72 * if there are multiple slices/partitions of a given type, the first one
109 * Print information about slices on a disk.
/freebsd/tests/sys/cddl/zfs/tests/interop/
H A Dinterop.cfg35 # 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/libkern/
H A Dgsb_crc32.c253 * Number of Slices = ..................... 8 slices
307 * Number of Slices = ..................... 8 slices
361 * Number of Slices = ..................... 8 slices
415 * Number of Slices = ..................... 8 slices
469 * Number of Slices = ..................... 8 slices
[all...]
/freebsd/sys/dev/qat_c2xxx/
H A Dqat_hw15reg.h154 * slices that this request relies upon i.e. the configuration word and
259 uint16_t init_slice_mask; /* Init time flags to set the ownership of the slices */
443 * anymore slices after cipher */
465 * anymore slices after auth */
580 * anymore slices after cipher */
607 * if the data is not to go through anymore slices after auth */
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCScheduleP9.td35 // 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
/freebsd/sys/dev/mxge/
H A Dmxge_mcp.h193 * data2 = slice number if multiple slices are used
206 /* data0 = slice number if multiple slices are used */
281 * If multiple slices are used, data2 contains both the size of the
305 /* data0 = number of slices n (0, 1, ..., n-1) to enable
/freebsd/sys/dev/qat/qat_api/common/compression/include/
H A Ddc_session.h22 * with a maximum of 6 compression slices */
26 * with a maximum of 10 max compression slices */
30 * with a maximum of 24 max compression slices and 32 MEs */
130 * from the slices. It will be a simple
/freebsd/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_partition_tbl.c441 * used, for our BSD slices the "BSD" geom class.
463 * This is needed for non-BSD slices (aka partitions) in partition_tbl_handle_disk()
474 * Here we'll find all the info needed about the BSD slices. in partition_tbl_handle_disk()
485 * Here we'll find all the info needed about the SUN slices. in partition_tbl_handle_disk()
/freebsd/tests/sys/cddl/zfs/tests/grow_pool/
H A Dgrow_pool.cfg33 # Do not make SIZE too large as the three slices may exceed

12345