Searched refs:slot (Results 1 - 25 of 425) sorted by last modified time

1234567891011>>

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_cab.c2079 int slot, w_size, w_slot; local
2118 for (slot = 0; slot < w_slot; slot++) {
2121 base = slot;
2131 ds->pos_tbl[slot].base = base;
2132 ds->pos_tbl[slot].footer_bits = footer;
/freebsd-11-stable/contrib/libarchive/cpio/
H A Dcpio.c1372 int slot; local
1385 slot = id % cache->size;
1386 if (cache->cache[slot].name != NULL) {
1387 if (cache->cache[slot].id == id) {
1389 return (cache->cache[slot].name);
1391 free(cache->cache[slot].name);
1392 cache->cache[slot].name = NULL;
1401 cache->cache[slot].name = strdup(name);
1402 if (cache->cache[slot].name != NULL) {
1403 cache->cache[slot]
[all...]
/freebsd-11-stable/sys/fs/nfs/
H A Dnfs_commonsubs.c4188 * Cache this reply for the slot.
4279 /* Find an unused slot. */
4317 /* Now, find the highest slot in use. (nfsc_slots is 64bits) */
4332 * Free a session slot.
4335 nfsv4_freeslot(struct nfsclsession *sep, int slot) argument
4340 if (slot > 0)
4341 bitval <<= slot; local
4344 printf("freeing free slot!!\n");
/freebsd-11-stable/sys/dev/netmap/
H A Dnetmap.c123 a number of slot in the ring, then the lock is released,
892 * IMPORTANT: Always keep one slot empty.
1175 struct netmap_slot *slot = &kring->ring->slot[n]; local
1177 if ((slot->flags & NS_FORWARD) == 0 && !force)
1179 if (slot->len < 14 || slot->len > NETMAP_BUF_SIZE(na)) {
1180 nm_prlim(5, "bad pkt at %d len %d", n, slot->len);
1183 slot->flags &= ~NS_FORWARD; // XXX needed ?
1185 m = m_devget(NMB(na, slot), slo
1339 struct netmap_slot *slot = &ring->slot[nm_i]; local
[all...]
/freebsd-11-stable/sys/dev/mlx5/mlx5_core/
H A Dmlx5_fwdump.c256 dev = pci_find_dbsf(devaddr->domain, devaddr->bus, devaddr->slot,
/freebsd-11-stable/sys/dev/ena/
H A Dena_netmap.c115 struct netmap_slot *slot; local
143 slot = &ring->slot[nm_i];
145 addr = PNMB(na, slot, &paddr);
147 device_printf(adapter->pdev, "Bad buff in slot\n");
161 rx_info->netmap_buf_idx = slot->buf_idx;
163 slot->buf_idx = 0;
177 struct netmap_slot *slot; local
211 slot = &kring->ring->slot[nm_
528 ena_netmap_map_single_slot(struct netmap_adapter *na, struct netmap_slot *slot, bus_dma_tag_t dmatag, bus_dmamap_t dmamap, void **vaddr, uint64_t *paddr) argument
554 struct netmap_slot *slot; local
[all...]
/freebsd-11-stable/sys/x86/x86/
H A Dmptable.c160 u_char irq; /* Source slot:pin. */
1078 int slot; local
1084 slot = pci_get_slot(dev);
1087 * PCI interrupt entries in the MP Table encode both the slot and
1089 * bits, the slot being the next five bits, and the most significant
1092 args.irq = slot << 2 | pin;
1096 device_printf(pcib, "unable to route slot %d INT%c\n", slot,
1101 device_printf(pcib, "slot %d INT%c routed to irq %d\n", slot,
[all...]
/freebsd-11-stable/usr.sbin/bhyvectl/
H A Dbhyvectl.c168 " [--unassign-pptdev=<bus/slot/func>]\n"
287 static int unassign_pptdev, bus, slot, func; variable
1826 if (sscanf(optarg, "%d/%d/%d", &bus, &slot, &func) != 3)
1983 error = vm_unassign_pptdev(ctx, bus, slot, func);
/freebsd-11-stable/sys/dev/e1000/
H A Dif_em.c3618 struct netmap_slot *slot; local
3625 slot = netmap_reset(na, NR_TX, txr->me, 0);
3645 if (slot) {
3650 addr = PNMB(na, slot + si, &paddr);
4405 struct netmap_slot *slot; local
4416 slot = netmap_reset(na, NR_RX, rxr->me, 0);
4437 if (slot) {
4442 addr = PNMB(na, slot + si, &paddr);
/freebsd-11-stable/sys/compat/linuxkpi/common/src/
H A Dlinux_radix.c111 /* track last slot */
178 struct radix_tree_iter *iter, void **slot)
177 radix_tree_iter_delete(struct radix_tree_root *root, struct radix_tree_iter *iter, void **slot) argument
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dradix-tree.h68 #define radix_tree_for_each_slot(slot, root, iter, start) \
70 radix_tree_iter_find(root, iter, &(slot)); (iter)->index++)
H A Dpci.h100 #define PCI_DEVFN(slot, func) ((((slot) & 0x1f) << 3) | ((func) & 0x07))
/freebsd-11-stable/sys/dev/mxge/
H A Dif_mxge.c349 uintptr_t bus, slot, func, ivend, idev; local
413 PCI_IVAR_SLOT, &slot); local
424 + 8 * slot);
461 (int)bus, (int)slot, (int)func);
3462 /* now use these tags to setup dmamaps for each slot
/freebsd-11-stable/sys/dev/atkbdc/
H A Dpsm.c1724 psm_release_mt_slot(struct evdev_dev *evdev, int32_t slot) argument
1727 evdev_push_abs(evdev, ABS_MT_SLOT, slot);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc_db.c381 get_recorded_size(svn_sqlite__stmt_t *stmt, int slot) argument
383 if (svn_sqlite__column_is_null(stmt, slot))
385 return svn_sqlite__column_int64(stmt, slot);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dsqlite.c461 int slot,
464 SQLITE_ERR(sqlite3_bind_int(stmt->s3stmt, slot, val), stmt->db);
470 int slot,
473 SQLITE_ERR(sqlite3_bind_int64(stmt->s3stmt, slot, val), stmt->db);
479 int slot,
482 SQLITE_ERR(sqlite3_bind_text(stmt->s3stmt, slot, val, -1, SQLITE_TRANSIENT),
489 int slot,
493 SQLITE_ERR(sqlite3_bind_blob(stmt->s3stmt, slot, val, (int) len,
501 int slot,
507 SQLITE_ERR(sqlite3_bind_text(stmt->s3stmt, slot, wor
460 svn_sqlite__bind_int(svn_sqlite__stmt_t *stmt, int slot, int val) argument
469 svn_sqlite__bind_int64(svn_sqlite__stmt_t *stmt, int slot, apr_int64_t val) argument
478 svn_sqlite__bind_text(svn_sqlite__stmt_t *stmt, int slot, const char *val) argument
488 svn_sqlite__bind_blob(svn_sqlite__stmt_t *stmt, int slot, const void *val, apr_size_t len) argument
500 svn_sqlite__bind_token(svn_sqlite__stmt_t *stmt, int slot, const svn_token_map_t *map, int value) argument
513 svn_sqlite__bind_revnum(svn_sqlite__stmt_t *stmt, int slot, svn_revnum_t value) argument
527 svn_sqlite__bind_properties(svn_sqlite__stmt_t *stmt, int slot, const apr_hash_t *props, apr_pool_t *scratch_pool) argument
547 svn_sqlite__bind_iprops(svn_sqlite__stmt_t *stmt, int slot, const apr_array_header_t *inherited_props, apr_pool_t *scratch_pool) argument
568 svn_sqlite__bind_checksum(svn_sqlite__stmt_t *stmt, int slot, const svn_checksum_t *checksum, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_diff/
H A Ddiff_memory.c751 apr_size_t slot = (i + cs->next_slot) % cs->context_size;
752 if (cs->data[slot])
754 apr_size_t len = cs->len[slot];
755 SVN_ERR(svn_stream_write(output_stream, cs->data[slot], &len));
750 apr_size_t slot = (i + cs->next_slot) % cs->context_size; local
H A Ddiff_file.c2055 apr_size_t slot = (i + cs->next_slot) % cs->context_size;
2056 if (cs->data[slot])
2058 apr_size_t len = cs->len[slot];
2059 SVN_ERR(svn_stream_write(output_stream, cs->data[slot], &len));
2053 apr_size_t slot = (i + cs->next_slot) % cs->context_size; local
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_sqlite.h192 svn_sqlite__bind_int(svn_sqlite__stmt_t *stmt, int slot, int val);
196 svn_sqlite__bind_int64(svn_sqlite__stmt_t *stmt, int slot,
202 svn_sqlite__bind_text(svn_sqlite__stmt_t *stmt, int slot,
208 int slot,
215 int slot,
222 svn_sqlite__bind_revnum(svn_sqlite__stmt_t *stmt, int slot,
225 /* Bind a set of properties to the given slot. If PROPS is NULL, then no
229 int slot,
233 /* Bind a set of inherited properties to the given slot. If INHERITED_PROPS
238 int slot,
[all...]
/freebsd-11-stable/contrib/apr-util/crypto/
H A Dapr_crypto_nss.c475 PK11SlotInfo *slot, *tslot; local
525 slot = PK11_GetBestSlot(key->cipherMech, wincx);
526 if (slot) {
527 key->symKey = PK11_PBEKeyGen(slot, algid, &passItem, PR_FALSE,
529 PK11_FreeSlot(slot);
553 slot = PK11_GetBestSlot(key->cipherMech, NULL);
554 if (slot) {
559 PK11_FreeSlot(slot);
617 PK11_FreeSlot(slot);
678 PK11SlotInfo * slot; local
[all...]
/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_fw2.c1202 * one. slot is precise, whereas we guess rule_id as they are
1206 set_match(struct ip_fw_args *args, int slot, argument
1210 args->rule.slot = slot + 1; /* we use 0 as a marker */
1211 args->rule.rule_id = 1 + chain->map[slot]->id;
1212 args->rule.rulenum = chain->map[slot]->rulenum;
1753 * Validate the slot and continue from the next one
1757 args->rule.slot :
3493 #define IPFW_MODEVENT_ORDER (SI_ORDER_ANY - 255) /* On boot slot in here. */
/freebsd-11-stable/sys/dev/usb/
H A Dusb_hub.c1828 * The best Transaction Translation slot for an interrupt endpoint.
1842 /* find the last slot with lesser used bandwidth */
1854 /* check if the current multi-slot is more optimal */
1871 * having index "slot" by "len" bytes. "len" can be negative. If the
1872 * "slot" argument is greater or equal to "USB_HS_MICRO_FRAMES_MAX"
1873 * the "slot" argument will be replaced by the slot having least used
1874 * bandwidth. The "mask" argument is used for multi-slot allocations.
1877 * The slot in which the bandwidth update was done: 0..7
1881 uint8_t slot, uint8_
1880 usb_hs_bandwidth_adjust(struct usb_device *udev, int16_t len, uint8_t slot, uint8_t mask) argument
1941 uint8_t slot; local
2022 uint8_t slot; local
2109 uint16_t slot; local
[all...]
/freebsd-11-stable/usr.sbin/bhyve/
H A Dpci_emul.c115 static void pci_cfgrw(struct vmctx *ctx, int vcpu, int in, int bus, int slot,
149 * <bus>:<slot>:<func>,<emul>[,<config>]
150 * <slot>[:<func>],<emul>[,<config>]
152 * slot is 0..31
165 fprintf(stderr, "Invalid PCI slot info field \"%s\"\n", aopt);
192 /* <bus>:<slot>:<func> */
195 /* <slot>:<func> */
198 /* <slot> */
218 fprintf(stderr, "pci slot %d:%d already occupied!\n",
224 fprintf(stderr, "pci slot
724 pci_emul_init(struct vmctx *ctx, struct pci_devemu *pde, int bus, int slot, int func, struct funcinfo *fi) argument
1043 int bus, slot, func, coff, in; local
1075 int bus, slot, func; local
1187 pci_apic_prt_entry(int bus, int slot, int pin, int pirq_pin, int ioapic_irq, void *arg) argument
1201 pci_pirq_prt_entry(int bus, int slot, int pin, int pirq_pin, int ioapic_irq, void *arg) argument
1229 int count, func, slot; local
1575 int count, slot, pin; local
1597 int slot, pin; local
1618 pci_emul_is_mfdev(int bus, int slot) argument
1641 pci_emul_hdrtype_fixup(int bus, int slot, int off, int bytes, uint32_t *rv) argument
1732 pci_cfgrw(struct vmctx *ctx, int vcpu, int in, int bus, int slot, int func, int coff, int bytes, uint32_t *eax) argument
[all...]
/freebsd-11-stable/sys/net/
H A Diflib.c837 * IMPORTANT: we must leave one free slot in the ring,
843 struct netmap_slot *slot = &ring->slot[nm_i]; local
844 void *addr = PNMB(na, slot, &fl->ifl_bus_addrs[tmp_pidx]);
856 } else if (map && (slot->flags & NS_BUF_CHANGED)) {
860 slot->flags &= ~NS_BUF_CHANGED;
940 * the corresponding slot in the NIC ring. Some drivers also
941 * need to update the buffer's physical address in the NIC slot
952 * to prefetch the next slot and txr entry.
962 __builtin_prefetch(&ring->slot[nm_
968 struct netmap_slot *slot = &ring->slot[nm_i]; local
1163 struct netmap_slot *slot; local
1190 struct netmap_slot *slot; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcher.h231 /// ResultNo - The slot number in the RecordedNodes vector that this will be,
260 /// ResultNo - The slot number in the RecordedNodes vector that this will be,
684 /// MatchNumber - This is the recorded nodes slot that contains the node we
691 /// FirstResult - This is the first slot in the RecordedNodes list that the
886 EmitConvertToTargetMatcher(unsigned slot) argument
887 : Matcher(EmitConvertToTarget), Slot(slot) {}
965 EmitNodeXFormMatcher(unsigned slot, Record *nodeXForm) argument
966 : Matcher(EmitNodeXForm), Slot(slot), NodeXForm(nodeXForm) {}

Completed in 360 milliseconds

1234567891011>>