Searched refs:index (Results 251 - 275 of 1792) sorted by relevance

<<11121314151617181920>>

/freebsd-current/sys/cam/
H A Dcam_queue.h126 cam_pinfo *camq_remove(struct camq *queue, int index);
127 #define CAMQ_HEAD 1 /* Head of queue index */
140 void camq_change_priority(struct camq *queue, int index,
176 old_ccb->pinfo.index = CAM_EXTRAQ_INDEX;
191 if (ccb->ccb_h.pinfo.index == CAM_EXTRAQ_INDEX) {
194 ccb->ccb_h.pinfo.index = CAM_UNQUEUED_INDEX;
199 removed_entry = camq_remove(queue, ccb->ccb_h.pinfo.index);
224 cam_ccbq_peek_ccb(struct cam_ccbq *ccbq, int index) argument
226 return((union ccb *)ccbq->queue.queue_array[index]);
233 send_ccb->ccb_h.pinfo.index
[all...]
/freebsd-current/contrib/ntp/ntpd/
H A Drefclock_as2201.c81 int index; /* current statistics command */ member in struct:as2201unit
197 up->index = 0;
336 octets = strlen(stat_command[up->index]);
340 memcpy(up->lastptr, stat_command[up->index], octets);
343 refclock_write(peer, stat_command[up->index],
344 strlen(stat_command[up->index]),
346 up->index++;
347 if (*stat_command[up->index] == '\0')
348 up->index = 0;
/freebsd-current/contrib/xz/src/liblzma/common/
H A Dstream_encoder.c46 lzma_index *index; member in struct:__anon72
123 coder->index));
169 return_if_error(lzma_index_append(coder->index, allocator,
190 .backward_size = lzma_index_size(coder->index),
219 lzma_index_end(coder->index, allocator);
309 coder->index = NULL;
318 lzma_index_end(coder->index, allocator);
319 coder->index = lzma_index_init(allocator);
320 if (coder->index == NULL)
/freebsd-current/lib/libc/db/btree/
H A Dbt_delete.c102 status = __bt_dleaf(t, NULL, h, c->pg.index);
177 /* Move to the next index. */
178 if (parent->index != NEXTINDEX(h) - 1) {
179 idx = parent->index + 1;
232 /* Move to the next index. */
233 if (parent->index != 0) {
234 idx = parent->index - 1;
303 if (__bt_dleaf(t, key, h, e->index)) {
316 } while (e->index < NEXTINDEX(h) && __bt_cmp(t, key, e) == 0);
319 if (e->index
[all...]
/freebsd-current/sys/dev/usb/controller/
H A Dxhci.c864 uint8_t index; local
875 index = XHCI_TRB_3_SLOT_GET(temp);
882 index, epno, remainder, status);
884 if (index > sc->sc_noslot) {
894 pepext = &sc->sc_hw.devs[index].endp[epno];
1352 uint8_t index; local
1358 index = udev->controller_slot_id;
1360 hdev = &sc->sc_hw.devs[index];
1420 (address == 0), index);
1432 "for slot %u.\n", index);
2231 xhci_set_slot_pointer(struct xhci_softc *sc, uint8_t index, uint64_t dev_addr) argument
2255 uint8_t index; local
2317 uint8_t index; local
2520 uint8_t index; local
2670 uint8_t index; local
2747 uint8_t index; local
2767 uint8_t index; local
2794 uint8_t index; local
3223 uint16_t index; local
3772 uint8_t index; local
3996 uint8_t index; local
4037 uint8_t index; local
4164 uint8_t index; local
4199 uint8_t index; local
4233 uint8_t index; local
4272 uint8_t index; local
[all...]
/freebsd-current/sys/netgraph/
H A Dng_parse.c110 int index, const u_char *start, u_char *buf,
116 ng_parse_type *type, int index, enum comptype ctype);
118 int index, enum comptype ctype, int posn);
1204 int nextIndex = 0; /* next implicit array index */
1205 u_int index; /* field or element index */ local
1235 /* For arrays, the 'name' (ie, index) is optional, so
1243 /* If an opening brace/bracket, index is implied */
1245 index = nextIndex++;
1249 /* Might be an index, migh
1384 int error, index; local
1469 ng_get_composite_elem_default(const struct ng_parse_type *type, int index, const u_char *const start, u_char *buf, int *buflen, const enum comptype ctype) argument
1556 ng_get_composite_etype(const struct ng_parse_type *type, int index, const enum comptype ctype) argument
1594 ng_parse_get_elem_pad(const struct ng_parse_type *type, int index, enum comptype ctype, int posn) argument
[all...]
/freebsd-current/sys/kern/
H A Dkern_kcov.c195 uint64_t *buf, index; local
212 /* The first entry of the buffer holds the index */
213 index = buf[0];
214 if (index + 2 > info->entries)
217 buf[index + 1] = ret;
218 buf[0] = index + 1;
226 uint64_t *buf, index; local
243 /* The first entry of the buffer holds the index */
244 index = buf[0];
247 if (index *
[all...]
H A Dmd4c.c113 unsigned int i, index, partLen; local
116 index = (unsigned int)((context->count[0] >> 3) & 0x3F);
123 partLen = 64 - index;
127 bcopy(input, &context->buffer[index], partLen);
133 index = 0;
139 bcopy(&input[i], &context->buffer[index], inputLen-i);
147 unsigned int index, padLen; local
154 index = (unsigned int)((context->count[0] >> 3) & 0x3f);
155 padLen = (index < 56) ? (56 - index)
[all...]
/freebsd-current/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_stream.c128 } index; member in struct:xz_dec
303 s->index.size += in_used;
326 switch (s->index.sequence) {
328 s->index.count = s->vli;
335 if (s->index.count != s->block.count)
338 s->index.sequence = SEQ_INDEX_UNPADDED;
342 s->index.hash.unpadded += s->vli;
343 s->index.sequence = SEQ_INDEX_UNCOMPRESSED;
347 s->index.hash.uncompressed += s->vli;
348 s->index
[all...]
/freebsd-current/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_swrun_tbl.c79 int32_t index; member in struct:swrun_entry
110 * the index parameter must not exist in this list.
122 entry->index = idx;
146 * Search one item by its index, return NULL if none found
154 if (entry->index == idx)
309 SWOSIndex = entry->index;
337 * The SNMP table's index must begin from 1 (as specified by
434 if (entry->index >= NO_PID + 1) {
442 if (kldstat(entry->index - NO_PID - 1, &stat) == -1) {
448 entry->index
[all...]
/freebsd-current/sys/geom/part/
H A Dg_part_mbr.c417 int error, index, res, sum; local
445 for (index = 0; index < NDOSPART; index++) {
446 p = buf + DOSPARTOFF + index * DOSPARTSIZE;
460 for (index = 0; index < NDOSPART * DOSPARTSIZE; index++)
461 sum += buf[DOSPARTOFF + index];
480 int error, index; local
597 int error, index; local
[all...]
/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/
H A Dtst.shortstr.d66 printf("%d\n", index(this->str, this->str1));
/freebsd-current/contrib/ofed/opensm/include/vendor/
H A Dosm_vendor_mtl.h167 IN const uint8_t index)
169 return (p_ca_info->p_attr->p_port_attr[index].port_guid);
177 * index
178 * [in] Port "index" for which to retrieve the port GUID.
179 * The index is the offset into the ca's internal array
166 osm_ca_info_get_port_guid(IN const osm_ca_info_t * const p_ca_info, IN const uint8_t index) argument
/freebsd-current/contrib/opencsd/decoder/source/etmv3/
H A Dtrc_pkt_proc_etmv3.cpp84 ocsd_datapath_resp_t TrcPktProcEtmV3::processData( const ocsd_trc_index_t index, argument
90 return m_pProcessor->processData(index,dataBlockSize,pDataBlock,numBytesProcessed);
/freebsd-current/contrib/opencsd/decoder/source/pkt_printers/
H A Draw_frame_printer.cpp43 const ocsd_trc_index_t index,
56 oss << "Frame Data; Index" << std::setw(7) << index << "; ";
42 TraceRawFrameIn( const ocsd_datapath_op_t op, const ocsd_trc_index_t index, const ocsd_rawframe_elem_t frame_element, const int dataBlockSize, const uint8_t *pDataBlock, const uint8_t traceID) argument
/freebsd-current/sys/dev/ocs_fc/
H A Docs_gendump.c40 uint32_t index = 0; local
44 while ((ocs = ocs_get_instance(index++)) != NULL) {
83 int index = 0, port_index = 0; local
92 while ((nxt_ocs = ocs_get_instance(index++)) != NULL) {
116 for (index = 0; (nxt_ocs = ocs_get_instance(index++)) != NULL; ) {
174 index = port_index = 0;
177 while ((nxt_ocs = ocs_get_instance(index++)) != NULL) {
180 ocs_log_err(NULL, "port index(%d) out of boundary\n",
/freebsd-current/stand/common/
H A Dpart.h59 int index; member in struct:ptable_entry
75 int index);
/freebsd-current/sys/dev/ixgbe/
H A Dixgbe_x540.h65 s32 ixgbe_blink_led_start_X540(struct ixgbe_hw *hw, u32 index);
66 s32 ixgbe_blink_led_stop_X540(struct ixgbe_hw *hw, u32 index);
/freebsd-current/sys/dev/nvdimm/
H A Dnvdimm_acpi.c229 nvdimm_root_read_ivar(device_t dev, device_t child, int index, argument
233 if (index < 0 || index >= NVDIMM_ROOT_IVAR_MAX)
235 *result = ((uintptr_t *)device_get_ivars(child))[index];
240 nvdimm_root_write_ivar(device_t dev, device_t child, int index, argument
244 if (index < 0 || index >= NVDIMM_ROOT_IVAR_MAX)
246 ((uintptr_t *)device_get_ivars(child))[index] = value;
/freebsd-current/sys/dev/qat/qat_common/
H A Dadf_hw_arbiter.c28 #define WRITE_CSR_ARB_RINGSRVARBEN(csr_addr, index, value) \
30 ADF_ARB_RINGSRVARBEN_OFFSET + (ADF_ARB_REG_SLOT * (index)), \
33 #define WRITE_CSR_ARB_SARCONFIG(csr_addr, csr_offset, index, value) \
34 ADF_CSR_WR(csr_addr, (csr_offset) + (ADF_ARB_REG_SIZE * (index)), value)
35 #define READ_CSR_ARB_RINGSRVARBEN(csr_addr, index) \
37 ADF_ARB_RINGSRVARBEN_OFFSET + (ADF_ARB_REG_SLOT * (index)))
42 csr_addr, csr_offset, wrk_to_ser_map_offset, index, value) \
45 (ADF_ARB_REG_SIZE * (index)), \
/freebsd-current/sys/dev/ppbus/
H A Dppb_msq.c45 /* msq index (see PPB_MAX_XFER)
61 int index, epp, mode; local
81 index = COMPAT_MSQ;
84 index = NIBBLE_MSQ;
87 index = PS2_MSQ;
92 index = EPP17_MSQ;
95 index = EPP19_MSQ;
103 index = ECP_MSQ;
109 return (&table[index]);
/freebsd-current/sys/xen/xenbus/
H A Dxenbusb.h229 * \param index The index of the instance variable to access.
235 int xenbusb_read_ivar(device_t dev, device_t child, int index,
243 * \param index The index of the instance variable to access.
249 int xenbusb_write_ivar(device_t dev, device_t child, int index,
/freebsd-current/sys/geom/label/
H A Dg_label_flashmap.c60 if (gfp->labels[pp->index] == NULL)
63 strlcpy(label, gfp->labels[pp->index], size);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.h45 // index of this compile unit.
81 // address range to file index and source line number.
89 /// global compile unit index to |CompilandIndexItem| structures.
95 explicit CompileUnitIndex(PdbIndex &index) : m_index(index) {} argument
/freebsd-current/crypto/openssl/test/recipes/
H A D79-test_http.t20 my $cmd = [qw{openssl ocsp -index any -port 0}];

Completed in 191 milliseconds

<<11121314151617181920>>