| /NextBSD/contrib/gcc/ |
| HD | pointer-set.c | 38 void **slots; member 81 result->slots = XCNEWVEC (void *, result->n_slots); in pointer_set_create() 89 XDELETEVEC (pset->slots); in pointer_set_destroy() 103 if (pset->slots[n] == p) in pointer_set_contains() 105 else if (pset->slots[n] == 0) in pointer_set_contains() 119 insert_aux (void *p, void **slots, size_t n_slots, size_t log_slots) in insert_aux() argument 124 if (slots[n] == p || slots[n] == 0) in insert_aux() 153 void *value = pset->slots[i]; in pointer_set_insert() 158 XDELETEVEC (pset->slots); in pointer_set_insert() 161 pset->slots = new_slots; in pointer_set_insert() [all …]
|
| /NextBSD/sys/compat/linuxkpi/common/src/ |
| HD | linux_radix.c | 71 node = node->slots[radix_pos(index, height--)]; in radix_tree_lookup() 73 item = node->slots[radix_pos(index, 0)]; in radix_tree_lookup() 98 node = node->slots[radix_pos(index, height--)]; in radix_tree_delete() 102 item = node->slots[idx]; in radix_tree_delete() 108 node->slots[idx] = NULL; in radix_tree_delete() 165 node->slots[0] = root->rnode; in radix_tree_insert() 178 if (node->slots[idx] == NULL) in radix_tree_insert() 180 node = node->slots[idx]; in radix_tree_insert() 203 node->slots[idx] = temp[height - 1]; in radix_tree_insert() 205 node = node->slots[idx]; in radix_tree_insert() [all …]
|
| /NextBSD/contrib/subversion/subversion/libsvn_delta/ |
| HD | xdelta.c | 145 struct block *slots; member 177 for (; blocks->slots[h].pos != NO_POSITION; h = (h + 1) & blocks->max) in add_block() 178 if (blocks->slots[h].adlersum == adlersum) in add_block() 179 if (memcmp(blocks->data + blocks->slots[h].pos, blocks->data + pos, in add_block() 183 blocks->slots[h].adlersum = adlersum; in add_block() 184 blocks->slots[h].pos = pos; in add_block() 198 for (; blocks->slots[h].pos != NO_POSITION; h = (h + 1) & blocks->max) in find_block() 199 if (blocks->slots[h].adlersum == adlersum) in find_block() 200 if (memcmp(blocks->data + blocks->slots[h].pos, data, in find_block() 202 return blocks->slots[h].pos; in find_block() [all …]
|
| /NextBSD/sys/dev/sdhci/ |
| HD | sdhci_pci.c | 120 struct sdhci_slot slots[6]; member 289 int bar, err, rid, slots, i; in sdhci_pci_attach() local 307 slots = pci_read_config(dev, PCI_SLOT_INFO, 1); in sdhci_pci_attach() 308 bar = PCI_SLOT_INFO_FIRST_BAR(slots); in sdhci_pci_attach() 309 slots = PCI_SLOT_INFO_SLOTS(slots); in sdhci_pci_attach() 310 if (slots > 6 || bar > 5) { in sdhci_pci_attach() 312 slots, bar); in sdhci_pci_attach() 328 for (i = 0; i < slots; i++) { in sdhci_pci_attach() 329 struct sdhci_slot *slot = &sc->slots[sc->num_slots]; in sdhci_pci_attach() 356 struct sdhci_slot *slot = &sc->slots[i]; in sdhci_pci_attach() [all …]
|
| HD | sdhci_fdt.c | 74 struct sdhci_slot slots[MAX_SLOTS]; member 146 struct sdhci_slot *slot = &sc->slots[i]; in sdhci_fdt_intr() 190 int err, slots, rid, i; in sdhci_fdt_attach() local 204 slots = sc->num_slots; /* number of slots determined in probe(). */ in sdhci_fdt_attach() 206 for (i = 0; i < slots; i++) { in sdhci_fdt_attach() 207 struct sdhci_slot *slot = &sc->slots[sc->num_slots]; in sdhci_fdt_attach() 240 struct sdhci_slot *slot = &sc->slots[i]; in sdhci_fdt_attach() 259 struct sdhci_slot *slot = &sc->slots[i]; in sdhci_fdt_detach()
|
| /NextBSD/sys/sparc64/fhc/ |
| HD | clkbrd.c | 107 int i, slots; in clkbrd_attach() local 131 slots = 4; in clkbrd_attach() 136 slots = 16; in clkbrd_attach() 139 slots = 8; in clkbrd_attach() 147 slots = 5; in clkbrd_attach() 152 slots); in clkbrd_attach()
|
| /NextBSD/sys/dev/sound/macio/ |
| HD | aoa.c | 63 u_int slots; /* # of slots */ member 79 dma->slots = dma->bufsz / dma->blksz; in aoa_dma_set_program() 81 for (i = 0; i < dma->slots; ++i) { in aoa_dma_set_program() 91 dma->slots + 1 /* branch_slot */ in aoa_dma_set_program() 98 dbdma_insert_branch(dma->channel, dma->slots, 0); in aoa_dma_set_program() 101 dbdma_insert_stop(dma->channel, dma->slots + 1); in aoa_dma_set_program() 293 for (i = 0; i < dma->slots; ++i) in aoa_chan_trigger() 330 dma->slot = (dma->slot + 1) % dma->slots; in aoa_interrupt()
|
| /NextBSD/contrib/libarchive/libarchive/ |
| HD | archive_read_set_format.c | 40 int r1, r2, slots, i; in archive_read_set_format() local 91 slots = sizeof(a->formats) / sizeof(a->formats[0]); in archive_read_set_format() 93 for (i = 0; i < slots; i++, a->format++) { in archive_read_set_format()
|
| /NextBSD/tests/sys/mac/bsdextended/ |
| HD | ugidfw_test.c | 201 int count, slots; in main() local 244 slots = bsde_get_rule_slots(sizeof(errorstr), errorstr); in main() 245 if (slots == -1) in main()
|
| /NextBSD/sys/netpfil/ipfw/ |
| HD | dn_sched_qfq.c | 221 struct qfq_class *slots[QFQ_MAX_SLOTS]; member 430 cl->next = grp->slots[i]; in qfq_slot_insert() 431 grp->slots[i] = cl; in qfq_slot_insert() 441 struct qfq_class **h = &grp->slots[grp->front]; in qfq_front_slot_remove() 468 return grp->slots[grp->front]; in qfq_slot_scan() 552 cl = grp->slots[grp->front]; in qfq_dequeue() 713 pprev = &grp->slots[i]; 720 if (!grp->slots[i]) 764 } else if (!grp->slots[grp->front]) { 849 if (g->slots[j]) in dump_groups() [all …]
|
| /NextBSD/usr.sbin/ppp/ |
| HD | ipcp.c | 106 u_char slots; member 387 ipcp->cfg.vj.slots, ipcp->cfg.vj.slotcomp ? "with" : "without"); in ipcp_Show() 427 int slots; in ipcp_vjset() local 429 slots = atoi(arg->argv[arg->argn+1]); in ipcp_vjset() 430 if (slots < 4 || slots > 16) in ipcp_vjset() 432 arg->bundle->ncp.ipcp.cfg.vj.slots = slots; in ipcp_vjset() 459 ipcp->cfg.vj.slots = DEF_VJ_STATES; in ipcp_Init() 587 ((ipcp->cfg.vj.slots - 1) << 8) + in ipcp_Setup() 591 sl_compress_init(&ipcp->vj.cslc, ipcp->cfg.vj.slots - 1); in ipcp_Setup() 782 req.slots = (ipcp->my_compproto >> 8) & 255; in IpcpSendConfigReq() [all …]
|
| /NextBSD/sys/dev/patm/ |
| HD | if_patm_tx.c | 127 slots2cr(struct patm_softc *sc, u_int slots) in slots2cr() argument 129 return ((slots * IFP2IFATM(sc->ifp)->mib.pcr + sc->mmap->tst_size - 2) / in slots2cr() 143 u_int slots = cbr2slots(sc, vcc); in patm_tx_vcc_can_open() local 145 if (slots > sc->tst_free + sc->tst_reserve) in patm_tx_vcc_can_open() 1116 u_int slots; in patm_tst_alloc() local 1125 slots = cbr2slots(sc, vcc); in patm_tst_alloc() 1126 vcc->scd->slots = slots; in patm_tst_alloc() 1127 sc->bwrem -= slots2cr(sc, slots); in patm_tst_alloc() 1130 vcc->vcc.tparam.pcr, IFP2IFATM(sc->ifp)->mib.pcr, sc->mmap->tst_size, slots); in patm_tst_alloc() 1135 pspc = pmax / slots; in patm_tst_alloc() [all …]
|
| /NextBSD/contrib/llvm/lib/Target/X86/ |
| HD | X86CallingConv.td | 302 // Integer/FP values get stored in stack slots that are 8 bytes in size and 306 // Long doubles get stack slots whose size and alignment depends on the 310 // Vectors get 16-byte stack slots that are 16-byte aligned. 313 // 256-bit vectors get 32-byte stack slots that are 32-byte aligned. 317 // 512-bit vectors get 64-byte stack slots that are 64-byte aligned. 364 // Integer/FP values get stored in stack slots that are 8 bytes in size and 368 // Long doubles get stack slots whose size and alignment depends on the 413 // Integer/FP values get stored in stack slots that are 8 bytes in size and 427 // floating-point arguments are aligned to 4 byte and stored in 4 byte slots. 429 // in 8 byte stack slots. [all …]
|
| /NextBSD/lib/libdispatch/src/ |
| HD | voucher_internal.h | 582 unsigned int slots); 623 unsigned int slots) in _voucher_activity_buffer_tracepoint_get() argument 626 slots, relaxed); in _voucher_activity_buffer_tracepoint_get() 628 return (_voucher_activity_tracepoint_t)vab + (idx - slots); in _voucher_activity_buffer_tracepoint_get() 636 unsigned int slots) in _voucher_activity_tracepoint_get_from_activity() argument 639 return vab ? _voucher_activity_buffer_tracepoint_get(vab, slots) : NULL; in _voucher_activity_tracepoint_get_from_activity() 644 _voucher_activity_tracepoint_get(unsigned int slots) in _voucher_activity_tracepoint_get() argument 649 return _voucher_activity_tracepoint_get_from_activity(va, slots); in _voucher_activity_tracepoint_get()
|
| /NextBSD/contrib/llvm/lib/Target/XCore/ |
| HD | XCoreCallingConv.td | 19 // Integer values get stored in stack slots that are 4 bytes in 37 // Integer values get stored in stack slots that are 4 bytes in
|
| /NextBSD/sys/gnu/dts/arm/ |
| HD | exynos5410-smdk5410.dts | 42 num-slots = <1>; 54 num-slots = <1>;
|
| HD | exynos5260-xyref5260.dts | 69 num-slots = <1>; 85 num-slots = <1>;
|
| HD | rk3066a-bqcurie2.dts | 154 num-slots = <1>; 164 num-slots = <1>;
|
| HD | rk3288-evb.dtsi | 114 num-slots = <1>; 131 num-slots = <1>;
|
| /NextBSD/contrib/llvm/lib/Target/Mips/ |
| HD | MipsCallingConv.td | 81 // Integer values get stored in stack slots that are 4 bytes in 85 // Integer values get stored in stack slots that are 8 bytes in 157 // All stack parameter slots become 64-bit doublewords and are 8-byte aligned. 177 // All stack parameter slots become 64-bit doublewords and are 8-byte aligned. 236 // Integer values get stored in stack slots that are 4 bytes in 240 // Integer values get stored in stack slots that are 8 bytes in 276 // Stack parameter slots for f64 are 64-bit doublewords and 8-byte aligned. 292 // Stack parameter slots for i64 and f64 are 64-bit doublewords and 325 // Stack parameter slots for i32 and f32 are 32-bit words and 4-byte aligned.
|
| /NextBSD/contrib/binutils/binutils/ |
| HD | rdcoff.c | 74 debug_type slots[COFF_SLOTS]; member 82 struct coff_slots *slots; member 112 pps = &types->slots; in coff_get_slot() 131 return (*pps)->slots + indx; in coff_get_slot() 674 types.slots = NULL; in parse_coff()
|
| /NextBSD/sys/fs/nfs/ |
| HD | nfs_commonsubs.c | 4043 struct nfsslot *slots, struct mbuf **reply, uint16_t maxslot) in nfsv4_seqsession() argument 4052 if (seqid == slots[slotid].nfssl_seq) { in nfsv4_seqsession() 4054 if (slots[slotid].nfssl_inprog != 0) in nfsv4_seqsession() 4056 else if (slots[slotid].nfssl_reply != NULL) { in nfsv4_seqsession() 4058 *reply = slots[slotid].nfssl_reply; in nfsv4_seqsession() 4059 slots[slotid].nfssl_reply = NULL; in nfsv4_seqsession() 4061 slots[slotid].nfssl_inprog = 1; in nfsv4_seqsession() 4065 slots[slotid].nfssl_inprog = 1; in nfsv4_seqsession() 4066 } else if ((slots[slotid].nfssl_seq + 1) == seqid) { in nfsv4_seqsession() 4067 if (slots[slotid].nfssl_reply != NULL) in nfsv4_seqsession() [all …]
|
| /NextBSD/sys/compat/linuxkpi/common/include/linux/ |
| HD | radix-tree.h | 43 void *slots[RADIX_TREE_MAP_SIZE]; member
|
| /NextBSD/contrib/subversion/subversion/libsvn_subr/ |
| HD | string.c | 1353 const apr_size_t slots = (resta > restb ? restb : resta); in svn_string__similarity() local 1371 svn_membuf__ensure(buffer, 2 * (slots + 1) * sizeof(apr_size_t)); in svn_string__similarity() 1372 svn_membuf__nzero(buffer, (slots + 2) * sizeof(apr_size_t)); in svn_string__similarity() 1374 curr = prev + slots + 1; in svn_string__similarity() 1380 for (i = 1; i <= slots; ++i) in svn_string__similarity() 1396 lcs += prev[slots]; in svn_string__similarity()
|
| /NextBSD/sys/dev/ofw/ |
| HD | openfirm.c | 291 cell_t slots[16]; in OF_interpret() local 298 status = OFW_INTERPRET(ofw_obj, cmd, nreturns, slots); in OF_interpret() 304 *va_arg(ap, cell_t *) = slots[i++]; in OF_interpret()
|