Searched defs:elt (Results 1 - 9 of 9) sorted by relevance

/illumos-gate/usr/src/lib/libtnf/
H A Darray.c41 struct taginfo **elt,
73 struct taginfo *info, *base, *elt, *elt_base; local
81 elt = base->base; /* XXX base slot is reused for elttype */
82 elt_base = INFO_DERIVED(elt) ? elt->base : elt;
85 *eltp = elt;
98 struct taginfo *base, *elt, *elt_base; local
102 (void) get_array_info(datum, &base, &elt, &elt_base);
119 struct taginfo *base, *elt, *elt_bas local
163 struct taginfo *base, *elt, *elt_base; local
179 struct taginfo *info, *base, *elt, *elt_base; local
198 struct taginfo *base, *elt, *elt_base; local
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dheap.c106 float_up(heap_context ctx, int i, void *elt) { argument
110 i > 1 && ctx->higher_priority(elt, ctx->heap[p]);
116 ctx->heap[i] = elt;
122 sink_down(heap_context ctx, int i, void *elt) { argument
133 if (ctx->higher_priority(elt, ctx->heap[j]))
140 ctx->heap[i] = elt;
146 heap_insert(heap_context ctx, void *elt) { argument
149 if (ctx == NULL || elt == NULL) {
158 float_up(ctx, i, elt);
165 void *elt; local
[all...]
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dasn1_encode.c336 const void *elt, *eltptr; local
345 elt = LOADPTR(eltptr, a);
346 if (elt == NULL)
/illumos-gate/usr/src/uts/common/os/
H A Dbitset.c123 bitset_add(bitset_t *b, uint_t elt) argument
125 uint_t pos = (elt << b->bs_fanout);
135 bitset_atomic_add(bitset_t *b, uint_t elt) argument
137 uint_t pos = (elt << b->bs_fanout);
148 bitset_atomic_test_and_add(bitset_t *b, uint_t elt) argument
150 uint_t pos = (elt << b->bs_fanout);
163 bitset_del(bitset_t *b, uint_t elt) argument
165 uint_t pos = (elt << b->bs_fanout);
175 bitset_atomic_del(bitset_t *b, uint_t elt) argument
177 uint_t pos = (elt <<
188 bitset_atomic_test_and_del(bitset_t *b, uint_t elt) argument
203 bitset_in_set(bitset_t *b, uint_t elt) argument
235 uint_t rotate_bit, elt = (uint_t)-1; local
259 uint_t elt = (uint_t)-1; local
[all...]
/illumos-gate/usr/src/cmd/sgs/elfedit/common/
H A Dutil_machelf.c89 elfedit_dyn_elt_init(elfedit_dyn_elt_t *elt) argument
91 elt->dn_seen = 0;
99 elfedit_dyn_elt_save(elfedit_dyn_elt_t *elt, Word ndx, Dyn *dyn) argument
101 elt->dn_seen = 1;
102 elt->dn_ndx = ndx;
103 elt->dn_dyn = *dyn;
/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Dfake_shdr.c349 SINFO_LISTELT *elt; local
351 if ((elt = malloc(sizeof (*elt))) == NULL) {
358 elt->next = root;
359 elt->prev = root->prev;
361 root->prev = elt;
362 elt->prev->next = elt;
364 bzero(&elt->sinfo, sizeof (elt
377 SINFO_LISTELT *elt; local
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/targets/
H A Dses_ses.c711 * int elt
713 * This is the element type being sought. If elt is -1,
718 * This is the ordinal Mth element of type elt being sought.
727 ses_decode(char *b, int amt, uchar_t *ep, int elt, int elm, SesComStat *sp) argument
735 if (elt == -1) {
749 if (elm >= ep[elt])
756 for (idx = 8, i = 0; i < elt; i++) {
783 elt, elm, idx-4);
795 ses_encode(char *b, int amt, uchar_t *ep, int elt, int elm, SesComStat *sp) argument
803 if (elt
[all...]
/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregnexec.c585 Ckey_t elt; local
587 mbxfrm(elt, key, COLL_KEY_MAX);
597 if (!strcmp((char*)ce->beg, (char*)elt))
601 if (strcmp((char*)ce->beg, (char*)elt) <= ce->min && strcmp((char*)elt, (char*)ce->end) <= ce->max)
605 if (strcmp((char*)ce->beg, (char*)elt) <= ce->min && strcmp((char*)elt, (char*)ce->end) <= ce->max && (iswlower(c) || !iswupper(c)))
609 if (strcmp((char*)ce->beg, (char*)elt) <= ce->min && strcmp((char*)elt, (char*)ce->end) <= ce->max && (iswupper(c) || !iswlower(c)))
660 Ckey_t elt; local
[all...]
/illumos-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_libscf.c11498 struct snaplevel *elt; local
11502 elt = uu_list_next(cur_levels, cur_elt);
11503 if (elt == NULL) {
11510 if (scf_snaplevel_get_instance_name(elt->sl, buf,
11522 cur_elt = elt;
11523 cur_level = elt->sl;
11575 struct snaplevel *elt; local
11577 elt = uu_list_prev(cur_levels, cur_elt);
11578 if (elt == NULL) {
11581 cur_elt = elt;
11743 struct snaplevel *elt; local
[all...]

Completed in 103 milliseconds