| /src/sys/uvm/ |
| uvm_amap.c | 67 amap_roundup_slots(int slots) 70 return kmem_roundup_size(slots * sizeof(int)) / sizeof(int); 150 amap_alloc1(int slots, int padslots, int flags) 177 totalslots = amap_roundup_slots(slots + padslots); 184 amap->am_nslot = slots; 237 int slots, padslots; local 240 AMAP_B2SLOT(slots, sz); 243 amap = amap_alloc1(slots, padslots, waitf); 322 int slots; local 329 slots = amap->am_maxslot 707 u_int slots, lcv, slot, stop; local 827 u_int slots, lcv; local [all...] |
| uvm_aobj.c | 84 ((elt)->slots[UAO_SWHASH_ELT_PAGESLOT_IDX(idx)]) 116 int count; /* our number of active slots */ 117 int slots[UAO_SWHASH_CLUSTER_SIZE]; /* the slots */ member in struct:uao_swhash_elt 237 memset(elt->slots, 0, sizeof(elt->slots)); 1179 int slot = elt->slots[i]; 1358 int slot = elt->slots[j]; 1367 elt->slots[j] = 0; 1396 * the swap slots we've freed [all...] |
| uvm_swap.c | 152 volatile uint32_t *swd_encmap; /* bitmap of encrypted slots */ 787 int count, slots; local 803 * Allocate space (slots) for pointers to all swapdevs 810 slots = uvmexp.nswapdev; 812 if (slots > misc) /* we never need more than requested */ 813 slots = misc; 828 sdpsize = (size_t)slots * sizeof sdp; 891 if (++count <= slots) 909 if (misc > slots) /* the number of storage slots */ [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/ |
| amdgpu_dce_link_encoder.c | 1218 uint32_t *slots) 1224 *slots = stream_allocation->slot_count; 1227 *slots = 0; 1240 uint32_t slots = 0; local 1257 &slots); 1260 slots = 0; 1265 DP_MSE_SAT_SLOT_COUNT0, slots); 1271 &slots); 1274 slots = 0; 1279 DP_MSE_SAT_SLOT_COUNT1, slots); [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn10/ |
| amdgpu_dcn10_link_encoder.c | 1184 uint32_t *slots) 1190 *slots = stream_allocation->slot_count; 1193 *slots = 0; 1206 uint32_t slots = 0; local 1224 &slots); 1227 slots = 0; 1232 DP_MSE_SAT_SLOT_COUNT0, slots); 1238 &slots); 1241 slots = 0; 1246 DP_MSE_SAT_SLOT_COUNT1, slots); [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ |
| nouveau_dma.c | 150 nv50_dma_wait(struct nouveau_channel *chan, int slots, int count) 155 ret = nv50_dma_push_wait(chan, slots + 1); 193 nouveau_dma_wait(struct nouveau_channel *chan, int slots, int size) 199 return nv50_dma_wait(chan, slots, size);
|
| nouveau_dma.h | 35 int nouveau_dma_wait(struct nouveau_channel *, int slots, int size);
|
| /src/sys/external/bsd/drm2/dist/drm/radeon/ |
| radeon_dp_mst.c | 73 int slots) 86 val = NI_DP_MSE_SAT_SLOT_COUNT0(slots) | NI_DP_MSE_SAT_SRC0(fe); 147 new_attribs[idx].slots = drm_dp_mst_get_vcpi_slots(&mst_conn->mst_mgr, mst_enc->port); 153 new_attribs[i].slots != mst_conn->cur_stream_attribs[i].slots) { 154 radeon_dp_mst_set_stream_attrib(primary, i, new_attribs[i].fe, new_attribs[i].slots); 156 mst_conn->cur_stream_attribs[i].slots = new_attribs[i].slots; 163 mst_conn->cur_stream_attribs[i].slots = 0; 398 int ret __unused, slots; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/include/ |
| grph_object_defs.h | 186 struct slot_layout_info slots[MAX_BOARD_SLOTS]; member in struct:board_layout_info
|
| /src/sys/kern/ |
| subr_thmap.c | 206 atomic_thmap_ptr_t slots[LEVEL_SIZE]; member in struct:__anon6882 463 ASSERT(atomic_load_relaxed(&node->slots[slot]) == THMAP_NULL); 472 atomic_store_relaxed(&node->slots[slot], child); 482 ASSERT(atomic_load_relaxed(&node->slots[slot]) != THMAP_NULL); 488 atomic_store_relaxed(&node->slots[slot], THMAP_NULL); 545 node = atomic_load_consume(&parent->slots[slot]); 632 node = atomic_load_consume(&parent->slots[off]); 687 target = atomic_load_relaxed(&node->slots[*slot]); 778 target = atomic_load_relaxed(&parent->slots[slot]); // tagged offset 832 atomic_store_release(&parent->slots[slot], THMAP_GETOFF(thmap, child)) [all...] |
| /src/sys/compat/linux/common/ |
| linux_cdrom.h | 179 struct linux_cdrom_slot slots[LINUX_CDROM_MAX_SLOTS]; member in struct:linux_cdrom_changer_info
|
| /src/sys/external/bsd/drm2/dist/drm/i915/display/ |
| intel_dp_mst.c | 60 int bpp, slots = -EINVAL; local 72 slots = drm_dp_atomic_find_vcpi_slots(state, &intel_dp->mst_mgr, 74 if (slots == -EDEADLK) 75 return slots; 76 if (slots >= 0) 80 if (slots < 0) { 81 DRM_DEBUG_KMS("failed finding vcpi slots:%d\n", slots); 82 return slots; 91 crtc_state->dp_m_n.tu = slots; [all...] |
| /src/sys/arch/powerpc/powerpc/ |
| openfirm.c | 868 uint32_t slots[16]; member in struct:__anon1811 888 args.slots[i] = (uintptr_t)OF_buf; 894 args.slots[i] = (uintptr_t)va_arg(ap, uint32_t *); 901 rv = args.slots[i]; 905 *va_arg(ap, uint32_t *) = args.slots[i];
|
| /src/common/lib/libc/gen/ |
| ptree.c | 1071 const pt_bitlen_t slots = 1 << PTN_BRANCH_BITLEN(parent); local 1074 for (slot = 0; slot < slots; slot++) { 1079 for (slot = 0; slot < slots; slot++) { 1143 const pt_bitlen_t slots = 1 << bitlen; local 1170 for (slot = 0; slot < slots; slot++) {
|
| /src/sys/fs/nfs/common/ |
| nfs_commonsubs.c | 4070 struct nfsslot *slots, struct mbuf **reply, uint16_t maxslot) 4079 if (seqid == slots[slotid].nfssl_seq) { 4081 if (slots[slotid].nfssl_inprog != 0) 4083 else if (slots[slotid].nfssl_reply != NULL) { 4085 *reply = slots[slotid].nfssl_reply; 4086 slots[slotid].nfssl_reply = NULL; 4088 slots[slotid].nfssl_inprog = 1; 4092 slots[slotid].nfssl_inprog = 1; 4093 } else if ((slots[slotid].nfssl_seq + 1) == seqid) { 4094 m_freem(slots[slotid].nfssl_reply) [all...] |
| /src/sys/arch/sparc64/doc/ |
| TODO | 30 - ofwboot: tlb_init_sun4v() hardcodes number of slots to 64
|
| /src/sbin/nvmectl/ |
| logpage.c | 305 u_int i, slots; local 316 slots = 1; 318 slots = MIN(__SHIFTOUT(cdata->frmw, NVME_ID_CTRLR_FRMW_NSLOT), 321 for (i = 0; i < slots; i++) {
|
| /src/sys/dev/pci/ |
| if_bwfm_pci.c | 1027 int s, slots; local 1031 for (slots = if_rxr_get(rxring, 8); slots > 0; slots--) { 1057 if_rxr_put(rxring, slots); 1068 int s, slots; local 1072 for (slots = if_rxr_get(&sc->sc_rxbuf_ring, sc->sc_max_rxbufpost); 1073 slots > 0; slots--) { 1099 if_rxr_put(&sc->sc_rxbuf_ring, slots); [all...] |
| /src/sys/arch/powerpc/booke/ |
| e500_tlb.c | 841 u_int slots = 0, nextslot = 0; local 847 slots += memsize / size; 848 if (slots > 4) 851 if (slots > tlb1->tlb1_numfree - 1) 855 for (; nextslot < slots; nextslot++) {
|
| /src/sys/external/bsd/drm/dist/shared-core/ |
| r128_cce.c | 140 int slots = R128_READ(R128_GUI_STAT) & R128_GUI_FIFOCNT_MASK; local 141 if (slots >= entries)
|
| mach64_dma.c | 62 int slots = 0, i; local 65 slots = (MACH64_READ(MACH64_FIFO_STAT) & MACH64_FIFO_SLOT_MASK); 66 if (slots <= (0x8000 >> entries)) 71 DRM_INFO("failed! slots=%d entries=%d\n", slots, entries);
|
| /src/sys/external/bsd/drm2/dist/drm/amd/amdkfd/ |
| kfd_events.c | 108 /* Oldest user mode expects 256 event slots */ 113 * Compatibility with old user mode: Only use signal slots 496 uint64_t *slots = page_slots(p->signal_page); local 511 if (slots[id] != UNSIGNALED_EVENT_SLOT) 516 * iterate over the signal slots and lookup 520 if (slots[id] != UNSIGNALED_EVENT_SLOT) {
|
| /src/sys/net/npf/ |
| npf_ruleset.c | 70 /* Number of array slots and active rules. */ 144 npf_ruleset_create(size_t slots) 146 size_t len = offsetof(npf_ruleset_t, rs_rules[slots]); 153 rlset->rs_slots = slots;
|
| /src/usr.sbin/sysinst/arch/mac68k/ |
| md.c | 596 getFreeLabelEntry(slots) 597 char *slots; 602 if (i != RAW_PART && slots[i] == 0) 963 * Clear out record of partition slots already in use 971 * the c partition, we only need 7 partition slots on the screen.
|
| /src/sys/external/bsd/drm2/dist/include/drm/ |
| drm_dp_mst_helper.h | 62 * @num_slots: number of slots for this PBN 177 * @tx_slots: transmission slots for this device. 236 /* slots are protected by mstb->mgr->qlock */ 613 * @pbn_div: PBN to slots divisor. 754 struct drm_dp_mst_port *port, int pbn, int slots);
|