Searched refs:hfunc (Results 1 - 7 of 7) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/libpkg/common/
H A Dnhash.h58 int (*hfunc)(void *, int, int); member in struct:cache_t
67 int (*hfunc)(void *, int, int), int (*cfunc)(void *, void *, int));
H A Dnhash.c77 int (*hfunc)(void *, int, int), int (*cfunc)(void *, void *, int))
94 if (hfunc != (int (*)()) NULL) {
95 (*cp)->hfunc = hfunc;
97 (*cp)->hfunc = HASH;
121 bp = &cp->bp[(*cp->hfunc)(itemp->key, itemp->keyl, cp->hsz)];
131 (*cp->hfunc)(itemp->key, itemp->keyl, cp->hsz));
174 bp = &cp->bp[(*cp->hfunc)(datap, datalen, cp->hsz)];
/opensolaris-onvv-gate/usr/src/cmd/lvm/rpc.metamedd/
H A Dmed_hash.h59 int (*hfunc)(void *, int, int); member in struct:cache_t
70 int (*hfunc)(void *, int, int),
H A Dmed_hash.c66 int (*hfunc)(void *, int, int),
91 if (hfunc != (int (*)()) NULL)
92 (*cp)->hfunc = hfunc;
94 (*cp)->hfunc = HASH;
129 bp = &cp->bp[(*cp->hfunc)(itemp->key, itemp->keyl, cp->hsz)];
138 (*cp->hfunc)(itemp->key, itemp->keyl, cp->hsz));
181 bp = &cp->bp[(*cp->hfunc)(datap, datalen, cp->hsz)];
299 bidx = (*cp->hfunc)(datap, datalen, cp->hsz);
/opensolaris-onvv-gate/usr/src/cmd/sendmail/src/
H A Dstab.c51 register int hfunc; local
62 hfunc = type;
64 hfunc = ((hfunc << 1) ^ (SM_LOWER(*p) & 0377)) % STABSIZE;
67 sm_dprintf("(hfunc=%d) ", hfunc);
69 ps = &SymTab[hfunc];
H A Ddomain.c613 int hfunc; local
626 hfunc = seed;
633 hfunc = ((hfunc << 1) ^ c) % 2003;
636 hfunc &= 0xff;
637 hfunc++;
640 sm_dprintf(" = %d\n", hfunc);
641 return hfunc;
/opensolaris-onvv-gate/usr/src/cmd/audio/utilities/
H A DAudioBuffer.cc196 AudioHdr(AudioBuffer::*hfunc)()const;
207 // This convoluted hfunc works around non-const function problems
208 hfunc = (AudioHdr(AudioBuffer::*)() const)&AudioBuffer::GetHeader;
209 hdr_local = (this->*hfunc)();

Completed in 122 milliseconds