Searched refs:index (Results 501 - 525 of 1653) sorted by relevance

<<21222324252627282930>>

/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DReproducer.cpp215 FileSpec index = m_root; local
216 index.AppendPathComponent("index.yaml");
219 auto strm = std::make_unique<raw_fd_ostream>(index.GetPath(), EC,
240 FileSpec index = m_root.CopyByAppendingPathComponent("index.yaml");
242 auto error_or_file = MemoryBuffer::getFile(index.GetPath());
244 return make_error<StringError>("unable to load reproducer index", err);
249 return make_error<StringError>("unable to read reproducer index", err);
254 // Remember that we've loaded the index
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_posix_libcdep.cpp152 for (unsigned index = 0; index < kArgVMax && argv[index]; ++index)
153 Printf("%s ", argv[index]);
/freebsd-13-stable/sys/dev/mthca/
H A Dmthca_av.c158 u32 index = -1; local
172 index = mthca_alloc(&dev->av_table.alloc);
175 if (index == -1)
184 index * MTHCA_AV_SIZE;
232 memcpy_toio(dev->av_table.av_map + index * MTHCA_AV_SIZE,
/freebsd-13-stable/sys/dev/isci/scil/
H A Dscic_sds_controller.h247 * This field is the TCi pool used to manage the task context index.
359 * order of phy index.
370 * This field is the index of the next phy start. It is initialized to 0 and
371 * increments for each phy index that is started.
377 * an invalid_link_up notification is reported a bit for the PHY index is set
379 * and is made part of a port then this bit for the PHY index is cleared.
384 * This is the controller index for this controller object.
460 * This macro will increment the specified index to and if the index wraps
463 #define INCREMENT_QUEUE_GET(index, cycl
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp50 // start index = 1, to skip the global variable key
284 bool getAlign(const Function &F, unsigned index, unsigned &align) { argument
291 if ((v >> 16) == index) {
299 bool getAlign(const CallInst &I, unsigned index, unsigned &align) { argument
305 if ((v >> 16) == index) {
309 if ((v >> 16) > index) {
/freebsd-13-stable/sys/dev/sfxge/common/
H A Def10_filter.c41 #define EFE_SPEC(eftp, index) ((eftp)->eft_entry[(index)].efe_spec)
46 __in unsigned int index)
48 return ((efx_filter_spec_t *)(EFE_SPEC(eftp, index) &
55 __in unsigned int index)
57 if (EFE_SPEC(eftp, index) & EFX_EF10_FILTER_FLAG_BUSY)
66 __in unsigned int index)
68 if (EFE_SPEC(eftp, index) & EFX_EF10_FILTER_FLAG_AUTO_OLD)
77 __in unsigned int index,
80 EFE_SPEC(eftp, index)
44 ef10_filter_entry_spec( __in const ef10_filter_table_t *eftp, __in unsigned int index) argument
53 ef10_filter_entry_is_busy( __in const ef10_filter_table_t *eftp, __in unsigned int index) argument
64 ef10_filter_entry_is_auto_old( __in const ef10_filter_table_t *eftp, __in unsigned int index) argument
75 ef10_filter_set_entry( __inout ef10_filter_table_t *eftp, __in unsigned int index, __in_opt const efx_filter_spec_t *efsp) argument
84 ef10_filter_set_entry_busy( __inout ef10_filter_table_t *eftp, __in unsigned int index) argument
92 ef10_filter_set_entry_not_busy( __inout ef10_filter_table_t *eftp, __in unsigned int index) argument
100 ef10_filter_set_entry_auto_old( __inout ef10_filter_table_t *eftp, __in unsigned int index) argument
109 ef10_filter_set_entry_not_auto_old( __inout ef10_filter_table_t *eftp, __in unsigned int index) argument
[all...]
/freebsd-13-stable/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_fs_tbl.c71 int32_t index; member in struct:fs_entry
77 int32_t storageIndex; /* hrStorageTblEntry::index */
89 * index for a specific name at least for the duration of one SNMP agent run.
92 int32_t hrIndex; /* used for fs_entry::index */
107 /* next index available for hrFSTable */
167 /* new object - get a new index */
170 syslog(LOG_ERR, "%s: hrFSTable index wrap", __func__);
171 errx(EX_SOFTWARE, "hrFSTable index wrap");
195 HRDBG("%s added into hrFSMap at index=%d", name, map->hrIndex);
197 HRDBG("%s exists in hrFSMap index
[all...]
/freebsd-13-stable/sys/ofed/drivers/infiniband/core/
H A Dib_sysfs.c87 int index; member in struct:port_table_attribute
99 int index; member in struct:hw_stats_attribute
365 ret = ib_query_gid(p->ibdev, p->port_num, tab_attr->index, &gid,
386 ret = ib_query_gid(p->ibdev, p->port_num, tab_attr->index, &gid, NULL);
414 ret = ib_query_pkey(p->ibdev, p->port_num, tab_attr->index, &pkey);
424 .index = (_offset) | ((_width) << 16) | ((_counter) << 24), \
431 .index = (_offset) | ((_width) << 16), \
490 int offset = tab_attr->index & 0xffff;
491 int width = (tab_attr->index >> 16) & 0xff;
726 element->index
765 update_hw_stats(struct ib_device *dev, struct rdma_hw_stats *stats, u8 port_num, int index) argument
781 print_hw_stat(struct rdma_hw_stats *stats, int index, char *buf) argument
868 alloc_hsa(int index, u8 port_num, const char *name) argument
[all...]
/freebsd-13-stable/contrib/lib9p/pytest/
H A Dprotocol.py534 def __init__(self, auto_vars, conditions, p9_data, pfods, index):
538 self.index = index # for comparison: plain < dotu < dotl
576 return self.index < other.index
578 return self.index <= other.index
580 return self.index == other.index
582 return self.index !
[all...]
/freebsd-13-stable/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_tx.c236 ring->context.usr_page = cpu_to_be32(ring->bf.uar->index);
272 struct mlx4_en_tx_ring *ring, u32 index, u8 owner)
274 struct mlx4_en_tx_info *tx_info = &ring->tx_info[index];
276 (ring->buf + (index * TXBB_SIZE));
291 struct mlx4_en_tx_ring *ring, u32 index)
296 tx_info = &ring->tx_info[index];
354 u16 index; local
367 index = cons_index & size_mask;
368 cqe = &buf[(index << factor) + factor];
406 index
271 mlx4_en_stamp_wqe(struct mlx4_en_priv *priv, struct mlx4_en_tx_ring *ring, u32 index, u8 owner) argument
290 mlx4_en_free_tx_desc(struct mlx4_en_priv *priv, struct mlx4_en_tx_ring *ring, u32 index) argument
654 u16 index; local
[all...]
H A Dmlx4_en_rx.c50 int index)
53 ((struct mlx4_en_rx_desc *)ring->buf) + index;
234 struct mlx4_en_rx_ring *ring, int index)
237 ((struct mlx4_en_rx_desc *)ring->buf) + index;
238 struct mlx4_en_rx_mbuf *mb_list = ring->mbuf + index;
306 int index; local
314 index = ring->cons & ring->size_mask;
315 en_dbg(DRV, priv, "Processing descriptor:%d\n", index);
316 mlx4_en_free_buf(ring, ring->mbuf + index);
737 #define CQE_FACTOR_INDEX(index, facto
48 mlx4_en_init_rx_desc(struct mlx4_en_priv *priv, struct mlx4_en_rx_ring *ring, int index) argument
233 mlx4_en_prepare_rx_desc(struct mlx4_en_priv *priv, struct mlx4_en_rx_ring *ring, int index) argument
748 int index; local
[all...]
/freebsd-13-stable/contrib/ntp/lib/isc/
H A Dtimer.c92 unsigned int index; member in struct:isc__timer
256 if (timer->index > 0) {
264 isc_heap_increased(manager->heap, timer->index);
267 isc_heap_decreased(manager->heap, timer->index);
319 if (timer->index == 1 && signal_ok) {
326 if (timer->index == 1 &&
346 if (timer->index > 0) {
348 if (timer->index == 1)
351 isc_heap_delete(manager->heap, timer->index);
352 timer->index
861 set_index(void *what, unsigned int index) argument
[all...]
/freebsd-13-stable/sys/mips/cavium/usb/
H A Doctusb.c1280 /* get the current frame index */
1286 * check if the frame index is within the window where the frames
1427 uint16_t index; local
1445 index = UGETW(req->wIndex);
1450 UGETW(req->wLength), value, index);
1564 index, value);
1565 if ((index < 1) ||
1566 (index > sc->sc_noport) ||
1567 sc->sc_port[index - 1].disabled) {
1571 index
[all...]
/freebsd-13-stable/sys/arm64/broadcom/genet/
H A Dif_genet.c135 int hwindex; /* hardware index */
146 int hwindex; /* hardware index */
210 static int gen_newbuf_rx(struct gen_softc *sc, struct rx_queue *q, int index);
211 static int gen_mapbuf_rx(struct gen_softc *sc, struct rx_queue *q, int index,
647 * "queue" is the software queue index (0-4); "qid" is the hardware index
648 * (0-16). "base" is the starting index in the ring array.
696 * "queue" is the software queue index (0-4); "qid" is the hardware index
697 * (0-16). "base" is the starting index i
984 int error, nsegs, cur, first, i, index, offset; local
1273 int error, index, len, cnt, npkt, n; local
1431 gen_newbuf_rx(struct gen_softc *sc, struct rx_queue *q, int index) argument
1446 gen_mapbuf_rx(struct gen_softc *sc, struct rx_queue *q, int index, struct mbuf *m) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp365 for (unsigned index = 0; index < m_current_line_index; index++) {
366 line += CountRowsForLine(m_input_lines[index]);
371 for (unsigned index = m_current_line_index; index < m_input_lines.size();
372 index++) {
373 line += CountRowsForLine(m_input_lines[index]);
416 for (int index = firstIndex; index < line_coun
[all...]
/freebsd-13-stable/contrib/ipfilter/
H A Dradix_ipf.c122 nodes[0].index = -1 - (ADF_OFF_BITS + maskbits);
156 for (cur = tree; cur->index >= 0;) {
376 nodes[1].index = nlen;
398 } while (nlen > (unsigned)cur->index);
684 parent->index = prev->index;
775 while (node->index >= 0)
783 for (node = node->parent->right; node->index >= 0; )
827 node[0].index = ADF_OFF_BITS;
828 node[0].index
[all...]
/freebsd-13-stable/contrib/ldns/
H A Dradix.c69 uint8_t index);
420 * from this index.
527 uint8_t index = node->parent_index; local
529 index++;
530 for (; index < node->len; index++) {
531 if (node->array[index].edge) {
534 if (node->array[index].edge->data) {
535 return node->array[index].edge;
562 uint8_t index local
863 uint8_t index; local
1262 ldns_radix_prev_from_index(ldns_radix_node_t* node, uint8_t index) argument
[all...]
/freebsd-13-stable/sys/contrib/ipfilter/netinet/
H A Dradix_ipf.c122 nodes[0].index = -1 - (ADF_OFF_BITS + maskbits);
156 for (cur = tree; cur->index >= 0;) {
376 nodes[1].index = nlen;
398 } while (nlen > (unsigned)cur->index);
684 parent->index = prev->index;
775 while (node->index >= 0)
783 for (node = node->parent->right; node->index >= 0; )
827 node[0].index = ADF_OFF_BITS;
828 node[0].index
[all...]
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.cpp2003 // Return the index into the hierarchy for this tid and layer type (L1, L2, etc)
2006 int index = type + 1; local
2013 KMP_DEBUG_ASSERT(__kmp_hier_max_units[index] != 0);
2016 return (tid / __kmp_hier_threads_per[index]) % __kmp_hier_max_units[index];
2339 int index; local
2343 for (index = maxIndex - 1; index > pkgIdIndex; index--) {
2396 unsigned index; local
[all...]
H A Dkmp_alloc.cpp1817 int index;
1829 index = 0; // idx is [ 0, 1 ], use first free list
1832 index = 1; // idx is [ 2, 3 ], use second free list
1835 index = 2; // idx is [ 4, 15 ], use third free list
1838 index = 3; // idx is [ 16, 63 ], use fourth free list
1844 ptr = this_thr->th.th_free_lists[index].th_free_list_self;
1847 this_thr->th.th_free_lists[index].th_free_list_self = *((void **)ptr);
1854 ptr = TCR_SYNC_PTR(this_thr->th.th_free_lists[index].th_free_list_sync);
1860 &this_thr->th.th_free_lists[index].th_free_list_sync, ptr, nullptr)) {
1862 ptr = TCR_SYNC_PTR(this_thr->th.th_free_lists[index]
[all...]
/freebsd-13-stable/sys/dev/xen/privcmd/
H A Dprivcmd.c322 unsigned int index; local
357 for (index = 0; index < mmap->num; index += num) {
358 num = MIN(mmap->num - index, UINT16_MAX);
361 error = copyin(&mmap->arr[index], idxs,
368 (i + index) * PAGE_SIZE);
384 BIT_SET(mmap->num, index + i,
389 error = copyout(errs, &mmap->err[index],
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.cpp33 static llvm::Optional<PdbCompilandSymId> FindSymbolScope(PdbIndex &index, argument
35 CVSymbol sym = index.ReadSymbolRecord(id);
49 CompilandIndexItem &cii = index.compilands().GetOrCreateCompiland(id.modi);
161 // LF_STRUCTURE `A::B` [type index = N]
163 // LF_NESTTYPE [name = `B`, index = N]
164 // LF_NESTTYPE [name = `C`, index = N]
205 PdbAstBuilder::PdbAstBuilder(ObjectFile &obj, PdbIndex &index, TypeSystemClang &clang) argument
206 : m_index(index), m_clang(clang) {
310 ProcessTpiStream(PdbIndex &index, TypeIndex parent, argument
313 : index(inde
316 PdbIndex &index; member in struct:ProcessTpiStream
[all...]
/freebsd-13-stable/sys/dev/acpi_support/
H A Dacpi_panasonic.c86 static UINT64 acpi_panasonic_sinf(ACPI_HANDLE h, UINT64 index);
87 static void acpi_panasonic_sset(ACPI_HANDLE h, UINT64 index,
272 acpi_panasonic_sinf(ACPI_HANDLE h, UINT64 index) argument
285 ret = res->Package.Elements[index].Integer.Value;
292 acpi_panasonic_sset(ACPI_HANDLE h, UINT64 index, UINT64 val) argument
299 obj[0].Integer.Value = index;
/freebsd-13-stable/sys/dev/agp/
H A Dagp_nvidia.c311 u_int32_t index; local
316 index = (sc->pg_offset + offset) >> AGP_PAGE_SHIFT;
317 sc->gatt->ag_virtual[index] = physical | 1;
326 u_int32_t index; local
331 index = (sc->pg_offset + offset) >> AGP_PAGE_SHIFT;
332 sc->gatt->ag_virtual[index] = 0;
/freebsd-13-stable/sys/dev/isci/
H A Disci.c351 for (int index = 0; index < isci->controller_count; index++) {
352 struct ISCI_CONTROLLER *controller = &isci->controllers[index];
355 controller->index = index;
646 * @param[in] bar_number This parameter depicts the BAR index/number to be read.
649 * @retval NULL indicates an invalid BAR index/number was specified.

Completed in 457 milliseconds

<<21222324252627282930>>