Searched refs:idx (Results 251 - 275 of 1153) sorted by relevance

<<11121314151617181920>>

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DSection.cpp341 SectionList::DeleteSection (size_t idx) argument
343 if (idx < m_sections.size())
345 m_sections.erase (m_sections.begin() + idx);
415 SectionList::GetSectionAtIndex (size_t idx) const
418 if (idx < m_sections.size())
419 sect_sp = m_sections[idx];
479 for (size_t idx = start_idx; idx < num_sections; ++idx)
481 if (m_sections[idx]
[all...]
H A DDebugger.cpp226 const uint32_t idx = ePropertyAutoConfirm; local
227 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
233 const uint32_t idx = ePropertyFrameFormat; local
234 return m_collection_sp->GetPropertyAtIndexAsString (NULL, idx, g_properties[idx].default_cstr_value);
240 const uint32_t idx = ePropertyNotiftVoid; local
241 return m_collection_sp->GetPropertyAtIndexAsBoolean (NULL, idx, g_properties[idx].default_uint_value != 0);
247 const uint32_t idx local
254 const uint32_t idx = ePropertyPrompt; local
267 const uint32_t idx = ePropertyThreadFormat; local
274 const uint32_t idx = ePropertyScriptLanguage; local
281 const uint32_t idx = ePropertyScriptLanguage; local
288 const uint32_t idx = ePropertyTerminalWidth; local
295 const uint32_t idx = ePropertyTerminalWidth; local
302 const uint32_t idx = ePropertyUseExternalEditor; local
309 const uint32_t idx = ePropertyUseExternalEditor; local
316 const uint32_t idx = ePropertyUseColor; local
323 const uint32_t idx = ePropertyUseColor; local
332 const uint32_t idx = before ? ePropertyStopLineCountBefore : ePropertyStopLineCountAfter; local
339 const uint32_t idx = ePropertyStopDisassemblyDisplay; local
346 const uint32_t idx = ePropertyStopDisassemblyCount; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.cpp84 uint32_t idx = abbrCode - m_idx_offset; local
85 if (idx < m_decls.size())
86 return &m_decls[idx];
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DABI.cpp27 for (uint32_t idx = 0;
28 (create_callback = PluginManager::GetABICreateCallbackAtIndex(idx)) != NULL;
29 ++idx)
/freebsd-10.0-release/contrib/unbound/validator/
H A Dval_sigcrypt.h209 * @param idx: which DS.
212 int ds_get_key_algo(struct ub_packed_rrset_key* k, size_t idx);
217 * @param idx: which DNSKEY RR.
220 int dnskey_get_algo(struct ub_packed_rrset_key* k, size_t idx);
225 * @param idx: which DNSKEY RR.
228 uint16_t dnskey_get_flags(struct ub_packed_rrset_key* k, size_t idx);
/freebsd-10.0-release/sys/amd64/vmm/intel/
H A Dvtd.c366 int idx; local
380 idx = (slot << 3 | func) * 2;
382 if (ctxp[idx] & VTD_CTX_PRESENT) {
385 (uint16_t)(ctxp[idx + 1] >> 8));
392 ctxp[idx + 1] = dom->addrwidth | (dom->id << 8);
395 ctxp[idx] = VTD_CTX_TT_ALL;
397 ctxp[idx] = 0;
399 ctxp[idx] |= pt_paddr | VTD_CTX_PRESENT;
410 int i, idx; local
420 idx
[all...]
/freebsd-10.0-release/sys/contrib/ipfilter/netinet/
H A Dip_frag.c401 u_int idx, off; local
422 idx = fin->fin_v;
424 idx += fin->fin_p;
426 idx += fin->fin_id;
428 idx += frag.ipfr_src.s_addr;
430 idx += frag.ipfr_dst.s_addr;
432 idx *= 127;
433 idx %= softf->ipfr_size;
475 for (fra = table[idx]; (fra != NULL); fra = fra->ipfr_hnext)
499 if ((fra->ipfr_hnext = table[idx]) !
668 u_int idx; local
[all...]
/freebsd-10.0-release/sys/dev/cxgbe/
H A Dt4_tracer.c277 if (t->idx >= NTRACE) {
278 t->idx = 0xff;
289 for (i = t->idx; i < NTRACE; i++) {
290 if (isset(&sc->tracer_valid, t->idx)) {
292 t->idx = i;
315 t->idx = 0xff;
330 if (t->idx >= NTRACE)
344 if (isset(&sc->tracer_valid, t->idx))
383 rc = -t4_set_trace_filter(sc, tpp, t->idx, t->enabled);
386 setbit(&sc->tracer_valid, t->idx);
[all...]
/freebsd-10.0-release/sys/amd64/vmm/io/
H A Dvlapic.c239 int idx; local
244 idx = (vector / 32) * 4;
246 atomic_set_int(&irrptr[idx], 1 << (vector % 32));
321 int i, lastprio, curprio, vector, idx; local
348 idx = (vector / 32) * 4;
349 if (isrptr[idx] & (1 << (vector % 32))) {
375 int i, idx, bitpos; local
384 idx = i * 4;
385 bitpos = fls(isrptr[idx]);
391 isrptr[idx]
536 int idx, i, bitpos, vector; local
567 int idx, stk_top; local
[all...]
H A Dppt.h38 int idx, uint32_t msg, uint32_t vector_control, uint64_t addr);
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_diff/
H A Ddiff_file.c1050 int idx = datasource_to_index(file_token[i]->datasource); local
1052 file[i] = &file_baton->files[idx];
1416 svn_diff__file_output_unified_type_e type, int idx)
1427 length = baton->length[idx];
1428 curp = baton->curp[idx];
1433 baton->current_line[idx]++;
1435 if (length == 0 && apr_file_eof(baton->file[idx]))
1507 baton->curp[idx] = eol;
1508 baton->length[idx] = length;
1529 curp = baton->buffer[idx];
1414 output_unified_line(svn_diff__file_output_baton_t *baton, svn_diff__file_output_unified_type_e type, int idx) argument
2070 output_line(svn_diff3__file_output_baton_t *baton, svn_diff3__file_output_type_e type, int idx) argument
2119 output_hunk(void *baton, int idx, apr_off_t target_line, apr_off_t target_length) argument
2320 int idx; local
[all...]
/freebsd-10.0-release/contrib/binutils/bfd/
H A Delf64-sparc.c285 unsigned int idx, count; local
307 for (idx = 0; idx < sec->reloc_count; idx++)
313 addr = sec->orelocation[idx]->address;
314 if (sec->orelocation[idx]->howto->type == R_SPARC_LO10
315 && idx < sec->reloc_count - 1)
317 arelent *r = sec->orelocation[idx + 1];
323 ++idx;
352 for (idx
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBInstructionList.h39 GetInstructionAtIndex (uint32_t idx);
H A DSBSymbolContextList.h37 GetContextAtIndex (uint32_t idx);
H A DSBValueList.h45 GetValueAtIndex (uint32_t idx) const;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DObjectFile.cpp60 for (uint32_t idx = 0; (create_object_container_callback = PluginManager::GetObjectContainerCreateCallbackAtIndex(idx)) != NULL; ++idx)
102 for (uint32_t idx = 0; (create_object_container_callback = PluginManager::GetObjectContainerCreateCallbackAtIndex(idx)) != NULL; ++idx)
124 for (uint32_t idx = 0; (create_object_file_callback = PluginManager::GetObjectFileCreateCallbackAtIndex(idx)) != NULL; ++idx)
134 for (uint32_t idx
167 uint32_t idx; local
[all...]
H A DUnwindPlan.cpp176 for (collection::const_iterator idx = m_register_locations.begin (); idx != m_register_locations.end (); ++idx)
178 reg_info = unwind_plan->GetRegisterInfo (thread, idx->first);
182 s.Printf ("reg(%u)", idx->first);
184 idx->second.Dump(s, unwind_plan, this, thread, verbose);
339 UnwindPlan::IsValidRowIndex (uint32_t idx) const
341 return idx < m_row_list.size();
345 UnwindPlan::GetRowAtIndex (uint32_t idx) const
347 // You must call IsValidRowIndex(idx) firs
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/asn1/
H A Dx_x509.c151 int X509_set_ex_data(X509 *r, int idx, void *arg)
153 return(CRYPTO_set_ex_data(&r->ex_data,idx,arg));
156 void *X509_get_ex_data(X509 *r, int idx)
158 return(CRYPTO_get_ex_data(&r->ex_data,idx));
H A Dx_crl.c214 int idx;
262 for (idx = 0; idx < sk_X509_EXTENSION_num(exts); idx++)
265 ext = sk_X509_EXTENSION_value(exts, idx);
449 int idx;
460 idx = sk_X509_REVOKED_find(crl->crl->revoked, &rtmp);
461 if(idx < 0)
464 for(;idx < sk_X509_REVOKED_num(crl->crl->revoked); idx
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/ecdh/
H A Dech_lib.c257 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg) argument
263 return(CRYPTO_set_ex_data(&ecdh->ex_data,idx,arg));
266 void *ECDH_get_ex_data(EC_KEY *d, int idx) argument
272 return(CRYPTO_get_ex_data(&ecdh->ex_data,idx));
/freebsd-10.0-release/crypto/openssl/crypto/x509v3/
H A Dpcy_cache.c263 int idx; local
266 idx = sk_X509_POLICY_DATA_find(cache->data, &tmp);
267 if (idx == -1)
269 return sk_X509_POLICY_DATA_value(cache->data, idx);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzap_leaf.h84 #define ZAP_LEAF_CHUNK(l, idx) \
86 ((l)->l_phys->l_hash + ZAP_LEAF_HASH_NUMENTRIES(l)))[idx]
87 #define ZAP_LEAF_ENTRY(l, idx) (&ZAP_LEAF_CHUNK(l, idx).l_entry)
/freebsd-10.0-release/sys/dev/ntb/ntb_hw/
H A Dntb_hw.c1046 * @idx: doorbell index to register callback, zero based
1056 ntb_register_db_callback(struct ntb_softc *ntb, unsigned int idx, void *data, argument
1061 if (idx >= ntb->allocated_interrupts || ntb->db_cb[idx].callback) {
1066 ntb->db_cb[idx].callback = func;
1067 ntb->db_cb[idx].data = data;
1071 mask &= ~(1 << (idx * ntb->bits_per_vector));
1080 * @idx: doorbell index to register callback, zero based
1086 ntb_unregister_db_callback(struct ntb_softc *ntb, unsigned int idx) argument
1090 if (idx >
1190 ntb_write_local_spad(struct ntb_softc *ntb, unsigned int idx, uint32_t val) argument
1213 ntb_read_local_spad(struct ntb_softc *ntb, unsigned int idx, uint32_t *val) argument
1236 ntb_write_remote_spad(struct ntb_softc *ntb, unsigned int idx, uint32_t val) argument
1262 ntb_read_remote_spad(struct ntb_softc *ntb, unsigned int idx, uint32_t *val) argument
[all...]
/freebsd-10.0-release/contrib/ntp/libntp/
H A Dmd5c.c126 unsigned int i, idx, partLen; local
129 idx = (unsigned int)((context->count[0] >> 3) & 0x3F);
137 partLen = 64 - idx;
143 ((POINTER)&context->buffer[idx], (POINTER)input, partLen);
149 idx = 0;
156 ((POINTER)&context->buffer[idx], (POINTER)&input[i],
170 unsigned int idx, padLen; local
177 idx = (unsigned int)((context->count[0] >> 3) & 0x3f);
178 padLen = (idx < 56) ? (56 - idx)
[all...]
/freebsd-10.0-release/lib/libiconv_modules/iconv_std/
H A Dcitrus_iconv_std.c107 _csid_t *csid, _index_t *idx, const char **s, size_t n, size_t *nresult,
111 return (_stdenc_mbtocs(se->se_handle, csid, idx, s, n, se->se_ps,
117 char *s, size_t n, _csid_t csid, _index_t idx, size_t *nresult,
121 return (_stdenc_cstomb(se->se_handle, s, n, csid, idx, se->se_ps,
312 _csid_t *csid, _index_t *idx)
323 &tmpidx, *idx, NULL);
327 *idx = tmpidx;
471 _index_t idx; local
521 ret = mbtocsx(&sc->sc_src_encoding, &csid, &idx, &tmpin,
543 ret = do_conv(is, &csid, &idx);
106 mbtocsx(struct _citrus_iconv_std_encoding *se, _csid_t *csid, _index_t *idx, const char **s, size_t n, size_t *nresult, struct iconv_hooks *hooks) argument
116 cstombx(struct _citrus_iconv_std_encoding *se, char *s, size_t n, _csid_t csid, _index_t idx, size_t *nresult, struct iconv_hooks *hooks) argument
311 do_conv(const struct _citrus_iconv_std_shared *is, _csid_t *csid, _index_t *idx) argument
[all...]

Completed in 400 milliseconds

<<11121314151617181920>>