Home
last modified time | relevance | path

Searched refs:slice (Results 1 – 25 of 272) sorted by relevance

1234567891011

/freebsd-14.2/sys/geom/
H A Dgeom_flashmap.c80 (uintmax_t)slice->sl_end, slice->sl_name, in g_flashmap_print()
81 (uintmax_t)(slice->sl_end - slice->sl_start) / 1024); in g_flashmap_print()
88 struct g_flashmap_slice *slice; in g_flashmap_modify() local
97 g_flashmap_print(slice); in g_flashmap_modify()
101 slice->sl_start, in g_flashmap_modify()
102 slice->sl_end - slice->sl_start + 1, in g_flashmap_modify()
114 slice->sl_start, in g_flashmap_modify()
115 slice->sl_end - slice->sl_start + 1, in g_flashmap_modify()
174 free(slice, M_FLASHMAP); in g_flashmap_taste()
188 struct g_flashmap_slice *slice; in g_flashmap_load() local
[all …]
/freebsd-14.2/sys/contrib/openzfs/lib/libzutil/os/linux/
H A Dzutil_import_os.c173 rdsk_node_t *slice; in zpool_open_func() local
190 slice->rn_hdl = hdl; in zpool_open_func()
197 free(slice); in zpool_open_func()
210 free(slice); in zpool_open_func()
216 slice->rn_hdl = hdl; in zpool_open_func()
223 free(slice); in zpool_open_func()
298 rdsk_node_t *slice; in zpool_find_import_blkid() local
340 slice->rn_lock = lock; in zpool_find_import_blkid()
342 slice->rn_hdl = hdl; in zpool_find_import_blkid()
345 error = zfs_path_order(slice->rn_name, &slice->rn_order); in zpool_find_import_blkid()
[all …]
/freebsd-14.2/sys/contrib/openzfs/lib/libzutil/os/freebsd/
H A Dzutil_import_os.c189 rdsk_node_t *slice; in zpool_find_import_blkid() local
220 slice->rn_name = zutil_strdup(hdl, path); in zpool_find_import_blkid()
221 slice->rn_vdev_guid = 0; in zpool_find_import_blkid()
222 slice->rn_lock = lock; in zpool_find_import_blkid()
223 slice->rn_avl = *slice_cache; in zpool_find_import_blkid()
224 slice->rn_hdl = hdl; in zpool_find_import_blkid()
225 slice->rn_labelpaths = B_FALSE; in zpool_find_import_blkid()
226 slice->rn_order = IMPORT_ORDER_DEFAULT; in zpool_find_import_blkid()
230 free(slice->rn_name); in zpool_find_import_blkid()
231 free(slice); in zpool_find_import_blkid()
[all …]
/freebsd-14.2/stand/uboot/
H A Dmain.c214 *slice = D_SLICEWILD; in get_load_device()
246 *slice = dev->d_slice; in get_load_device()
297 *slice = strtoul(p, &endp, 10); in get_load_device()
303 *slice = D_SLICEWILD; in get_load_device()
317 *slice = D_SLICEWILD; in get_load_device()
337 *slice = D_SLICEWILD; in get_load_device()
344 char slice[32]; in print_disk_probe_info() local
348 strlcpy(slice, "<none>", sizeof(slice)); in print_disk_probe_info()
350 strlcpy(slice, "<auto>", sizeof(slice)); in print_disk_probe_info()
352 snprintf(slice, sizeof(slice), "%d", currdev.d_disk.d_slice); in print_disk_probe_info()
[all …]
/freebsd-14.2/stand/common/
H A Ddisk.c234 int rc, slice, partition; in disk_open() local
261 slice = dev->d_slice; in disk_open()
293 } else if (slice >= 0) { in disk_open()
295 if (slice == 0) in disk_open()
303 slice = part.index; in disk_open()
366 dev->d_slice = slice; in disk_open()
415 int unit, slice, partition; in disk_parsedev() local
429 slice = D_SLICEWILD; in disk_parsedev()
432 slice = D_SLICENONE; in disk_parsedev()
443 slice = strtol(np, &cp, 10); in disk_parsedev()
[all …]
/freebsd-14.2/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/
H A Dargon2-core.h116 uint8_t slice; member
159 if (position->slice == 0) { in index_alpha()
167 position->slice * instance->segment_length + in index_alpha()
171 position->slice * instance->segment_length + in index_alpha()
199 start_position = (position->slice == ARGON2_SYNC_POINTS - 1) in index_alpha()
201 : (position->slice + 1) * instance->segment_length; in index_alpha()
H A Dargon2-fill-block-ssse3.c112 input_block.v[2] = position->slice; in generate_addresses()
161 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) { in fill_segment_ssse3()
173 if ((0 == position.pass) && (0 == position.slice)) { in fill_segment_ssse3()
179 position.slice * instance->segment_length + starting_index; in fill_segment_ssse3()
213 if ((position.pass == 0) && (position.slice == 0)) { in fill_segment_ssse3()
H A Dargon2-fill-block-avx2.c113 input_block.v[2] = position->slice; in generate_addresses()
162 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) { in fill_segment_avx2()
174 if ((0 == position.pass) && (0 == position.slice)) { in fill_segment_avx2()
180 position.slice * instance->segment_length + starting_index; in fill_segment_avx2()
214 if ((position.pass == 0) && (position.slice == 0)) { in fill_segment_avx2()
H A Dargon2-fill-block-avx512f.c118 input_block.v[2] = position->slice; in generate_addresses()
167 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) { in fill_segment_avx512f()
179 if ((0 == position.pass) && (0 == position.slice)) { in fill_segment_avx512f()
185 position.slice * instance->segment_length + starting_index; in fill_segment_avx512f()
219 if ((position.pass == 0) && (position.slice == 0)) { in fill_segment_avx512f()
H A Dargon2-fill-block-ref.c124 input_block.v[2] = position->slice; in generate_addresses()
160 (position.pass != 0 || position.slice >= ARGON2_SYNC_POINTS / 2)) { in fill_segment_ref()
172 if ((0 == position.pass) && (0 == position.slice)) { in fill_segment_ref()
178 position.slice * instance->segment_length + starting_index; in fill_segment_ref()
209 if ((position.pass == 0) && (position.slice == 0)) { in fill_segment_ref()
/freebsd-14.2/contrib/llvm-project/lld/ELF/
H A DEhFrame.cpp65 d = d.slice(1); in readByte()
72 d = d.slice(count); in skipBytes()
80 StringRef s = toStringRef(d.slice(0, end - d.begin())); in readString()
81 d = d.slice(s.size() + 1); in readString()
93 d = d.slice(1); in skipLeb128()
127 d = d.slice(size); in skipAugP()
/freebsd-14.2/sys/contrib/openzfs/lib/libzutil/
H A Dzutil_import.c1255 rdsk_node_t *slice; in zpool_find_import_scan_add_slice() local
1259 free(slice); in zpool_find_import_scan_add_slice()
1265 slice->rn_hdl = hdl; in zpool_find_import_scan_add_slice()
1272 free(slice); in zpool_find_import_scan_add_slice()
1385 rdsk_node_t *slice; in zpool_find_import_scan() local
1431 free(slice); in zpool_find_import_scan()
1456 rdsk_node_t *slice; in zpool_find_import_impl() local
1468 for (slice = avl_first(cache); slice; in zpool_find_import_impl()
1469 (slice = avl_walk(cache, slice, AVL_AFTER))) in zpool_find_import_impl()
1530 slice->rn_name, slice->rn_order, in zpool_find_import_impl()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_array_ref.h67 ArrayRef<T> slice(uptr N, uptr M) const { in slice() function
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);
H A Dsanitizer_leb128.h44 T slice = byte & 0x7f; in DecodeSLEB128() local
45 value |= slice << shift; in DecodeSLEB128()
77 T slice = byte & 0x7f; in DecodeULEB128() local
78 value += slice << shift; in DecodeULEB128()
/freebsd-14.2/stand/i386/boot2/
H A Dboot2.c95 uint8_t slice; member
211 dsk.slice = *(uint8_t *)PTOV(ARGS + 1) + 1; in main()
350 MAKEBOOTDEV(dev_maj[dsk.type], dsk.slice, dsk.unit, dsk.part), in load()
434 dsk.slice = WHOLE_DISK_SLICE; in parse()
436 dsk.slice = *arg - '0' + 1; in parse()
437 if (dsk.slice > NDOSPART + 1) in parse()
482 sl = dsk.slice; in dskread()
489 dsk.slice == COMPATIBILITY_SLICE) in dskread()
492 if (dsk.slice == WHOLE_DISK_SLICE) in dskread()
493 dsk.slice = sl; in dskread()
/freebsd-14.2/sys/dev/mxge/
H A Dif_mxge.c1236 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_reset()
1269 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_reset()
1412 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_rem_sysctls()
1571 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_add_sysctls()
2188 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_qflush()
3098 for (slice = 0; slice < sc->num_slices; slice++) in mxge_free_mbufs()
3173 for (slice = 0; slice < sc->num_slices; slice++) in mxge_free_rings()
3352 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_alloc_rings()
3543 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_open()
3573 for (slice = 0; slice < sc->num_slices; slice++) { in mxge_open()
[all …]
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DXCOFFDump.cpp144 printRawData(Bytes.slice(Index, 4), Address + Index, OS, STI); \
156 printRawData(Bytes.slice(Index, 4), Address, OS, STI); in dumpTracebackTable()
179 if (support::endian::read32be(Bytes.slice(I, 4).data()) != 0) in dumpTracebackTable()
187 printRawData(Bytes.slice(Index, 4), Address + Index, FOS, STI); in dumpTracebackTable()
201 printRawData(Bytes.slice(Index, N), Address + Index, OS, STI); in dumpTracebackTable()
308 printRawData(Bytes.slice(Index, PrintLen), Address + Index, OS, STI); in dumpTracebackTable()
402 printRawData(Bytes.slice(Index, LineLength), Address + Index, OS, STI); in dumpTracebackTable()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamRef.h115 RefType slice(uint64_t Offset, uint64_t Len) const { in slice() function
200 BinarySubstreamRef slice(uint64_t Off, uint64_t Size) const { in slice() function
201 BinaryStreamRef SubSub = StreamData.slice(Off, Size); in slice()
205 return slice(N, size() - N); in drop_front()
207 BinarySubstreamRef keep_front(uint64_t N) const { return slice(0, N); } in keep_front()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DArrayRef.h195 ArrayRef<T> slice(size_t N, size_t M) const { in slice() function
201 ArrayRef<T> slice(size_t N) const { return slice(N, size() - N); } in slice() function
206 return slice(N, size() - N);
212 return slice(0, size() - N);
376 MutableArrayRef<T> slice(size_t N, size_t M) const { in slice() function
382 MutableArrayRef<T> slice(size_t N) const { in slice() function
383 return slice(N, this->size() - N); in slice()
389 return slice(N, this->size() - N);
394 return slice(0, this->size() - N);
/freebsd-14.2/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 can receive up to two iops per cycle
/freebsd-14.2/sys/i386/include/
H A Dbootinfo.h100 #define MAKEBOOTDEV(type, slice, unit, partition) \ argument
101 (((type) << B_TYPESHIFT) | ((slice) << B_SLICESHIFT) | \
/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DExportTrie.cpp248 node->edges.emplace_back(pivotSymbol->getName().slice(lastPos, pos), in sortAndBuild()
254 sortAndBuild(vec.slice(0, i), node, lastPos, pos); in sortAndBuild()
255 sortAndBuild(vec.slice(j), node, lastPos, pos); in sortAndBuild()
263 vec = vec.slice(i, j - i); in sortAndBuild()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocStream.h111 return ArrayRef(Entries).slice(Lists[LI].EntryOffset, getNumEntries(LI)); in getEntries()
117 .slice(Entries[EI].ByteOffset, getNumBytes(EI)); in getBytes()
121 return ArrayRef(Comments).slice(Entries[EI].CommentOffset, in getComments()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DStringTableBuilder.cpp117 multikeySort(Vec.slice(0, I), Pos); in multikeySort()
118 multikeySort(Vec.slice(J), Pos); in multikeySort()
123 Vec = Vec.slice(I, J - I); in multikeySort()

1234567891011