Searched refs:index (Results 376 - 400 of 1793) sorted by relevance

<<11121314151617181920>>

/freebsd-current/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_printer_tbl.c70 int32_t index; member in struct:printer_entry
103 entry->index = devEntry->index;
124 * Find a printer by its index
132 if (entry->index == idx)
246 if ((printer_entry = printer_find_by_index(dev_entry->index)) == NULL &&
363 value->var.subs[sub] = entry->index;
H A Dhostres_diskstorage_tbl.c75 * hrDiskStorageTable. Note that index is external being allocated and
82 int32_t index; member in struct:disk_entry
161 entry->index = devEntry->index;
178 devEntry = device_find_by_index(entry->index);
193 * Find a disk storage entry given its index.
201 if (entry->index == idx)
239 partition_tbl_handle_disk(entry->index, entry->dev_name);
309 disk_entry = disk_find_by_index(entry->index);
360 disk_entry = disk_find_by_index(entry->index);
[all...]
/freebsd-current/sys/dev/fdc/
H A Dfdc_acpi.c71 int index; member in struct:fdc_walk_ctx
164 ctx->index = 0;
201 if (ctx->index > 3)
205 if (ctx->fd_present[ctx->index] != ACPI_FD_PRESENT)
208 /* Create a device for the child with the given index. */
209 child = fdc_add_child(ctx->dev, "fd", ctx->index);
247 ctx->index++;
/freebsd-current/sys/arm/broadcom/bcm2835/
H A Dbcm2835_systimer.c67 int index; member in struct:systimer
147 bcm_systimer_tc_write_4(SYSTIMER_CS, (1 << st->index));
148 bcm_systimer_tc_write_4(SYSTIMER_C0 + st->index*4, clo);
180 if ((cs & (1 << st->index)) == 0)
184 bcm_systimer_tc_write_4(SYSTIMER_CS, (1 << st->index));
247 sc->st[DEFAULT_TIMER].index = DEFAULT_TIMER;
/freebsd-current/sys/arm/allwinner/
H A Daw_gmacclk.c96 uint32_t val, index; local
106 index = CLK_IDX_MII;
109 index = CLK_IDX_RGMII;
115 clknode_init_parent_idx(clk, index);
120 aw_gmacclk_set_mux(struct clknode *clk, int index) argument
127 switch (index) {
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InsertPrefetch.cpp145 uint8_t index = 0;
146 Name.consumeInteger(10, index);
148 if (index >= Prefetches.size())
149 Prefetches.resize(index + 1);
150 Prefetches[index] = {IID, D};
151 max_index = std::max(max_index, static_cast<int16_t>(index));
/freebsd-current/sys/dev/agp/
H A Dagp_i810.c120 static void agp_i810_install_gtt_pte(device_t dev, u_int index,
122 static void agp_i830_install_gtt_pte(device_t dev, u_int index,
124 static void agp_i915_install_gtt_pte(device_t dev, u_int index,
126 static void agp_i965_install_gtt_pte(device_t dev, u_int index,
128 static void agp_g4x_install_gtt_pte(device_t dev, u_int index,
131 static void agp_i810_write_gtt(device_t dev, u_int index, uint32_t pte);
132 static void agp_i915_write_gtt(device_t dev, u_int index, uint32_t pte);
133 static void agp_i965_write_gtt(device_t dev, u_int index, uint32_t pte);
134 static void agp_g4x_write_gtt(device_t dev, u_int index, uint32_t pte);
136 static u_int32_t agp_i810_read_gtt_pte(device_t dev, u_int index);
1471 agp_i810_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical, int flags) argument
1485 agp_i810_write_gtt(device_t dev, u_int index, uint32_t pte) argument
1495 agp_i830_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical, int flags) argument
1507 agp_i915_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical, int flags) argument
1520 agp_i915_write_gtt(device_t dev, u_int index, uint32_t pte) argument
1530 agp_i965_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical, int flags) argument
1543 agp_i965_write_gtt(device_t dev, u_int index, uint32_t pte) argument
1553 agp_g4x_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical, int flags) argument
1566 agp_g4x_write_gtt(device_t dev, u_int index, uint32_t pte) argument
1579 u_int index; local
1600 u_int index; local
1615 agp_i810_read_gtt_pte(device_t dev, u_int index) argument
1626 agp_i915_read_gtt_pte(device_t dev, u_int index) argument
1637 agp_i965_read_gtt_pte(device_t dev, u_int index) argument
1648 agp_g4x_read_gtt_pte(device_t dev, u_int index) argument
1659 agp_i810_read_gtt_pte_paddr(device_t dev, u_int index) argument
1672 agp_i915_read_gtt_pte_paddr(device_t dev, u_int index) argument
2244 agp_intel_gtt_install_pte(device_t dev, u_int index, vm_paddr_t addr, u_int flags) argument
2332 intel_gtt_install_pte(u_int index, vm_paddr_t addr, u_int flags) argument
[all...]
/freebsd-current/sys/dev/aac/
H A Daacvar.h248 void (*aif_set_outb_queue)(struct aac_softc *sc, int index);
531 #define AACQ_COMMAND_QUEUE(name, index) \
536 AACQ_INIT(sc, index); \
546 cm->cm_flags |= AAC_ON_ ## index; \
547 AACQ_ADD(cm->cm_sc, index); \
557 cm->cm_flags |= AAC_ON_ ## index; \
558 AACQ_ADD(cm->cm_sc, index); \
566 if ((cm->cm_flags & AAC_ON_ ## index) == 0) { \
568 cm, cm->cm_flags, AAC_ON_ ## index); \
571 cm->cm_flags &= ~AAC_ON_ ## index; \
[all...]
/freebsd-current/sys/dev/aacraid/
H A Daacraid_var.h260 void (*aif_set_outb_queue)(struct aac_softc *sc, int index);
565 #define AACQ_COMMAND_QUEUE(name, index) \
570 AACQ_INIT(sc, index); \
581 cm->cm_flags |= AAC_ON_ ## index; \
582 AACQ_ADD(cm->cm_sc, index); \
593 cm->cm_flags |= AAC_ON_ ## index; \
594 AACQ_ADD(cm->cm_sc, index); \
602 if ((cm->cm_flags & AAC_ON_ ## index) == 0) { \
605 AAC_ON_ ## index); \
609 cm->cm_flags &= ~AAC_ON_ ## index; \
[all...]
/freebsd-current/sys/dev/mfi/
H A Dmfivar.h417 uint16_t index; member in struct:mfi_cmd_tbolt
476 #define MFIQ_COMMAND_QUEUE(name, index) \
481 MFIQ_INIT(sc, index); \
491 cm->cm_flags |= MFI_ON_ ## index; \
492 MFIQ_ADD(cm->cm_sc, index); \
502 cm->cm_flags |= MFI_ON_ ## index; \
503 MFIQ_ADD(cm->cm_sc, index); \
511 if ((cm->cm_flags & MFI_ON_ ## index) == 0) { \
514 cm->cm_flags, MFI_ON_ ## index); \
517 cm->cm_flags &= ~MFI_ON_ ## index; \
[all...]
/freebsd-current/sys/dev/isci/
H A Disci_controller.c95 uint32_t index; local
108 for(index = 0; index < SCI_MAX_DOMAINS; index++) {
111 isci_controller->domain[index].sci_object;
122 isci_controller, &isci_controller->domain[index]);
283 scic_sgpio_update_led_state(phy->handle, 1 << phy->index,
293 scic_sgpio_update_led_state(phy->handle, 1 << phy->index,
390 controller->phys[i].index = i;
394 sprintf(led_name, "isci.bus%d.port%d.fault", controller->index,
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DModuleSummaryIndexYAML.h280 static void mapping(IO &io, ModuleSummaryIndex& index) { argument
281 io.mapOptional("GlobalValueMap", index.GlobalValueMap);
282 io.mapOptional("TypeIdMap", index.TypeIdMap);
284 index.WithGlobalValueDeadStripping);
287 std::vector<std::string> CfiFunctionDefs(index.CfiFunctionDefs.begin(),
288 index.CfiFunctionDefs.end());
290 std::vector<std::string> CfiFunctionDecls(index.CfiFunctionDecls.begin(),
291 index.CfiFunctionDecls.end());
296 index.CfiFunctionDefs = {CfiFunctionDefs.begin(), CfiFunctionDefs.end()};
299 index
[all...]
/freebsd-current/sys/dev/kbd/
H A Dkbd.c200 int index; local
204 for (index = 0; index < keyboards; ++index) {
205 if (keyboard[index] == NULL)
208 if (index >= keyboards) {
213 kbd->kb_index = index;
224 keyboard[index] = kbd;
234 return (index);
291 * starting at given index
294 kbd_find_keyboard2(char *driver, int unit, int index) argument
328 int index; local
392 kbd_get_keyboard(int index) argument
[all...]
/freebsd-current/sys/dev/sfxge/common/
H A Defx_rx.c133 __in unsigned int index,
808 __in unsigned int index,
836 erp->er_index = index;
840 if ((rc = erxop->erxo_qcreate(enp, index, label, type, type_data, esmp,
862 __in unsigned int index,
872 return efx_rx_qcreate_internal(enp, index, label, type, NULL,
881 __in unsigned int index,
895 return efx_rx_qcreate_internal(enp, index, label,
907 __in unsigned int index,
935 rc = efx_rx_qcreate_internal(enp, index, labe
806 efx_rx_qcreate_internal( __in efx_nic_t *enp, __in unsigned int index, __in unsigned int label, __in efx_rxq_type_t type, __in_opt const efx_rxq_type_data_t *type_data, __in efsys_mem_t *esmp, __in size_t ndescs, __in uint32_t id, __in unsigned int flags, __in efx_evq_t *eep, __deref_out efx_rxq_t **erpp) argument
860 efx_rx_qcreate( __in efx_nic_t *enp, __in unsigned int index, __in unsigned int label, __in efx_rxq_type_t type, __in efsys_mem_t *esmp, __in size_t ndescs, __in uint32_t id, __in unsigned int flags, __in efx_evq_t *eep, __deref_out efx_rxq_t **erpp) argument
879 efx_rx_qcreate_packed_stream( __in efx_nic_t *enp, __in unsigned int index, __in unsigned int label, __in uint32_t ps_buf_size, __in efsys_mem_t *esmp, __in size_t ndescs, __in efx_evq_t *eep, __deref_out efx_rxq_t **erpp) argument
905 efx_rx_qcreate_es_super_buffer( __in efx_nic_t *enp, __in unsigned int index, __in unsigned int label, __in uint32_t n_bufs_per_desc, __in uint32_t max_dma_len, __in uint32_t buf_stride, __in uint32_t hol_block_timeout, __in efsys_mem_t *esmp, __in size_t ndescs, __in unsigned int flags, __in efx_evq_t *eep, __deref_out efx_rxq_t **erpp) argument
1003 unsigned int index; local
1335 int index; local
1586 siena_rx_qcreate( __in efx_nic_t *enp, __in unsigned int index, __in unsigned int label, __in efx_rxq_type_t type, __in_opt const efx_rxq_type_data_t *type_data, __in efsys_mem_t *esmp, __in size_t ndescs, __in uint32_t id, __in unsigned int flags, __in efx_evq_t *eep, __in efx_rxq_t *erp) argument
[all...]
H A Defx_ev.c67 __in unsigned int index,
222 __in unsigned int index,
263 eep->ee_index = index;
279 if ((rc = eevop->eevo_qcreate(enp, index, esmp, ndescs, id, us, flags,
392 unsigned int index; local
442 for (index = 0; index < total; ++index) {
449 index + EFSYS_OPT_EV_PREFETCH_PERIOD == total) {
459 code = EFX_QWORD_FIELD(ev[index], FSF_AZ_EV_COD
220 efx_ev_qcreate( __in efx_nic_t *enp, __in unsigned int index, __in efsys_mem_t *esmp, __in size_t ndescs, __in uint32_t id, __in uint32_t us, __in uint32_t flags, __deref_out efx_evq_t **eepp) argument
1292 siena_ev_qcreate( __in efx_nic_t *enp, __in unsigned int index, __in efsys_mem_t *esmp, __in size_t ndescs, __in uint32_t id, __in uint32_t us, __in uint32_t flags, __in efx_evq_t *eep) argument
[all...]
/freebsd-current/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_alias_GUID.c94 /* The location of the specific index starts from bit number 4
113 static __be64 get_cached_alias_guid(struct mlx4_ib_dev *dev, int port, int index) argument
115 if (index >= NUM_ALIAS_GUID_PER_PORT) {
116 pr_err("%s: ERROR: asked for index:%d\n", __func__, index);
119 return *(__be64 *)&dev->sriov.demux[port - 1].guid_cache[index];
123 ib_sa_comp_mask mlx4_ib_get_aguid_comp_mask_from_ix(int index) argument
125 return IB_SA_COMP_MASK(4 + index);
133 int index = slave % 8; local
146 all_recs[GUID_REC_SIZE * index];
455 invalidate_guid_record(struct mlx4_ib_dev *dev, u8 port, int index) argument
500 int index = rec->block_num; local
[all...]
/freebsd-current/contrib/flex/src/
H A Dscanopt.c59 int index; /* Used as: argv[index][subscript]. */
131 /* Macro to assure we reset subscript whenever we adjust s->index.*/
134 (s)->index += (n); \
148 s->index = 1;
508 if (s->index > 0 && s->index < s->argc) {
511 s->argv[s->index][s->subscript];
516 optname = s->argv[s->index];
674 SAFE_ASSIGN (optindex, s->index);
58 int index; /* Used as: argv[index][subscript]. */ member in struct:_scanopt_t
[all...]
/freebsd-current/sys/dev/isci/scil/
H A Dscif_sas_controller.c413 // Retrieve the domain handle if the supplied index is legitimate.
584 U8 index; local
586 for(index = 0; index < SCI_MAX_DOMAINS; index++)
588 if(fw_controller->domains[index].parent.state_machine.current_state_id ==
1114 U8 index; local
1125 index = fw_controller->current_domain_to_clear_affiliation;
1127 if (index < SCI_MAX_DOMAINS)
1129 fw_domain = &fw_controller->domains[index];
1192 U8 index; local
[all...]
/freebsd-current/sys/powerpc/pseries/
H A Dmmu_phyp.c433 uint64_t index, junk; local
441 pte->pte_lo, &index, &evicted.pte_lo, &junk);
443 pvo->pvo_pte.slot = index;
458 pte->pte_hi, pte->pte_lo, &index, &evicted.pte_lo, &junk);
460 pvo->pvo_pte.slot = index;
474 uint64_t index, junk, lastptelo; local
479 index = mphyp_pte_spillable_ident(pvo->pvo_pte.slot, &evicted);
480 if (index == -1L) {
485 index = mphyp_pte_spillable_ident(pvo->pvo_pte.slot, &evicted);
488 if (index
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_netbsd_libcdep.cpp55 tid_t GetThreadID(uptr index) const;
60 PtraceRegistersStatus GetRegistersAndSP(uptr index,
316 tid_t SuspendedThreadsListNetBSD::GetThreadID(uptr index) const {
317 CHECK_LT(index, thread_ids_.size());
318 return thread_ids_[index];
338 uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const {
339 lwpid_t tid = GetThreadID(index);
337 GetRegistersAndSP( uptr index, InternalMmapVector<uptr> *buffer, uptr *sp) const argument
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dbitmap.h144 unsigned int index; local
149 index = find_next_zero_bit(map, size, start);
151 index = (((index + align_offset) + align_mask) & ~align_mask) - align_offset;
153 end = index + nr;
157 i = find_next_bit(map, end, index);
162 return (index);
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h186 int index) override {
188 return &(hwloc_array[index]);
537 int index) override {
539 return &(linux_array[index]);
747 int index) override {
749 return &(windows_array[index]);
950 kmp_hw_thread_t &at(int index) { argument
951 KMP_DEBUG_ASSERT(index >= 0 && index < num_hw_threads);
952 return hw_threads[index];
1153 at(int index) argument
1157 remove(int index) argument
[all...]
/freebsd-current/contrib/bsnmp/snmpd/
H A Dsnmpmod.h98 * This set of macros allows specification of the link and index name.
99 * The index is an OID.
210 * Macros for the case where the index field is called 'index'
213 INSERT_OBJECT_OID_LINK_INDEX(PTR, LIST, LINK, index)
216 INSERT_OBJECT_INT_LINK_INDEX(PTR, LIST, LINK, index)
219 FIND_OBJECT_OID_LINK_INDEX(LIST, OID, SUB, LINK, index)
222 NEXT_OBJECT_OID_LINK_INDEX(LIST, OID, SUB, LINK, index)
225 FIND_OBJECT_INT_LINK_INDEX(LIST, OID, SUB, LINK, index)
228 NEXT_OBJECT_INT_LINK_INDEX(LIST, OID, SUB, LINK, index)
[all...]
/freebsd-current/sys/geom/part/
H A Dg_part_bsd.c391 int error, index; local
440 for (index = basetable->gpt_entries - 1; index >= 0; index--) {
441 p = buf + 148 + index * 16;
454 baseentry = g_part_new_entry(basetable, index + 1,
459 if (index == RAW_PART)
504 int error, index; local
510 for (index = 1; index <
[all...]
/freebsd-current/contrib/llvm-project/clang/include/clang/APINotes/
H A DTypes.h520 void addTypeInfo(unsigned index, NullabilityKind kind) { argument
521 assert(index <= getMaxNullabilityIndex());
525 if (NumAdjustedNullable < index + 1)
526 NumAdjustedNullable = index + 1;
530 ~(NullabilityKindMask << (index * NullabilityKindSize));
534 << (index * NullabilityKindSize);
544 void addParamTypeInfo(unsigned index, NullabilityKind kind) { argument
545 addTypeInfo(index + 1, kind);
548 NullabilityKind getParamTypeInfo(unsigned index) const {
549 return getTypeInfo(index
[all...]

Completed in 405 milliseconds

<<11121314151617181920>>