Skip to content

Commit

Permalink
hv.h Doc Patch
Browse files Browse the repository at this point in the history
Message-ID: <B9B6874277EED211B1890008C707AF5302881C77@indyexch3.indy.tce.com>

p4raw-id: //depot/perl@6866
  • Loading branch information
Mark Fisher authored and jhi committed Aug 28, 2000
1 parent c1a7f87 commit 5cbe4ee
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions hv.h
Expand Up @@ -7,21 +7,25 @@
*
*/

/* typedefs to eliminate some typing */
typedef struct he HE;
typedef struct hek HEK;

/* entry in hash value chain */
struct he {
HE *hent_next;
HEK *hent_hek;
SV *hent_val;
HE *hent_next; /* next entry in chain */
HEK *hent_hek; /* hash key */
SV *hent_val; /* scalar value that was hashed */
};

/* hash key -- defined separately for use as shared pointer */
struct hek {
U32 hek_hash;
I32 hek_len;
char hek_key[1];
U32 hek_hash; /* hash of key */
I32 hek_len; /* length of hash key */
char hek_key[1]; /* variable-length hash key */
};

/* hash structure: */
/* This structure must match the beginning of struct xpvmg in sv.h. */
struct xpvhv {
char * xhv_array; /* pointer to malloced string */
Expand All @@ -38,6 +42,7 @@ struct xpvhv {
char *xhv_name; /* name, if a symbol table */
};

/* hash a key */
#define PERL_HASH(hash,str,len) \
STMT_START { \
register const char *s_PeRlHaSh = str; \
Expand Down Expand Up @@ -171,6 +176,7 @@ C<SV*>.
#define HEK_LEN(hek) (hek)->hek_len
#define HEK_KEY(hek) (hek)->hek_key

/* calculate HV array allocation */
#if defined(STRANGE_MALLOC) || defined(MYMALLOC)
# define PERL_HV_ARRAY_ALLOC_BYTES(size) ((size) * sizeof(HE*))
#else
Expand Down

0 comments on commit 5cbe4ee

Please sign in to comment.