Searched refs:idx (Results 101 - 125 of 1153) sorted by relevance

1234567891011>>

/freebsd-10.0-release/lib/libc/db/btree/
H A Dbt_put.c71 indx_t idx, nxtindex; local
152 idx = t->bt_cursor.pg.index;
164 idx = e->index;
186 delete: if (__bt_dleaf(t, key, h, idx) == RET_ERROR) {
202 data, dflags, nbytes, idx)) != RET_SUCCESS)
207 if (idx < (nxtindex = NEXTINDEX(h)))
208 memmove(h->linp + idx + 1, h->linp + idx,
209 (nxtindex - idx) * sizeof(indx_t));
212 h->linp[idx]
[all...]
H A Dbt_search.c67 indx_t base, idx, lim; local
79 t->bt_cur.index = idx = base + (lim >> 1);
88 base = idx + 1;
124 idx = base ? base - 1 : base;
126 next: BT_PUSH(t, h->pgno, idx);
127 pg = GETBINTERNAL(h, idx)->pgno;
H A Dbt_delete.c145 indx_t idx; local
183 idx = parent->index + 1;
184 BT_PUSH(t, h->pgno, idx);
193 bi = GETBINTERNAL(h, idx);
203 idx = 0;
238 idx = parent->index - 1;
239 BT_PUSH(t, h->pgno, idx);
248 bi = GETBINTERNAL(h, idx);
258 idx = NEXTINDEX(h) - 1;
259 BT_PUSH(t, pgno, idx);
373 indx_t cnt, idx, *ip, offset; local
462 __bt_dleaf(BTREE *t, const DBT *key, PAGE *h, u_int idx) argument
523 __bt_curdel(BTREE *t, const DBT *key, PAGE *h, u_int idx) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/DebugInfo/
H A DDWARFDebugAranges.h77 const Range *rangeAtIndex(uint32_t idx) const {
78 if (idx < Aranges.size())
79 return &Aranges[idx];
87 uint32_t offsetAtIndex(uint32_t idx) const {
88 if (idx < Aranges.size())
89 return Aranges[idx].Offset;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp56 const uint32_t idx = GetNextIndex(); local
57 m_packets[idx].packet.assign (1, packet_char);
58 m_packets[idx].type = type;
59 m_packets[idx].bytes_transmitted = bytes_transmitted;
60 m_packets[idx].packet_idx = m_total_packet_count;
61 m_packets[idx].tid = Host::GetCurrentThreadID();
74 const uint32_t idx = GetNextIndex(); local
75 m_packets[idx].packet.assign (src, 0, src_len);
76 m_packets[idx].type = type;
77 m_packets[idx]
91 const uint32_t idx = NormalizeIndex (i); local
115 const uint32_t idx = NormalizeIndex (i); local
409 uint32_t idx; local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Duuids-table.c98 int idx,
110 key.data = &idx;
111 key.size = sizeof(idx);
129 int idx,
140 key.data = &idx;
141 key.size = sizeof(idx);
96 svn_fs_bdb__get_uuid(svn_fs_t *fs, int idx, const char **uuid, trail_t *trail, apr_pool_t *pool) argument
127 svn_fs_bdb__set_uuid(svn_fs_t *fs, int idx, const char *uuid, trail_t *trail, apr_pool_t *pool) argument
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBFileSpecList.h45 FindFileIndex (uint32_t idx, const SBFileSpec &sb_file, bool full);
48 GetFileSpecAtIndex (uint32_t idx) const;
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DTerminal.h211 /// Restore the TTY state for state at index \a idx.
218 Restore (uint32_t idx) const;
221 /// Save the TTY state information for the state at index \a idx.
226 /// @param[in] idx
241 Save (uint32_t idx, int fd, bool save_process_group);
/freebsd-10.0-release/crypto/openssl/crypto/ecdh/
H A Decdh.h99 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg);
100 void *ECDH_get_ex_data(EC_KEY *d, int idx);
/freebsd-10.0-release/sys/boot/ia64/common/
H A Dcopy.c42 pgtbl_extend(u_int idx) argument
49 pgtblsz = (idx + 1) << 3;
92 u_int idx, ofs; local
109 idx = (va - IA64_PBVM_BASE) >> IA64_PBVM_PAGE_SHIFT;
110 if (idx >= (ia64_pgtblsz >> 3)) {
111 error = pgtbl_extend(idx);
117 pte = ia64_pgtbl[idx];
126 ia64_pgtbl[idx] = pte;
/freebsd-10.0-release/sys/geom/
H A Dgeom_slice.c148 int idx; local
158 idx = bp->bio_to->index;
159 gsl = &gsp->slices[idx];
183 char idx[8]; local
186 snprintf(idx, sizeof(idx), "s%d",
188 if (strlcat(bp->bio_data, idx, bp->bio_length) >=
206 int idx, error; local
214 idx = pp->index;
215 gsl = &gsp->slices[idx];
337 g_slice_config(struct g_geom *gp, u_int idx, int how, off_t offset, off_t length, u_int sectorsize, const char *fmt, ...) argument
429 g_slice_conf_hot(struct g_geom *gp, u_int idx, off_t offset, off_t length, int ract, int dact, int wact) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCMachineFunctionInfo.h114 void setReturnAddrSaveIndex(int idx) { ReturnAddrSaveIndex = idx; } argument
161 void setCRSpillFrameIndex(int idx) { CRSpillFrameIndex = idx; } argument
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBFileSpecList.cpp84 SBFileSpecList::FindFileIndex (uint32_t idx, const SBFileSpec &sb_file, bool full) argument
86 return m_opaque_ap->FindFileIndex (idx, sb_file.ref(), full);
90 SBFileSpecList::GetFileSpecAtIndex (uint32_t idx) const
93 new_spec.SetFileSpec(m_opaque_ap->GetFileSpecAtIndex(idx));
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIECollection.h34 GetDIEPtrAtIndex(uint32_t idx) const;
/freebsd-10.0-release/contrib/texinfo/info/
H A Dinfo.h63 #define add_pointer_to_array(pointer, idx, array, slots, grow, type) \
65 if (idx + 2 >= slots) \
67 array[idx++] = (type)pointer; \
68 array[idx] = (type)NULL; \
/freebsd-10.0-release/crypto/openssl/crypto/x509/
H A Dx509_lu.c434 int idx; local
454 idx = sk_X509_OBJECT_find(h,&stmp);
455 if (idx >= 0 && pnmatch)
461 for (tidx = idx + 1; tidx < sk_X509_OBJECT_num(h); tidx++)
469 return idx;
482 int idx; local
483 idx = X509_OBJECT_idx_by_subject(h, type, name);
484 if (idx==-1) return NULL;
485 return sk_X509_OBJECT_value(h, idx);
490 int i, idx, cn local
539 int i, idx, cnt; local
585 int idx, i; local
628 int i, ok, idx, ret; local
[all...]
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_fm.c422 size_t idx, output; local
430 output = idx = 0;
431 while (idx < max - 1) {
432 uint32_t start = r[idx].zr_start;
433 uint32_t end = r[idx].zr_end;
435 while (idx < max - 1) {
436 idx++;
438 uint32_t nstart = r[idx].zr_start;
439 uint32_t nend = r[idx].zr_end;
494 size_t idx; local
517 size_t idx; local
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DUniqueCStringMap.h114 GetValueAtIndex (uint32_t idx, T &value) const argument
116 if (idx < m_map.size())
118 value = m_map[idx].value;
125 GetCStringAtIndexUnchecked (uint32_t idx) const
127 return m_map[idx].cstring;
133 GetValueAtIndexUnchecked (uint32_t idx) const
135 return m_map[idx].value;
141 GetValueRefAtIndexUnchecked (uint32_t idx) const
143 return m_map[idx].value;
147 GetCStringAtIndex (uint32_t idx) cons
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DSymbolFile.cpp49 for (uint32_t idx = 0; (create_callback = PluginManager::GetSymbolFileCreateCallbackAtIndex(idx)) != NULL; ++idx)
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dget_addrs.c102 unsigned int num, idx; local
140 for (ifa = ifa0, idx = 0; ifa != NULL; ifa = ifa->ifa_next) {
153 ret = krb5_sockaddr2address(context, ifa->ifa_addr, &res->val[idx]);
165 krb5_address_search(context, &res->val[idx], &ignore_addresses)) {
166 krb5_free_address(context, &res->val[idx]);
173 idx++;
180 if ((flags & LOOP_IF_NONE) != 0 && idx == 0) {
196 ifa->ifa_addr, &res->val[idx]);
200 krb5_address_search(context, &res->val[idx],
202 krb5_free_address(context, &res->val[idx]);
[all...]
/freebsd-10.0-release/crypto/openssh/openbsd-compat/
H A Dbsd-cygwin_util.c84 unsigned int i, idx = 0; local
90 p[idx++] = *e;
93 p[idx] = NULL;
/freebsd-10.0-release/lib/libiconv_modules/JOHAB/
H A Dcitrus_johab.c241 _csid_t * __restrict csid, _index_t * __restrict idx, wchar_t wc)
247 *idx = (_index_t)wc;
253 *idx = (_index_t)wc;
273 *idx = (_index_t)((l << 8) | t);
284 wchar_t * __restrict wc, _csid_t csid, _index_t idx)
291 *wc = (wchar_t)idx;
294 if (idx >= 0x2121 && idx <= 0x2C71) {
297 } else if (idx >= 0x4A21 && idx <
240 _citrus_JOHAB_stdenc_wctocs(_JOHABEncodingInfo * __restrict ei __unused, _csid_t * __restrict csid, _index_t * __restrict idx, wchar_t wc) argument
283 _citrus_JOHAB_stdenc_cstowc(_JOHABEncodingInfo * __restrict ei __unused, wchar_t * __restrict wc, _csid_t csid, _index_t idx) argument
[all...]
/freebsd-10.0-release/sys/dev/ata/
H A Data-all.h690 #define ATA_IDX_INB(ch, idx) \
691 ATA_INB(ch->r_io[idx].res, ch->r_io[idx].offset)
693 #define ATA_IDX_INW(ch, idx) \
694 ATA_INW(ch->r_io[idx].res, ch->r_io[idx].offset)
696 #define ATA_IDX_INW_STRM(ch, idx) \
697 ATA_INW_STRM(ch->r_io[idx].res, ch->r_io[idx].offset)
699 #define ATA_IDX_INL(ch, idx) \
[all...]
/freebsd-10.0-release/sys/dev/drm2/radeon/
H A Dr100_track.h95 unsigned idx, unsigned reg);
99 unsigned idx,
103 int idx);
/freebsd-10.0-release/sys/dev/puc/
H A Dpuc.c133 int i, idx, ipend, isrc, nints; local
143 idx = 0;
144 while (devs & (0xfful << idx)) {
145 ilr = ~bus_read_1(sc->sc_port[idx].p_rres, 7);
146 devs &= ~0ul ^ ((u_long)ilr << idx);
147 idx += 8;
168 idx = 0, dev = 1UL;
172 idx++, dev <<= 1;
174 port = &sc->sc_port[idx];
187 idx
219 int error, idx; local
405 int error, idx; local
[all...]

Completed in 220 milliseconds

1234567891011>>