Searched refs:index (Results 176 - 200 of 1422) sorted by relevance

1234567891011>>

/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dkrb5_err.et42 index 31
69 index 60
74 index 62
81 index 68
85 index 69
89 index 70
104 #index 80
111 index 128
257 index 238
260 index 24
[all...]
/freebsd-9.3-release/sys/cam/
H A Dcam_queue.h137 cam_pinfo *camq_remove(struct camq *queue, int index);
138 #define CAMQ_HEAD 1 /* Head of queue index */
151 void camq_change_priority(struct camq *queue, int index,
167 cam_ccbq_peek_ccb(struct cam_ccbq *ccbq, int index);
209 old_ccb->pinfo.index = CAM_EXTRAQ_INDEX;
223 if (ccb->ccb_h.pinfo.index == CAM_EXTRAQ_INDEX) {
226 ccb->ccb_h.pinfo.index = CAM_UNQUEUED_INDEX;
231 camq_remove(queue, ccb->ccb_h.pinfo.index);
253 cam_ccbq_peek_ccb(struct cam_ccbq *ccbq, int index) argument
255 return((union ccb *)ccbq->queue.queue_array[index]);
[all...]
/freebsd-9.3-release/sys/dev/e1000/
H A De1000_osdep.h171 #define E1000_READ_REG_ARRAY(hw, reg, index) \
174 E1000_REGISTER(hw, reg) + ((index)<< 2))
176 #define E1000_WRITE_REG_ARRAY(hw, reg, index, value) \
179 E1000_REGISTER(hw, reg) + ((index)<< 2), value)
184 #define E1000_READ_REG_ARRAY_BYTE(hw, reg, index) \
187 E1000_REGISTER(hw, reg) + index)
189 #define E1000_WRITE_REG_ARRAY_BYTE(hw, reg, index, value) \
192 E1000_REGISTER(hw, reg) + index, value)
194 #define E1000_WRITE_REG_ARRAY_WORD(hw, reg, index, value) \
197 E1000_REGISTER(hw, reg) + (index <<
[all...]
/freebsd-9.3-release/sys/dev/nxge/xgehal/
H A Dxgehal-mm.c135 int index = i*n_items + j; local
137 if (first_time && index >= mempool->items_initial) {
141 mempool->items_arr[index] =
153 mempool->items_arr[index],
154 index,
163 index =i*n_items + k;
168 mempool->items_arr[index],
169 index, is_last,
192 mempool->items_current = index + 1;
370 int index local
[all...]
/freebsd-9.3-release/sys/netpfil/ipfw/
H A Ddn_sched_qfq.c86 D("bad index %d", ix);
92 D("bad index %d", ix);
98 D("bad index %d", ix);
121 QFQ_MAX_INDEX is the maximum index allowed for a group. We need
122 one bit per index.
128 ^.__grp->index = 0
133 The max group index corresponds to Lmax/w_min, where
159 * group with the smallest index that can support the L_i / r_i
162 * grp->index is the index o
218 unsigned int index; /* Group index. */ member in struct:qfq_group
255 int index = ffs(bitmap) - 1; // zero-based local
268 int index = 0; local
376 qfq_unblock_groups(struct qfq_sched *q, int index, uint64_t old_finish) argument
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dbb-reorder.c245 bbd[e->dest->index].heap = heap;
246 bbd[e->dest->index].node = fibheap_insert (heap, bb_to_key (e->dest),
282 fprintf (dump_file, "%d [%d] ", bb->index, bb->frequency);
283 fprintf (dump_file, "%d [%d]\n", bb->index, bb->frequency);
323 || bbd[e->dest->index].start_of_trace >= 0)
339 || bbd[e->dest->index].start_of_trace >= 0)
412 if (bbd[bb->index].heap)
414 fibheap_delete_node (bbd[bb->index].heap, bbd[bb->index].node);
415 bbd[bb->index]
[all...]
/freebsd-9.3-release/sys/dev/tws/
H A Dtws_user.c224 u_int16_t index=0; local
247 index = sc->aen_q.head;
250 /* index = tail-1 */
251 index = (sc->aen_q.depth + sc->aen_q.tail - 1) % sc->aen_q.depth;
255 index = sc->aen_q.head;
257 if ( qp[index].sequence_id ==
260 index = (index+1) % sc->aen_q.depth;
261 }while ( index != sc->aen_q.tail );
262 if ( index
[all...]
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-helper.c130 /* Port last configured link info index by IPD/PKO port */
882 int index; local
897 for (index=0; index<num_ports; index++)
899 int pko_port = cvmx_helper_get_ipd_port(interface, index);
954 for (index=0; index<num_ports; index++)
957 gmx_cfg.u64 = cvmx_read_csr(CVMX_GMXX_PRTX_CFG(index, interfac
1230 int index = cvmx_helper_get_interface_index_num(ipd_port); local
1277 int index = cvmx_helper_get_interface_index_num(ipd_port); local
1346 int index = cvmx_helper_get_interface_index_num(ipd_port); local
1408 int index = cvmx_helper_get_interface_index_num(ipd_port); local
[all...]
/freebsd-9.3-release/usr.bin/gprof/
H A Darcs.c121 long index; local
205 for ( index = 0 ; index < nname ; index += 1 ) {
206 topsortnlp[ index ] = &nl[ index ];
212 for ( index = 0 ; index < nname ; index += 1 ) {
214 printf( "%d:" , topsortnlp[ index ]
257 int index; local
799 int index; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dutil.c43 int index = 0; local
48 index++;
51 u = " KMGTPE"[index];
53 if (index == 0) {
57 (double)num / (1ULL << 10 * index), u);
60 (double)num / (1ULL << 10 * index), u);
/freebsd-9.3-release/contrib/llvm/include/llvm/LTO/
H A DLTOModule.h116 /// index.
117 lto_symbol_attributes getSymbolAttributes(uint32_t index) { argument
118 if (index < _symbols.size())
119 return lto_symbol_attributes(_symbols[index].attributes);
123 /// getSymbolName - Get the name of the symbol at the specified index.
124 const char *getSymbolName(uint32_t index) { argument
125 if (index < _symbols.size())
126 return _symbols[index].name;
/freebsd-9.3-release/lib/libelf/
H A Dgelf_phdr.c50 gelf_getphdr(Elf *e, int index, GElf_Phdr *d) argument
60 (e->e_kind != ELF_K_ELF) || index < 0) {
70 if (index >= eh32->e_phnum) {
75 ep32 += index;
91 if (index >= eh64->e_phnum) {
96 ep64 += index;
/freebsd-9.3-release/sys/dev/isci/scil/
H A Dsati_mode_pages.c361 U16 index; local
362 for (index = 0; index < SAT_SUPPORTED_MODE_PAGES_LENGTH; index++)
364 if (sat_supported_mode_pages[index] == page_code)
365 return index;
H A Dscic_sds_library.c275 U8 index; local
277 for (index = 0; index < library->max_controller_count; index++)
279 if (controller == &library->controllers[index])
281 return index;
H A Dscif_sas_controller_states.c113 U8 index; local
135 for (index = 0; index < SCI_MAX_DOMAINS; index++)
138 &fw_controller->domains[index], index, fw_controller
H A Dsati_unmap.c153 U32 index; local
159 for(index = unmap_process_state->current_unmap_block_descriptor_index;
160 index < unmap_process_state->current_unmap_block_descriptor_index +
162 index++)
166 index,
167 &unmap_block_descriptor[index-unmap_process_state->current_unmap_block_descriptor_index]);
185 // Update the index for the next descriptor to translate
232 U32 index; local
284 for(index = 0; index < SATI_UNMAP_SIZEOF_SCSI_UNMAP_PARAMETER_LIS
[all...]
/freebsd-9.3-release/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_ethtool.c131 int index = 0; local
134 data[index++] = priv->lro.lro_mgr.stats.aggregated;
135 data[index++] = priv->lro.lro_mgr.stats.flushed;
137 data[index++] = priv->lro.lro_mgr.stats.aggregated /
140 data[index++] = 0;
141 data[index++] = priv->lro.lro_mgr.stats.no_desc;
/freebsd-9.3-release/tools/tools/ipw/
H A Dipwstats.c49 int index; member in struct:statistic
204 { 178, "Power index", INT },
259 for (stat = tbl; stat->index != 0; stat++) {
263 printf("%u", stats[stat->index]);
266 printf(stats[stat->index] ? "true" : "false");
269 printf("%u%%", stats[stat->index]);
273 printf("0x%08X", stats[stat->index]);
/freebsd-9.3-release/usr.bin/vgrind/
H A Dvgrind.sh94 if test -r index; then
101 sed -f nindex index > xindex
115 sort -df -k 1,2 xindex > index
/freebsd-9.3-release/contrib/bsnmp/snmp_mibII/
H A Dsnmp_mibII.h47 * Interfaces are indexed by ifindex. This is not the same as the index
56 u_int index; /* the logical ifindex */ member in struct:mibif
95 struct asn_oid index; /* index for table search */ member in struct:mibifa
106 struct asn_oid index; member in struct:mibrcvaddr
127 /* find interface by index */
/freebsd-9.3-release/lib/libc/db/recno/
H A Drec_search.c79 t->bt_cur.index = recno - total;
114 --GETRINTERNAL(h, parent->index)->nrecs;
116 ++GETRINTERNAL(h, parent->index)->nrecs;
/freebsd-9.3-release/sys/compat/linux/
H A Dlinux_videodev2_compat.h16 uint32_t index; member in struct:l_v4l2_buffer
61 uint32_t index; member in struct:l_v4l2_standard
122 uint32_t index; /* Which input */ member in struct:l_v4l2_input
/freebsd-9.3-release/sys/dev/nxge/include/
H A Dxgehal-mm.h55 * @index: Item's index in the memory pool.
64 int index, int is_last, void *userdata);
95 __hal_mempool_item(xge_hal_mempool_t *mempool, int index) argument
97 return mempool->items_arr[index];
/freebsd-9.3-release/sys/dev/syscons/
H A Dscterm.c114 *sc_term_match_by_number(int index) argument
118 if (index <= 0)
121 if (--index <= 0)
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_dir2_node.c48 static int xfs_dir2_leafn_add(xfs_dabuf_t *bp, xfs_da_args_t *args, int index);
61 int index, xfs_da_state_blk_t *dblk,
118 int i; /* leaf freespace index */
187 int index) /* insertion pt for new entry */
200 xfs_dir2_trace_args_sb("leafn_add", args, index, bp);
207 * Quick check just to make sure we are not going to index
210 if (index < 0)
226 ASSERT(index == 0 || be32_to_cpu(leaf->ents[index - 1].hashval) <= args->hashval);
227 ASSERT(index
184 xfs_dir2_leafn_add( xfs_dabuf_t *bp, xfs_da_args_t *args, int index) argument
410 int index; /* leaf entry index */ local
845 xfs_dir2_leafn_remove( xfs_da_args_t *args, xfs_dabuf_t *bp, int index, xfs_da_state_blk_t *dblk, int *rval) argument
[all...]

Completed in 307 milliseconds

1234567891011>>