Searched refs:slot (Results 151 - 175 of 331) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/dev/sound/pci/
H A Dds1.c105 volatile struct rbank *slot; member in struct:sc_rchinfo
359 int slot; local
363 slot = sc->pslotfree++;
364 return sc->pbank[slot * 2];
427 ds_enapslot(struct sc_info *sc, int slot, int go) argument
429 wrl(sc, &sc->pbase[slot + 1], go? (sc->pbankbase + 2 * slot * sc->pbanksize) : 0);
430 /* printf("pbase[%d] = 0x%x\n", slot + 1, go? (sc->pbankbase + 2 * slot * sc->pbanksize) : 0); */
466 ch->slot[
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtree-into-ssa.c454 void **slot; local
457 slot = htab_find_slot (def_blocks, (void *) &db, INSERT);
458 if (*slot == NULL)
465 *slot = (void *) db_p;
468 db_p = (struct def_blocks_d *) *slot;
602 void **slot; local
605 slot = htab_find_slot (repl_tbl, (void *) &m, NO_INSERT);
608 if (slot == NULL || *slot == NULL)
611 return ((struct repl_map_d *) *slot)
621 void **slot; local
1556 debug_def_blocks_r(void **slot, void *data ATTRIBUTE_UNUSED) argument
[all...]
H A Dexcept.c784 struct ehl_map_entry **slot, *entry;
792 slot = (struct ehl_map_entry **)
799 gcc_assert (!*slot || cfun->eh->built_landing_pads);
801 *slot = entry;
1157 tree *slot;
1159 slot = (tree *) htab_find_slot_with_hash (type_to_runtime_map, type,
1161 if (*slot == NULL)
1164 *slot = tree_cons (type, runtime, NULL_TREE);
1171 tree *slot;
1173 slot
777 struct ehl_map_entry **slot, *entry; local
1148 tree *slot; local
1162 tree *slot; local
1233 struct ttypes_filter **slot, *n; local
1259 struct ttypes_filter **slot, *n; local
2159 struct ehl_map_entry **slot, tmp; local
2271 struct ehl_map_entry **slot, tmp; local
3077 struct action_record **slot, *new, tmp; local
[all...]
H A Dtree-ssa-reassoc.c193 void **slot; local
197 slot = htab_find_slot (operand_rank, &vrd, NO_INSERT);
198 if (!slot)
200 return ((operand_entry_t) *slot);
208 void **slot; local
213 slot = htab_find_slot (operand_rank, new_pair, INSERT);
214 gcc_assert (*slot == NULL);
215 *slot = new_pair;
H A Dtree-eh.c101 void **slot;
115 slot = htab_find_slot (get_eh_throw_stmt_table (ifun), n, INSERT);
116 gcc_assert (!*slot);
117 *slot = n;
136 void **slot;
142 slot = htab_find_slot (get_eh_throw_stmt_table (ifun), &dummy,
144 if (slot)
146 htab_clear_slot (get_eh_throw_stmt_table (ifun), slot);
208 void **slot;
214 slot
98 void **slot; local
133 void **slot; local
143 htab_clear_slot (get_eh_throw_stmt_table (ifun), slot); local
204 void **slot; local
2088 verify_eh_throw_stmt_node(void **slot, void *data ATTRIBUTE_UNUSED) argument
[all...]
H A Dtree-flow-inline.h34 hti->slot = table->entries;
35 hti->limit = hti->slot + htab_size (table);
38 PTR x = *(hti->slot);
41 } while (++(hti->slot) < hti->limit);
43 if (hti->slot < hti->limit)
44 return *(hti->slot);
48 /* Return current non-empty/deleted slot of the hashtable pointed to by HTI,
54 if (hti->slot >= hti->limit)
65 while (++(hti->slot) < hti->limit)
67 PTR x = *(hti->slot);
[all...]
H A Dtree-scalar-evolution.c343 PTR *slot;
346 slot = htab_find_slot (scalar_evolution_info, &tmp, INSERT);
348 if (!*slot)
349 *slot = new_scev_info_str (var);
350 res = (struct scev_info_str *) *slot;
2089 PTR *slot;
2092 slot = htab_find_slot (cache, &pattern, INSERT);
2094 if (!*slot)
2095 *slot = new_scev_info_str (version);
2096 info = (struct scev_info_str *) *slot;
342 PTR *slot; local
2084 PTR *slot; local
2701 gather_stats_on_scev_database_1(void **slot, void *stats) argument
[all...]
/freebsd-9.3-release/sys/dev/mvs/
H A Dmvs.h440 #define MVS_CRQB_TO_ADDR(slot) ((slot) << MVS_CRQB_SHIFT)
466 #define MVS_CRPB_TO_ADDR(slot) ((slot) << MVS_CRPB_SHIFT)
503 int slot; /* Number of this slot */ member in struct:mvs_slot
506 union ccb *ccb; /* CCB occupying slot */
507 struct ata_dmaslot dma; /* DMA data of this slot */
547 struct mvs_slot slot[MVS_MAX_SLOTS]; member in struct:mvs_channel
570 int lastslot; /* Last used slot */
[all...]
/freebsd-9.3-release/sys/net/
H A Dnetmap_user.h45 * ring->slot[i] gives us the i-th slot (we can access
591 idx = ring->slot[i].buf_idx;
592 ring->slot[i].len = size;
627 u_int idx = ring->slot[i].buf_idx;
631 d->hdr.len = d->hdr.caplen = ring->slot[i].len;
651 u_int idx = ring->slot[i].buf_idx;
656 hdr->len = hdr->caplen = ring->slot[i].len;
/freebsd-9.3-release/sys/powerpc/powermac/
H A Dcpcht.c229 * Mark this slot is populated. The remote south bridge does
311 cpcht_read_config(device_t dev, u_int bus, u_int slot, u_int func, u_int reg, argument
319 (((((slot & 0x1f) << 3) | (func & 0x07)) << 8) | reg);
321 if (bus == 0 && (!(sc->sc_populated_slots & (1 << slot)) || func > 0))
343 cpcht_write_config(device_t dev, u_int bus, u_int slot, u_int func, argument
351 (((((slot & 0x1f) << 3) | (func & 0x07)) << 8) | reg);
353 if (bus == 0 && (!(sc->sc_populated_slots & (1 << slot)) || func > 0))
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-wb.c153 u_int32_t slot; member in struct:pgstate
197 EXTRACT_32BITS(&id->pi_ps.slot),
275 EXTRACT_32BITS(&ps->slot),
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_trans_item.c54 * claim the first slot in the newly allocated chunk.
73 * Point the new slot at this item and return it.
130 * to the given slot.
135 uint slot; local
139 slot = XFS_LIC_DESC_TO_SLOT(lidp);
141 XFS_LIC_RELSE(licp, slot);
458 * claim the first slot in the newly allocated chunk.
476 * Point the new slot at this item and return it.
/freebsd-9.3-release/contrib/gcc/cp/
H A Dtypeck2.c183 void **slot;
193 slot = htab_find_slot_with_hash (abstract_pending_vars, type,
195 if (!slot)
197 pat = (struct pending_abstract_type*)*slot;
229 htab_clear_slot (abstract_pending_vars, slot);
256 void **slot;
266 slot = htab_find_slot_with_hash (abstract_pending_vars, type,
276 pat->next = (struct pending_abstract_type *) *slot;
277 *slot = pat;
1341 then the slot bein
182 void **slot; local
255 void **slot; local
[all...]
/freebsd-9.3-release/sys/dev/ata/chipsets/
H A Data-marvell.c393 int error, slot; local
414 /* get next free request queue slot */
416 slot = (((req_in & ~0xfffffc00) >> 5) + 0) & 0x1f;
418 bytep += (slot << 5);
493 slot = (((req_in & ~0xfffffc00) >> 5) + 1) & 0x1f;
495 req_in += (slot << 5);
515 int slot; local
523 slot = (((rsp_in & ~0xffffff00) >> 3)) & 0x1f;
525 rsp_out += (slot << 3);
529 (ch->dma.work + 1024 + (slot <<
[all...]
/freebsd-9.3-release/sys/dev/hpt27xx/
H A Dhpt27xx_os_bsd.c89 pciref.slot = dev;
101 pciref.slot = dev;
113 pciref.slot = dev;
124 pciref.slot = dev;
/freebsd-9.3-release/contrib/binutils/gas/config/
H A Dtc-ia64.c65 #define PREV_SLOT md.slot[(md.curr_slot + NUM_SLOTS - 1) % NUM_SLOTS]
66 #define CURR_SLOT md.slot[md.curr_slot]
270 struct slot struct in struct:__anon455
300 slot[NUM_SLOTS]; member in struct:__anon455
707 /* A slot_number is a frag address plus the slot index (0-2). We use the
746 /* Any unwind entires that should be attached to the current slot
843 static void build_insn PARAMS ((struct slot *, bfd_vma *));
2947 as_bad (" Insn slot not set in unwind record.");
6549 build_insn (slot, insnp)
6550 struct slot *slo
7341 match(int templ, int type, int slot) argument
7368 extra_goodness(int templ, int slot) argument
11529 long slot; local
[all...]
/freebsd-9.3-release/contrib/gcc/config/
H A Ddarwin.c356 machopic_indirection_hash (const void *slot) argument
358 const machopic_indirection *p = (const machopic_indirection *) slot;
366 machopic_indirection_eq (const void *slot, const void *key) argument
368 return strcmp (((const machopic_indirection *) slot)->ptr_name, key) == 0;
381 void ** slot; local
438 slot = htab_find_slot_with_hash (machopic_indirections, buffer,
440 if (*slot)
442 p = (machopic_indirection *) *slot;
451 *slot = p;
931 machopic_output_indirection (void **slot, voi argument
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/gssapi/krb5/
H A Dsequence.c115 elem_set(struct gss_msg_order *o, unsigned int slot, OM_uint32 val) argument
117 o->elem[slot % o->jitter_window] = val;
/freebsd-9.3-release/sys/arm/mv/
H A Dmv_sata.c551 int error, slot; local
583 /* Get next free queue slot */
585 slot = (req_in & sc->sc_edma_reqis_mask) >> SATA_EDMA_REQIS_OFS;
587 (slot << SATA_EDMA_REQIS_OFS));
625 req_in = (req_in & ~sc->sc_edma_reqis_mask) | (((slot + 1) <<
640 int slot; local
649 /* Get current response slot */
651 slot = (res_out & sc->sc_edma_resos_mask) >>
655 (slot << SATA_EDMA_RESOS_OFS));
668 res_out = (res_out & ~sc->sc_edma_resos_mask) | (((slot
[all...]
/freebsd-9.3-release/sys/dev/ata/
H A Datapi-cd.h187 u_int8_t current_slot :5; /* active changer slot */
196 u_int16_t table_length; /* slot table length */
198 u_int8_t changed :1; /* media has changed in this slot */
200 u_int8_t present :1; /* slot has a CD present */
204 } slot[32]; member in struct:changer
308 int slot; /* this instance slot number */ member in struct:acd_softc
/freebsd-9.3-release/tools/tools/pirtool/
H A Dpirtool.c270 if (p->slot == 0)
273 printf("slot %-3d ", p->slot);
/freebsd-9.3-release/usr.bin/xargs/
H A Dxargs.c81 static void clearslot(int slot);
249 * added in an extra slot.
259 * slot.
650 int slot; local
652 slot = findfreeslot();
653 childpids[slot] = pid;
660 int slot; local
662 if ((slot = findslot(pid)) < 0)
665 clearslot(slot);
673 int slot; local
684 int slot; local
694 clearslot(int slot) argument
[all...]
/freebsd-9.3-release/sys/dev/drm/
H A Dvia_dmablit.c395 uint32_t slot; local
407 slot = handle - blitq->done_blit_handle + blitq->cur -1;
408 if (slot >= VIA_NUM_BLIT_SLOTS) {
409 slot -= VIA_NUM_BLIT_SLOTS;
411 *queue = blitq->blit_queue + slot;
500 DRM_DEBUG("Releasing blit slot %d\n", cur_released);
656 * Reserve one free slot in the blit queue. Will wait for one second for one
687 * Hand back a free slot if we changed our mind.
701 * Grab a free slot. Build blit info and queue a blit.
777 * interrupted by a signal while waiting for a free slot i
[all...]
/freebsd-9.3-release/sys/dev/netmap/
H A Dnetmap_kern.h189 * For received packets, slot->flags is set to nkr_slot_flags
206 * nkr_lease_idx index of next free slot in nr_leases, to be assigned
318 |XXX free slot XXX| |XXX free slot XXX|
346 * to the next unused slot.
861 RD(5, "bad addr/len ring %d slot %d idx %d len %d", \
862 ring_nr, nm_i, slot->buf_idx, len); \
1175 NMB(struct netmap_slot *slot) argument
1177 uint32_t i = slot->buf_idx;
1182 PNMB(struct netmap_slot *slot, uint64_ argument
1193 BDG_NMB(struct netmap_adapter *na, struct netmap_slot *slot) argument
[all...]
/freebsd-9.3-release/sys/mips/sibyte/
H A Dsb_zbpci.c333 zbpci_config_space_va(int bus, int slot, int func, int reg, int bytes) argument
339 if (bus <= PCI_BUSMAX && slot <= PCI_SLOTMAX && func <= PCI_FUNCMAX &&
345 (bus << 16) | (slot << 11) | (func << 8) | reg;

Completed in 293 milliseconds

1234567891011>>