Searched refs:slots (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-10.1-release/sys/ofed/include/linux/
H A Dlinux_radix.c68 node = node->slots[radix_pos(index, height--)];
70 item = node->slots[radix_pos(index, 0)];
95 node = node->slots[radix_pos(index, height--)];
99 item = node->slots[idx];
105 node->slots[idx] = NULL;
162 node->slots[0] = root->rnode;
175 if (node->slots[idx] == NULL)
177 node = node->slots[idx];
200 node->slots[idx] = temp[height - 1];
202 node = node->slots[id
[all...]
H A Dradix-tree.h40 void *slots[RADIX_TREE_MAP_SIZE]; member in struct:radix_tree_node
/freebsd-10.1-release/contrib/gcc/
H A Dpointer-set.c38 void **slots; member in struct:pointer_set_t
81 result->slots = XCNEWVEC (void *, result->n_slots);
89 XDELETEVEC (pset->slots);
103 if (pset->slots[n] == p)
105 else if (pset->slots[n] == 0)
119 insert_aux (void *p, void **slots, size_t n_slots, size_t log_slots) argument
124 if (slots[n] == p || slots[n] == 0)
153 void *value = pset->slots[i];
158 XDELETEVEC (pset->slots);
[all...]
H A Dreg-stack.c1677 /* These insns operate on the top two stack slots. */
1711 /* These insns operate on the top two stack slots.
1742 /* These insns operate on the top two stack slots./
1773 /* These insns operate on the top two stack slots,
1799 /* These insns operate on the top two stack slots,
2388 bool slots[REG_STACK_SIZE];
2392 /* First pass to determine the free slots. */
2394 slots[reg] = TEST_HARD_REG_BIT (new->reg_set, old->reg[reg]);
2396 /* Second pass to allocate preferred slots. */
2403 if (!slots[nex
2371 bool slots[REG_STACK_SIZE]; local
[all...]
/freebsd-10.1-release/contrib/libarchive/libarchive/
H A Darchive_read_set_format.c40 int r1, r2, slots, i; local
91 slots = sizeof(a->formats) / sizeof(a->formats[0]);
93 for (i = 0; i < slots; i++, a->format++) {
H A Darchive_read.c689 int slots; local
694 slots = sizeof(a->formats) / sizeof(a->formats[0]);
700 for (i = 0; i < slots; i++, a->format++) {
992 int slots; local
1008 slots = sizeof(a->formats) / sizeof(a->formats[0]);
1009 for (i = 0; i < slots; i++) {
1126 "Not enough slots for format registration");
1151 "Not enough slots for filter registration");
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_delta/
H A Dxdelta.c114 /* The largest valid index of slots.
125 struct block *slots;
148 for (; blocks->slots[h].pos != NO_POSITION; h = (h + 1) & blocks->max)
149 if (blocks->slots[h].adlersum == adlersum)
150 if (memcmp(blocks->data + blocks->slots[h].pos, blocks->data + pos,
154 blocks->slots[h].adlersum = adlersum;
155 blocks->slots[h].pos = pos;
168 for (; blocks->slots[h].pos != NO_POSITION; h = (h + 1) & blocks->max)
169 if (blocks->slots[h].adlersum == adlersum)
170 if (memcmp(blocks->data + blocks->slots[
124 struct block *slots; member in struct:blocks
[all...]
/freebsd-10.1-release/sys/sparc64/fhc/
H A Dclkbrd.c107 int i, slots; local
131 slots = 4;
136 slots = 16;
139 slots = 8;
147 slots = 5;
151 device_printf(sc->sc_dev, "Sun Enterprise Exx00 machine: %d slots\n",
152 slots);
/freebsd-10.1-release/contrib/texinfo/info/
H A Dinfo.h59 of slots that have already been allocated. INDEX is the index into the
60 array where POINTER should be added. GROW is the number of slots to grow
63 #define add_pointer_to_array(pointer, idx, array, slots, grow, type) \
65 if (idx + 2 >= slots) \
66 array = (type *)(xrealloc (array, (slots += grow) * sizeof (type))); \
103 int nodes_slots; /* Number of slots allocated to NODES. */
/freebsd-10.1-release/tools/regression/mac/mac_bsdextended/
H A Dtest_ugidfw.c193 int count, slots; local
224 * starting, but "slots" is a property of prior runs and so we ignore
233 slots = bsde_get_rule_slots(sizeof(errorstr), errorstr);
234 if (slots == -1)
/freebsd-10.1-release/sys/dev/sdhci/
H A Dsdhci_pci.c117 int num_slots; /* Number of slots on this controller */
118 struct sdhci_slot slots[6]; member in struct:sdhci_pci_softc
265 int bar, err, rid, slots, i; local
286 /* Read slots info from PCI registers. */
287 slots = pci_read_config(dev, PCI_SLOT_INFO, 1);
288 bar = PCI_SLOT_INFO_FIRST_BAR(slots);
289 slots = PCI_SLOT_INFO_SLOTS(slots);
290 if (slots > 6 || bar > 5) {
291 device_printf(dev, "Incorrect slots informatio
[all...]
H A Dsdhci_fdt.c73 int num_slots; /* Number of slots on this controller*/
74 struct sdhci_slot slots[MAX_SLOTS]; member in struct:sdhci_fdt_softc
146 struct sdhci_slot *slot = &sc->slots[i];
175 /* Allow dts to patch quirks, slots, and max-frequency. */
178 if ((OF_getencprop(node, "num-slots", &cid, sizeof(cid))) > 0)
190 int err, slots, rid, i; local
203 /* Scan all slots. */
204 slots = sc->num_slots; /* number of slots determined in probe(). */
206 for (i = 0; i < slots;
[all...]
/freebsd-10.1-release/sys/dev/sound/macio/
H A Daoa.c63 u_int slots; /* # of slots */ member in struct:aoa_dma
79 dma->slots = dma->bufsz / dma->blksz;
81 for (i = 0; i < dma->slots; ++i) {
91 dma->slots + 1 /* branch_slot */
98 dbdma_insert_branch(dma->channel, dma->slots, 0);
101 dbdma_insert_stop(dma->channel, dma->slots + 1);
293 for (i = 0; i < dma->slots; ++i)
330 dma->slot = (dma->slot + 1) % dma->slots;
/freebsd-10.1-release/sys/powerpc/include/
H A Ddbdma.h82 bus_dma_tag_t parent_dma, int slots, dbdma_channel_t **chan);
/freebsd-10.1-release/usr.sbin/ppp/
H A Dipcp.h50 int slots; /* Maximum VJ slots */ member in struct:ipcp::__anon12069::__anon12070
H A Dipcp.c106 u_char slots; member in struct:compreq
385 prompt_Printf(arg->prompt, " VJ compression: %s (%d slots %s slot "
387 ipcp->cfg.vj.slots, ipcp->cfg.vj.slotcomp ? "with" : "without");
426 if (!strcasecmp(arg->argv[arg->argn], "slots")) {
427 int slots; local
429 slots = atoi(arg->argv[arg->argn+1]);
430 if (slots < 4 || slots > 16)
432 arg->bundle->ncp.ipcp.cfg.vj.slots = slots;
[all...]
/freebsd-10.1-release/sys/netpfil/ipfw/
H A Ddn_sched_qfq.c151 * Maximum number of consecutive slots occupied by backlogged classes
220 bitmap full_slots; /* non-empty slots */
223 struct qfq_class *slots[QFQ_MAX_SLOTS]; member in struct:qfq_group
428 cl->next = grp->slots[i];
429 grp->slots[i] = cl;
439 struct qfq_class **h = &grp->slots[grp->front];
466 return grp->slots[grp->front];
472 * move the objects. The mask of occupied slots must be shifted
550 cl = grp->slots[grp->front];
707 pprev = &grp->slots[
[all...]
/freebsd-10.1-release/sys/dev/patm/
H A Dif_patm_tx.c119 /* compute the number of slots we need, make sure to get at least
126 slots2cr(struct patm_softc *sc, u_int slots) argument
128 return ((slots * IFP2IFATM(sc->ifp)->mib.pcr + sc->mmap->tst_size - 2) /
142 u_int slots = cbr2slots(sc, vcc); local
144 if (slots > sc->tst_free + sc->tst_reserve)
1115 u_int slots; local
1122 /* compute the number of slots we need, make sure to get at least
1124 slots = cbr2slots(sc, vcc);
1125 vcc->scd->slots = slots;
[all...]
/freebsd-10.1-release/sys/dev/ofw/
H A Dopenfirm.c188 cell_t slots[16]; local
195 status = OFW_INTERPRET(ofw_obj, cmd, nreturns, slots);
201 *va_arg(ap, cell_t *) = slots[i++];
/freebsd-10.1-release/contrib/binutils/binutils/
H A Drdcoff.c66 /* This structure is used to hold slots. */
70 /* Next set of slots. */
74 debug_type slots[COFF_SLOTS]; member in struct:coff_slots
82 struct coff_slots *slots; member in struct:coff_types
113 pps = &types->slots;
132 return (*pps)->slots + indx;
675 types.slots = NULL;
/freebsd-10.1-release/sys/powerpc/powermac/
H A Ddbdma.c60 bus_dma_tag_t parent_dma, int slots, dbdma_channel_t **chan)
87 channel->sc_nslots = slots;
59 dbdma_allocate_channel(struct resource *dbdma_regs, u_int offset, bus_dma_tag_t parent_dma, int slots, dbdma_channel_t **chan) argument
/freebsd-10.1-release/contrib/subversion/subversion/libsvn_subr/
H A Dstring.c1224 const apr_size_t slots = (resta > restb ? restb : resta);
1241 ### Optimize this to (slots + 2) instesd of 2 * (slots + 1) */
1242 svn_membuf__ensure(buffer, 2 * (slots + 1) * sizeof(apr_size_t));
1243 svn_membuf__nzero(buffer, (slots + 2) * sizeof(apr_size_t));
1245 curr = prev + slots + 1;
1251 for (i = 1; i <= slots; ++i)
1267 lcs += prev[slots];
1219 const apr_size_t slots = (resta > restb ? restb : resta); local
/freebsd-10.1-release/sys/fs/nfs/
H A Dnfs_commonsubs.c3695 struct nfsslot *slots, struct mbuf **reply, uint16_t maxslot)
3704 if (seqid == slots[slotid].nfssl_seq) {
3706 if (slots[slotid].nfssl_inprog != 0)
3708 else if (slots[slotid].nfssl_reply != NULL) {
3710 *reply = slots[slotid].nfssl_reply;
3711 slots[slotid].nfssl_reply = NULL;
3713 slots[slotid].nfssl_inprog = 1;
3717 slots[slotid].nfssl_inprog = 1;
3718 } else if ((slots[slotid].nfssl_seq + 1) == seqid) {
3719 if (slots[sloti
3694 nfsv4_seqsession(uint32_t seqid, uint32_t slotid, uint32_t highslot, struct nfsslot *slots, struct mbuf **reply, uint16_t maxslot) argument
3735 nfsv4_seqsess_cacherep(uint32_t slotid, struct nfsslot *slots, int repstat, struct mbuf **rep) argument
[all...]
/freebsd-10.1-release/usr.sbin/bhyve/
H A Dpci_ahci.c1784 int ret, slots; local
1830 slots = sc->port[0].ioqsz;
1831 if (slots > 32)
1832 slots = 32;
1833 --slots;
1838 (slots << AHCI_CAP_NCS_SHIFT) | AHCI_CAP_SXS | (sc->ports - 1);
/freebsd-10.1-release/sys/dev/drm/
H A Dr128_cce.c143 int slots = R128_READ(R128_GUI_STAT) & R128_GUI_FIFOCNT_MASK; local
144 if (slots >= entries)

Completed in 215 milliseconds

12