Symbol: hash_name
usr/src/cmd/svc/svcs/explain.c
414
h = hash_name(svcname) & SVC_HASH_MASK;
usr/src/cmd/svc/svcs/explain.c
694
h = hash_name(sn) & SVC_HASH_MASK;
usr/src/tools/smatch/src/tokenize.c
891
return insert_hash(ident, hash_name(ident->name, ident->len));
usr/src/tools/smatch/src/tokenize.c
897
return create_hashed_ident(name, len, hash_name(name, len));
usr/src/uts/common/fs/nfs/nfs_export.c
789
#define exp_hash_unlink(exi, hash_name) \
usr/src/uts/common/fs/nfs/nfs_export.c
790
if (*(exi)->hash_name.bckt == (exi)) \
usr/src/uts/common/fs/nfs/nfs_export.c
791
*(exi)->hash_name.bckt = (exi)->hash_name.next; \
usr/src/uts/common/fs/nfs/nfs_export.c
792
if ((exi)->hash_name.prev) \
usr/src/uts/common/fs/nfs/nfs_export.c
793
(exi)->hash_name.prev->hash_name.next = (exi)->hash_name.next; \
usr/src/uts/common/fs/nfs/nfs_export.c
794
if ((exi)->hash_name.next) \
usr/src/uts/common/fs/nfs/nfs_export.c
795
(exi)->hash_name.next->hash_name.prev = (exi)->hash_name.prev; \
usr/src/uts/common/fs/nfs/nfs_export.c
796
(exi)->hash_name.bckt = NULL;
usr/src/uts/common/fs/nfs/nfs_export.c
798
#define exp_hash_link(exi, hash_name, bucket) \
usr/src/uts/common/fs/nfs/nfs_export.c
799
(exi)->hash_name.bckt = (bucket); \
usr/src/uts/common/fs/nfs/nfs_export.c
800
(exi)->hash_name.prev = NULL; \
usr/src/uts/common/fs/nfs/nfs_export.c
801
(exi)->hash_name.next = *(bucket); \
usr/src/uts/common/fs/nfs/nfs_export.c
802
if ((exi)->hash_name.next) \
usr/src/uts/common/fs/nfs/nfs_export.c
803
(exi)->hash_name.next->hash_name.prev = (exi); \