Searched defs:idx (Results 1 - 25 of 143) sorted by relevance

123456

/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Ddebug.c62 int idx = -lcn - 1; local
64 if (idx > -LCN_EINVAL - 1)
65 idx = 4;
66 ntfs_log_debug("%-16llx %s %-16llx%s\n", rl[i].vcn, lcn_str[idx], rl[i].length, rl[i].length ? "" : " (runlist end)");
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/crc32/
H A Dcrc.c182 register int idx; local
190 idx = (int) (data[i] ^ c);
191 idx &= 0xff;
193 c ^= (u_long) crc_table[idx];
216 register int idx; local
225 idx = (int) (data[i] ^ c);
226 idx &= 0xff;
228 c ^= (u_long) crc_table[idx];
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/recno/
H A Drec_search.c69 register indx_t idx; local
87 for (idx = 0, top = NEXTINDEX(h);;) {
88 r = GETRINTERNAL(h, idx);
89 if (++idx == top || total + r->nrecs > recno)
94 BT_PUSH(t, pg, idx - 1);
99 --GETRINTERNAL(h, (idx - 1))->nrecs;
103 ++GETRINTERNAL(h, (idx - 1))->nrecs;
H A Drec_put.c199 indx_t idx, nxtindex; local
230 idx = e->index;
240 ++idx;
246 __rec_dleaf(t, h, idx) == RET_ERROR) {
260 status = __bt_split(t, h, NULL, data, dflags, nbytes, idx);
266 if (idx < (nxtindex = NEXTINDEX(h)))
267 memmove(h->linp + idx + 1, h->linp + idx,
268 (nxtindex - idx) * sizeof(indx_t));
271 h->linp[idx]
[all...]
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/btree/
H A Dbt_search.c72 indx_t base, idx, lim; local
84 t->bt_cur.index = idx = base + (lim >> 1);
93 base = idx + 1;
129 idx = base ? base - 1 : base;
131 next: BT_PUSH(t, h->pgno, idx);
132 pg = GETBINTERNAL(h, idx)->pgno;
160 indx_t idx; local
191 idx = parent->index + 1;
192 BT_PUSH(t, h->pgno, idx);
201 bi = GETBINTERNAL(h, idx);
240 indx_t idx; local
[all...]
H A Dbt_put.c77 indx_t idx, nxtindex; local
163 idx = t->bt_cursor.pg.index;
175 idx = e->index;
197 delete: if (__bt_dleaf(t, key, h, idx) == RET_ERROR) {
213 data, dflags, nbytes, idx)) != RET_SUCCESS)
218 if (idx < (nxtindex = NEXTINDEX(h)))
219 memmove(h->linp + idx + 1, h->linp + idx,
220 (nxtindex - idx) * sizeof(indx_t));
223 h->linp[idx]
[all...]
H A Dbt_delete.c153 indx_t idx; local
191 idx = parent->index + 1;
192 BT_PUSH(t, h->pgno, idx);
201 bi = GETBINTERNAL(h, idx);
211 idx = 0;
246 idx = parent->index - 1;
247 BT_PUSH(t, h->pgno, idx);
256 bi = GETBINTERNAL(h, idx);
266 idx = NEXTINDEX(h) - 1;
267 BT_PUSH(t, pgno, idx);
385 indx_t cnt, idx, *ip, offset; local
[all...]
H A Dbt_seq.c273 indx_t idx; local
341 idx = c->pg.index;
342 if (++idx == NEXTINDEX(h)) {
349 idx = 0;
364 idx = c->pg.index;
365 if (idx == 0) {
372 idx = NEXTINDEX(h) - 1;
374 --idx;
379 ep->index = idx;
502 __bt_setcur(t, pgno, idx)
825 indx_t idx; local
[all...]
/osnet-11/usr/src/lib/krb5/ss/
H A Dhelp.c32 register int idx; local
61 for (idx = 0; info->info_dirs[idx] != (char *)NULL; idx++) {
62 (void) strncpy(buffer, info->info_dirs[idx], sizeof(buffer) - 1);
/osnet-11/usr/src/lib/libsocket/inet/
H A Dlink_addr.c70 int idx = 0, numcolons = 0, digits = 0; local
122 netaddr[idx++] = num;
129 netaddr[idx++] = num;
133 *maclen = idx;
/osnet-11/usr/src/lib/krb5/kadm5/
H A Dmisc_free.c58 int i, idx; local
60 idx = (key->key_data_ver == 1 ? 1 : 2);
61 for (i = 0; i < idx; i++) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DChecker.pm695 =item C<$checker-E<gt>idx()>
704 sub idx { subroutine
770 foreach($self->idx()) {
1185 my $idx = $self->_check_ptree($contents, $line, $file, "$nestlist$cmd");
1186 if($idx =~ /^\s*$/s) {
1193 $self->idx($idx);
/osnet-11/usr/src/lib/libumem/common/
H A Dumem_fail.c92 uint_t idx; local
97 for (idx = SKIP_FRAMES; idx < nframes; idx++) {
98 (void) print_sym((void *)cur_stack[idx]);
H A Dumem_fork.c42 int idx; local
45 for (idx = 0; idx < ncpus; idx++)
46 (void) mutex_lock(&cp->cache_cpu[idx].cc_lock);
55 int idx; local
61 for (idx = 0; idx < ncpus; idx++)
62 (void) mutex_unlock(&cp->cache_cpu[idx]
68 int idx; local
80 int idx; local
[all...]
/osnet-11/usr/src/lib/libsmb/common/
H A Dsmb_wksids.c238 smb_wka_get_domain(int idx) argument
243 if ((idx >= 0) && (idx < SMB_WKA_NDOMAINS))
244 return (wka_nbdomain[idx]);
/osnet-11/usr/src/lib/fm/topo/modules/common/pcibus/
H A Ddid_hash.c113 int idx; local
117 for (idx = 0; idx < ht->dph_hashlen; idx++) {
118 for (e = ht->dph_hash[idx]; e != NULL; ) {
134 int idx = did_dnhash(key) % tab->dph_hashlen; local
139 key, (void *)tab, idx);
140 if (tab->dph_hash[idx] == NULL) {
141 tab->dph_hash[idx] = new;
147 for (assertchk = tab->dph_hash[idx];
161 int idx = did_dnhash(key) % tab->dph_hashlen; local
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/sun4v/sun4vpi/common/
H A Dpi_defer.c74 uu_list_index_t idx; local
102 (void) uu_list_find(defer_list, dnp, NULL, &idx);
103 uu_list_insert(defer_list, dnp, idx);
H A Dsun4vpi.c153 int idx; local
217 for (idx = 0; idx < num_components; idx++) {
224 skip = pi_skip_node(mod, pi.mdp, components[idx]);
231 components[idx], component_cookie, arc_cookie);
/osnet-11/usr/src/grub/grub2/grub-core/commands/
H A Dusbtest.c112 usb_print_str (const char *description, grub_usb_device_t dev, int idx) argument
118 if (! idx)
121 err = grub_usb_get_string (dev, idx, 0x0409, &name);
/osnet-11/usr/src/grub/grub2/grub-core/kern/
H A Denv.c48 int idx = grub_env_hashval (name); local
51 for (var = grub_current_context->vars[idx]; var; var = var->next)
62 int idx = grub_env_hashval (var->name); local
65 var->prevp = &context->vars[idx];
66 var->next = context->vars[idx];
69 context->vars[idx] = var;
/osnet-11/usr/src/lib/libunistat/common/
H A Dspcs_s_u.c94 int idx = 0; local
96 while (idx < p->icount) {
97 last = idx;
98 idx += p->idata[idx].f.sup_count + 1;
112 int idx; local
120 idx = last_code_idx(p);
121 strcpy(msg, module_names[p->idata[idx].f.module]);
123 sup = p->idata[idx].f.sup_count;
125 if (p->idata[idx]
[all...]
/osnet-11/usr/src/lib/libshadowfs/common/
H A Dshadow_hash.c155 ulong_t idx, nidx; local
174 for (idx = 0; idx < osize; idx++) {
175 while ((link = shp->sh_buckets[idx]) != NULL) {
183 shp->sh_buckets[idx] = link->shl_next;
199 ulong_t idx = shp->sh_compute(search) % shp->sh_nbuckets; local
202 for (hl = shp->sh_buckets[idx]; hl != NULL; hl = hl->shl_next) {
238 ulong_t idx = shadow_hash_compute(shp, elem); local
242 link->shl_next = shp->sh_buckets[idx];
254 ulong_t idx = shadow_hash_compute(shp, elem); local
[all...]
/osnet-11/usr/src/lib/libparted/common/libparted/fs/hfs/
H A Dcache.c125 unsigned int idx = start >> CR_SHIFT; local
127 PED_ASSERT(idx < cache->linked_ref_size, return NULL);
129 for (ext = cache->linked_ref[idx];
165 ext->next = cache->linked_ref[idx];
166 cache->linked_ref[idx] = ext;
180 unsigned int idx = start >> CR_SHIFT; local
182 PED_ASSERT(idx < cache->linked_ref_size, return NULL);
184 for (ret = cache->linked_ref[idx];
/osnet-11/usr/src/lib/libdisasm/sparc/
H A Ddis_sparc.c239 uint32_t idx = 0; local
261 idx = dis_get_bits(instr, tp->tbl_field, tp->tbl_len);
262 inp = &tp->tbl_inp[idx];
264 inp = dis_get_overlay(dhp, tp, idx);
278 if (tp->tbl_fmt(dhp, instr, inp, idx) == 0)
309 dis_get_overlay(dis_handle_t *dhp, const table_t *tp, uint32_t idx) argument
311 const inst_t *ip = &tp->tbl_inp[idx];
318 if (tp->tbl_ovp[i].ov_idx != idx)
/osnet-11/usr/src/lib/hal/libhal/common/
H A Dlibhal.h341 unsigned int idx,
447 unsigned int idx; /**< Index into current element */ member in struct:LibHalPropertySetIterator_s

Completed in 42 milliseconds

123456