Searched refs:elt (Results 1 - 24 of 24) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/libresolv2/include/isc/
H A Dlist.h27 #define INIT_LINK_TYPE(elt, link, type) \
29 (elt)->link.prev = (type *)(-1); \
30 (elt)->link.next = (type *)(-1); \
32 #define INIT_LINK(elt, link) \
33 INIT_LINK_TYPE(elt, link, void)
34 #define LINKED(elt, link) ((void *)((elt)->link.prev) != (void *)(-1) && \
35 (void *)((elt)->link.next) != (void *)(-1))
41 #define PREPEND(list, elt, link) \
43 INSIST(!LINKED(elt, lin
[all...]
/opensolaris-onvv-gate/usr/src/cmd/sendmail/db/include/
H A Ddb_shash.h16 * Look up something in a shared memory hash table. The "elt" argument
23 * elt: the item for which we are searching in the hash table.
26 * hash_func: the hash function that operates on elements of the type of elt
27 * cmp_func: compare elements of the type of elt with those in the table (of
33 #define HASHLOOKUP(begin, type, field, elt, r, n, hash, cmp) do { \
37 __ndx = hash(elt) % (n); \
41 if (cmp(elt, r)) \
53 * elt: the item to be inserted.
55 * hash_func: the hash function that operates on elements of the type of elt
57 #define HASHINSERT(begin, type, field, elt,
[all...]
/opensolaris-onvv-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...]
/opensolaris-onvv-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...]
/opensolaris-onvv-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...]
/opensolaris-onvv-gate/usr/src/tools/onbld/hgext/
H A Dcdm.py241 for elt in sorted(lst[chng]):
242 if elt.is_renamed():
243 ui.write('\t%s (renamed from %s)\n' % (elt.name,
244 elt.parentname))
245 elif elt.is_copied():
246 ui.write('\t%s (copied from %s)\n' % (elt.name,
247 elt.parentname))
249 ui.write('\t%s\n' % elt.name)
257 for elt in set(filter(Comments.isARC, act.comments())):
258 ui.write(elt
[all...]
/opensolaris-onvv-gate/usr/src/tools/onbld/Scm/
H A DBackup.py427 for elt in self.files:
428 fpath = self.ws.repo.join(elt)
430 tar.add(fpath, elt)
437 error = "%s: %s" % (elt, e)
478 for elt in tar:
479 tar.extract(elt, path=self.ws.repo.path)
483 error = "%s: %s" % (elt.name, e)
515 for elt in tar:
516 fpath = self.ws.repo.join(elt.name)
520 if elt
[all...]
/opensolaris-onvv-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...]
/opensolaris-onvv-gate/usr/src/tools/scripts/
H A Dcddlchk.py79 def __contains__(self, elt):
80 return self.match(elt)
H A Dmapfilechk.py79 def __contains__(self, elt):
80 return self.match(elt)
H A Dwdiff.pl140 // elt.offsetBottom - window.scrollY.
/opensolaris-onvv-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...]
/opensolaris-onvv-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;
/opensolaris-onvv-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)
H A Dasn1_k_decode.c740 (*(array))[(size)-1] = elt
744 type *elt;\
748 alloc_field(elt,type);\
749 get_element(elt,decoder);\
750 array_append(val,size,elt,type);\
/opensolaris-onvv-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...]
/opensolaris-onvv-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Ddup_avl.c55 #define OFFSETOF(type, elt) ((size_t)(&((type *)NULL)->elt))
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/
H A Dmg.c969 char pathbuf[256], eltbuf[256], *cp, *elt = s; local
975 if ( ((cp = strchr(elt,'[')) || (cp = strchr(elt,'<'))) ) {
977 cando_by_name(S_IWUSR,0,elt) ) {
982 if ((cp = strchr(elt, ':')) != Nullch)
984 if (my_trnlnm(elt, eltbuf, j++))
985 elt = eltbuf;
990 } while (my_trnlnm(s, pathbuf, i++) && (elt = pathbuf));
H A Ddump.c1217 SV** elt = av_fetch((AV*)sv,count,0); local
1220 if (elt)
1221 do_sv_dump(level+1, file, *elt, nest+1, maxnest, dumpops, pvlim);
1297 SV *elt, *keysv; local
1304 elt = hv_iterval(hv, he);
1311 do_sv_dump(level+1, file, elt, nest+1, maxnest, dumpops, pvlim);
/opensolaris-onvv-gate/usr/src/cmd/sgs/include/
H A Delfedit.h871 extern void elfedit32_dyn_elt_save(elfedit32_dyn_elt_t *elt, Elf32_Word ndx,
873 extern void elfedit64_dyn_elt_save(elfedit64_dyn_elt_t *elt, Elf64_Word ndx,
/opensolaris-onvv-gate/usr/src/lib/libkmsagent/common/SOAP/
H A Dstdsoap2.cpp8784 { register struct soap_dom_element *elt = (struct soap_dom_element*)soap_malloc(soap, sizeof(struct soap_dom_element)); local
8785 if (!elt)
8787 elt->soap = soap;
8788 elt->next = NULL;
8789 elt->prnt = soap->dom;
8790 elt->name = soap_strdup(soap, tag);
8791 elt->elts = NULL;
8792 elt->atts = NULL;
8793 elt->nstr = NULL;
8794 elt
9843 { register struct soap_dom_element *elt; local
[all...]
H A Dstdsoap2.h1604 struct soap_dom_element *elt; member in class:soap_dom_element_iterator
1656 SOAP_FMAC1 struct soap_dom_element * SOAP_FMAC2 soap_dom_next_element(struct soap_dom_element *elt);
/opensolaris-onvv-gate/usr/src/cmd/svc/svccfg/
H A Dsvccfg_libscf.c11194 struct snaplevel *elt; local
11198 elt = uu_list_next(cur_levels, cur_elt);
11199 if (elt == NULL) {
11206 if (scf_snaplevel_get_instance_name(elt->sl, buf,
11218 cur_elt = elt;
11219 cur_level = elt->sl;
11271 struct snaplevel *elt; local
11273 elt = uu_list_prev(cur_levels, cur_elt);
11274 if (elt == NULL) {
11277 cur_elt = elt;
11439 struct snaplevel *elt; local
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DMM_VMS.pm958 my($tmp,@lines,$elt) = '';
960 foreach $elt (@omods) {
961 $tmp .= ",$elt";

Completed in 461 milliseconds