Home
last modified time | relevance | path

Searched refs:HI_SDS_TYPE_BITS (Results 1 – 2 of 2) sorted by relevance

/dports/databases/redis-devel/redis-0e5b813/deps/hiredis/
H A Dsds.h86 #define HI_SDS_TYPE_BITS 3 macro
89 #define HI_SDS_TYPE_5_LEN(f) ((f)>>HI_SDS_TYPE_BITS)
140 *fp = (unsigned char)(HI_SDS_TYPE_5 | (newlen << HI_SDS_TYPE_BITS)); in hi_sdssetlen()
165 *fp = HI_SDS_TYPE_5 | (newlen << HI_SDS_TYPE_BITS); in hi_sdsinclen()
H A Dsds.c101 *fp = type | (initlen << HI_SDS_TYPE_BITS); in hi_sdsnewlen()
322 *fp = HI_SDS_TYPE_5 | ((oldlen+incr) << HI_SDS_TYPE_BITS); in hi_sdsIncrLen()