Home
last modified time | relevance | path

Searched full:slice (Results 1 – 25 of 559) sorted by relevance

12345678910>>...23

/freebsd/sbin/fdisk/
H A Dfdisk.87 .Nd PC slice table maintenance utility
38 a slice table,
43 0 boot code then searches the slice table to determine which
44 slice is marked
47 active slice and, if marked bootable, runs it.
72 display slice information or to interactively edit the slice
74 The second is used to write a slice table using a
81 Change the active slice only.
96 Set slice values using the file
125 Existing slice entries will be cleared
[all …]
/freebsd/sys/geom/
H A Dgeom_flashmap.c69 static void g_flashmap_print(struct g_flashmap_slice *slice);
75 g_flashmap_print(struct g_flashmap_slice *slice) in g_flashmap_print() argument
78 printf("%08jx-%08jx: %s (%juKB)\n", (uintmax_t)slice->sl_start, in g_flashmap_print()
79 (uintmax_t)slice->sl_end, slice->sl_name, in g_flashmap_print()
80 (uintmax_t)(slice->sl_end - slice->sl_start) / 1024); in g_flashmap_print()
87 struct g_flashmap_slice *slice; in g_flashmap_modify() local
93 STAILQ_FOREACH(slice, slices, sl_link) { in g_flashmap_modify()
95 printf("%s: slice ", devname); in g_flashmap_modify()
96 g_flashmap_print(slice); in g_flashmap_modify()
100 slice->sl_start, in g_flashmap_modify()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/ti/
H A Dk3-am65-iot2050-common-pg1.dtsi59 dmas = <&main_udmap 0xc100>, /* egress slice 0 */
60 <&main_udmap 0xc101>, /* egress slice 0 */
61 <&main_udmap 0xc102>, /* egress slice 0 */
62 <&main_udmap 0xc103>, /* egress slice 0 */
63 <&main_udmap 0xc104>, /* egress slice 1 */
64 <&main_udmap 0xc105>, /* egress slice 1 */
65 <&main_udmap 0xc106>, /* egress slice 1 */
66 <&main_udmap 0xc107>, /* egress slice 1 */
67 <&main_udmap 0x4100>, /* ingress slice 0 */
68 <&main_udmap 0x4101>, /* ingress slice 1 */
[all …]
H A Dk3-am654-idk.dtso52 dmas = <&main_udmap 0xc100>, /* egress slice 0 */
53 <&main_udmap 0xc101>, /* egress slice 0 */
54 <&main_udmap 0xc102>, /* egress slice 0 */
55 <&main_udmap 0xc103>, /* egress slice 0 */
56 <&main_udmap 0xc104>, /* egress slice 1 */
57 <&main_udmap 0xc105>, /* egress slice 1 */
58 <&main_udmap 0xc106>, /* egress slice 1 */
59 <&main_udmap 0xc107>, /* egress slice 1 */
61 <&main_udmap 0x4100>, /* ingress slice 0 */
62 <&main_udmap 0x4101>; /* ingress slice 1 */
[all …]
H A Dk3-am654-icssg2.dtso50 dmas = <&main_udmap 0xc300>, /* egress slice 0 */
51 <&main_udmap 0xc301>, /* egress slice 0 */
52 <&main_udmap 0xc302>, /* egress slice 0 */
53 <&main_udmap 0xc303>, /* egress slice 0 */
54 <&main_udmap 0xc304>, /* egress slice 1 */
55 <&main_udmap 0xc305>, /* egress slice 1 */
56 <&main_udmap 0xc306>, /* egress slice 1 */
57 <&main_udmap 0xc307>, /* egress slice 1 */
58 <&main_udmap 0x4300>, /* ingress slice 0 */
59 <&main_udmap 0x4301>; /* ingress slice 1 */
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachOUniversalWriter.h9 // Declares the Slice class and writeUniversalBinary function for writing a
34 class Slice {
40 // P2Alignment field stores slice alignment values from universal
45 Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType,
49 explicit Slice(const MachOObjectFile &O);
51 Slice(const MachOObjectFile &O, uint32_t Align);
56 Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType,
59 static Expected<Slice> create(const Archive &A,
62 static Expected<Slice> create(const IRObjectFile &IRO, uint32_t Align);
86 friend bool operator<(const Slice
[all...]
/freebsd/sys/contrib/openzfs/lib/libzutil/os/linux/
H A Dzutil_import_os.c174 rdsk_node_t *slice; in zpool_open_func() local
187 slice = zutil_alloc(hdl, sizeof (rdsk_node_t)); in zpool_open_func()
188 slice->rn_name = zutil_strdup(hdl, path); in zpool_open_func()
189 slice->rn_vdev_guid = vdev_guid; in zpool_open_func()
190 slice->rn_avl = rn->rn_avl; in zpool_open_func()
191 slice->rn_hdl = hdl; in zpool_open_func()
192 slice->rn_order = IMPORT_ORDER_PREFERRED_1; in zpool_open_func()
193 slice->rn_labelpaths = B_FALSE; in zpool_open_func()
195 if (avl_find(rn->rn_avl, slice, &where)) { in zpool_open_func()
197 free(slice->rn_name); in zpool_open_func()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOUniversalWriter.cpp9 // Defines the Slice class and writeUniversalBinary function for writing a MachO
85 Slice::Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, in Slice() function in Slice
90 Slice::Slice(const MachOObjectFile &O, uint32_t Align) in Slice() function in Slice
96 Slice::Slice(const IRObjectFile &IRO, uint32_t CPUType, uint32_t CPUSubType, in Slice() function in Slice
101 Slice::Slice(const MachOObjectFile &O) : Slice( function in Slice
[all...]
/freebsd/stand/common/
H A Ddisk.c139 /* Open slice with BSD label */ in ptable_print()
234 int rc, slice, partition; in disk_open() local
261 slice = dev->d_slice; in disk_open()
264 DPRINTF("%s unit %d, slice %d, partition %d => %p", disk_fmtdev(dev), in disk_open()
293 } else if (slice >= 0) { in disk_open()
295 if (slice == 0) in disk_open()
298 rc = ptable_getpart(od->table, &part, slice); in disk_open()
303 slice = part.index; in disk_open()
318 * to open raw MBR slice. in disk_open()
324 * If partition is D_PARTWILD and we are looking at a BSD slice, in disk_open()
[all …]
H A Ddisk.h36 * Whole MBR slice:
38 * d_slice = MBR slice number (typically 1..4)
41 * BSD disklabel partition within an MBR slice:
43 * d_slice = MBR slice number (typically 1..4)
57 * partition within the slice.
59 * For both MBR and GPT, to automatically find the 'best' slice and partition,
/freebsd/stand/uboot/
H A Dmain.c175 * Parse a device string into type, unit, slice and partition numbers. A
181 * The returned values for slice and partition are interpreted by
186 * disk<unit>s<slice> disk0s1
187 * disk<unit>s<slice><partition> disk1s2a
197 * <type_name><unit>:<slice> DEV_TYP_STOR
198 * <type_name><unit>:<slice>. DEV_TYP_STOR
199 * <type_name><unit>:<slice>.<partition> DEV_TYP_STOR
203 * Slice numbers are 1-based. 0 is a wildcard.
206 get_load_device(int *type, int *unit, int *slice, int *partition) in get_load_device() argument
215 *slice = D_SLICEWILD; in get_load_device()
[all …]
/freebsd/sys/contrib/openzfs/lib/libzutil/os/freebsd/
H A Dzutil_import_os.c190 rdsk_node_t *slice; in zpool_find_import_blkid() local
220 slice = zutil_alloc(hdl, sizeof (rdsk_node_t)); in zpool_find_import_blkid()
221 slice->rn_name = zutil_strdup(hdl, path); in zpool_find_import_blkid()
222 slice->rn_vdev_guid = 0; in zpool_find_import_blkid()
223 slice->rn_lock = lock; in zpool_find_import_blkid()
224 slice->rn_avl = *slice_cache; in zpool_find_import_blkid()
225 slice->rn_hdl = hdl; in zpool_find_import_blkid()
226 slice->rn_labelpaths = B_FALSE; in zpool_find_import_blkid()
227 slice->rn_order = IMPORT_ORDER_DEFAULT; in zpool_find_import_blkid()
230 if (avl_find(*slice_cache, slice, &where)) { in zpool_find_import_blkid()
[all …]
/freebsd/usr.sbin/boot0cfg/
H A Dboot0cfg.841 .Op Fl s Ar slice
49 slice an i386 machine (PC) is booted.
80 affecting the embedded slice table.
115 Each mask bit enables corresponding slice if set to 1.
116 The least significant bit of the mask corresponds to slice 1,
117 the most significant bit of the mask corresponds to slice 4.
140 and to save slice selection information.)
145 .It Fl s Ar slice
147 .Ar slice .
172 To boot slice 2 on the next boot:
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DRecordsSlice.h36 /// Add unspecified record to slice.
45 /// \return The non-owning pointer to added record in slice.
58 /// \return The non-owning pointer to added record in slice.
69 /// \return The non-owning pointer to added record in slice.
78 /// \return The non-owning pointer to added record in slice.
87 /// \return The non-owning pointer to added record in slice.
94 /// \return The non-owning pointer to record in slice.
101 /// \return The non-owning pointer to record in slice.
112 /// slice.
119 /// \return The non-owning pointer to record in slice.
[all …]
H A DArchitecture.h34 /// Convert a CPU Type and Subtype pair to an architecture slice.
37 /// Convert a name to an architecture slice.
40 /// Convert an architecture slice to a string.
43 /// Convert an architecture slice to a CPU Type and Subtype pair.
46 /// Convert a target to an architecture slice.
/freebsd/sbin/reboot/
H A Dboot_i386.866 constrained by occupying limited fixed space on a given disk or slice.
101 .Ar bios_drive : interface ( unit , Oo Ar slice , Oc Ar part )
134 .It Oo Ar slice , Oc Ns Ar part
146 .Ar slice
147 (1 for the first slice, 2 for the second slice, etc.\&)
148 can be booted from, with the default (if not specified) being the active slice
151 slice.
153 .Ar slice
156 slice (also known as
158 slice) is booted from.
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dti,icssg-prueth.yaml191 dmas = <&main_udmap 0xc300>, /* egress slice 0 */
192 <&main_udmap 0xc301>, /* egress slice 0 */
193 <&main_udmap 0xc302>, /* egress slice 0 */
194 <&main_udmap 0xc303>, /* egress slice 0 */
195 <&main_udmap 0xc304>, /* egress slice 1 */
196 <&main_udmap 0xc305>, /* egress slice 1 */
197 <&main_udmap 0xc306>, /* egress slice 1 */
198 <&main_udmap 0xc307>, /* egress slice 1 */
199 <&main_udmap 0x4300>, /* ingress slice 0 */
200 <&main_udmap 0x4301>; /* ingress slice 1 */
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DLEB128.h144 uint64_t Slice = *p & 0x7f; variable
146 ((Shift == 63 && (Slice << Shift >> Shift) != Slice) ||
147 (Shift > 63 && Slice != 0))) {
153 Value += Slice << Shift;
181 uint64_t Slice = Byte & 0x7f; variable
183 ((Shift == 63 && Slice != 0 && Slice != 0x7f) ||
184 (Shift > 63 && Slice != (Value < 0 ? 0x7f : 0x00)))) {
191 Value |= Slice << Shift;
/freebsd/sys/dev/qat/qat_api/firmware/include/
H A Dicp_qat_hw.h61 /* AUTH SLICE */
106 * Enumeration which is used to define the authentication slice modes.
109 * will configure the QAT Auth Slice to do plain SHA1 hashing while mode1
111 * slice to do SHA1 HMAC with no precomputes (uses key directly)
132 * Definition of the format of the authentication slice configuration
137 /**< Configuration used for setting up the slice */
203 * implemented in SHA3-256 slice will take effect
295 * implemented in SHA3-256 slice will take effect
334 * The derived configuration word for the auth slice is based on the inputs
356 * implemented in the SHA3-256 slice will take effect (default hardware
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_array_ref.h65 /// slice(n, m) - Chop off the first N elements of the array, and keep M
67 ArrayRef<T> slice(uptr N, uptr M) const { in slice() function
72 /// slice(n) - Chop off the first N elements of the array.
73 ArrayRef<T> slice(uptr N) const { return slice(N, size() - N); } in slice() function
78 return slice(N, size() - N);
84 return slice(0, size() - N);
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp145 static Error readMachOHeader(MachOObjectFile *Obj, RecordsSlice &Slice) { in readMachOHeader() argument
147 auto &BA = Slice.getBinaryAttrs(); in readMachOHeader()
172 BA.InstallName = Slice.copyString(LCI.Ptr + DLLC.dylib.name); in readMachOHeader()
180 Slice.copyString(LCI.Ptr + DLLC.dylib.name)); in readMachOHeader()
185 BA.ParentUmbrella = Slice.copyString(LCI.Ptr + SFC.umbrella); in readMachOHeader()
190 BA.AllowableClients.emplace_back(Slice.copyString(LCI.Ptr + SCLC.client)); in readMachOHeader()
202 BA.UUID = Slice.copyString(Stream.str()); in readMachOHeader()
207 BA.RPaths.emplace_back(Slice.copyString(LCI.Ptr + RPLC.path)); in readMachOHeader()
249 static Error readSymbols(MachOObjectFile *Obj, RecordsSlice &Slice, in readSymbols() argument
279 Slice.addRecord(Sym.name(), Flags, GlobalRecord::Kind::Unknown, Linkage); in readSymbols()
[all …]
/freebsd/sys/dev/mxge/
H A Dif_mxge.c1180 int slice, status; in mxge_reset() local
1203 * slice 0. It must also be called *after* in mxge_reset()
1235 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_reset()
1236 rx_done = &sc->ss[slice].rx_done; in mxge_reset()
1240 cmd.data2 = slice; in mxge_reset()
1268 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_reset()
1269 ss = &sc->ss[slice]; in mxge_reset()
1271 ss->irq_claim = irq_claim + (2 * slice); in mxge_reset()
1406 int slice; in mxge_rem_sysctls() local
1411 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_rem_sysctls()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/soc/imx/
H A Dfsl,imx93-src.yaml47 - const: fsl,imx93-src-slice
54 - description: mix slice register region
55 - description: mem slice register region
91 compatible = "fsl,imx93-src-slice";
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DVisitor.cpp161 Ctx.Slice->addObjCIVar(Record, Name, Linkage, Avail, IV, *Access, AC); in recordObjCInstanceVariables()
185 Ctx.Slice->addObjCInterface(Name, Linkage, Avail, D, *Access, IsEHType); in VisitObjCInterfaceDecl()
209 Ctx.Slice->addObjCCategory(InterfaceName, CategoryName, Avail, D, *Access) in VisitObjCCategoryDecl()
244 auto [GR, FA] = Ctx.Slice->addGlobal(getMangledName(D), Linkage, in VisitVarDecl()
298 Ctx.Slice->addGlobal(Name, Linkage, GlobalRecord::Kind::Function, Avail, in VisitFunctionDecl()
490 auto [GR, FA] = Ctx.Slice->addGlobal(Name, RecordLinkage::Exported, in emitVTableSymbols()
505 auto [GR, FA] = Ctx.Slice->addGlobal(Name, RecordLinkage::Exported, in emitVTableSymbols()
535 Ctx.Slice->addGlobal(Name, RecordLinkage::Exported, in emitVTableSymbols()
541 Ctx.Slice->addGlobal(Name, RecordLinkage::Exported, in emitVTableSymbols()
634 auto [GR, FA] = Ctx.Slice->addGlobal(Name, RecordLinkage::Exported, in VisitCXXRecordDecl()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCScheduleP9.td33 // As iops are dispatched to a slice, they are held in an independent slice
54 // x0, x1, x2, and x3 are the dedicated slice dispatch ports, where each
61 // b0 and b1 are dedicated dispatch ports into the branch slice.
142 // Even slice ('E')- certain operations must be sent only to an even slice.
143 // Also consumes odd dispatch slice slot of the same superslice at dispatch
156 // operation per slice for the super- slice to which they are dispatched
161 // Each execution and branch slice ca
[all...]

12345678910>>...23