Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
14ed10d9
Commit
14ed10d9
authored
Nov 09, 2011
by
antirez
Browse files
dict set/get macros for integers fixed.
parent
2c2b2085
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dict.h
View file @
14ed10d9
...
@@ -105,10 +105,10 @@ typedef struct dictIterator {
...
@@ -105,10 +105,10 @@ typedef struct dictIterator {
entry->v.val = (_val_); \
entry->v.val = (_val_); \
} while(0)
} while(0)
#define dictSetSignedIntegerVal(
d,
entry, _val_) \
#define dictSetSignedIntegerVal(entry, _val_) \
do { entry->v.s64 = _val_; } while(0)
do { entry->v.s64 = _val_; } while(0)
#define dictSetUnsignedIntegerVal(
d,
entry, _val_) \
#define dictSetUnsignedIntegerVal(entry, _val_) \
do { entry->v.u64 = _val_; } while(0)
do { entry->v.u64 = _val_; } while(0)
#define dictFreeKey(d, entry) \
#define dictFreeKey(d, entry) \
...
@@ -130,8 +130,8 @@ typedef struct dictIterator {
...
@@ -130,8 +130,8 @@ typedef struct dictIterator {
#define dictHashKey(d, key) (d)->type->hashFunction(key)
#define dictHashKey(d, key) (d)->type->hashFunction(key)
#define dictGetKey(he) ((he)->key)
#define dictGetKey(he) ((he)->key)
#define dictGetVal(he) ((he)->v.val)
#define dictGetVal(he) ((he)->v.val)
#define dictGetSignedIntegerVal ((he)->v.s64)
#define dictGetSignedIntegerVal
(he)
((he)->v.s64)
#define dictGetUnsignedIntegerVal ((he)->v.u64)
#define dictGetUnsignedIntegerVal
(he)
((he)->v.u64)
#define dictSlots(d) ((d)->ht[0].size+(d)->ht[1].size)
#define dictSlots(d) ((d)->ht[0].size+(d)->ht[1].size)
#define dictSize(d) ((d)->ht[0].used+(d)->ht[1].used)
#define dictSize(d) ((d)->ht[0].used+(d)->ht[1].used)
#define dictIsRehashing(ht) ((ht)->rehashidx != -1)
#define dictIsRehashing(ht) ((ht)->rehashidx != -1)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment