Lines Matching refs:encoding
184 uint8_t encoding; /* HLL_DENSE or HLL_SPARSE. */ member
592 if (hdr->encoding == HLL_DENSE) return C_OK; in hllSparseToDense()
600 hdr->encoding = HLL_DENSE; in hllSparseToDense()
1025 if (hdr->encoding == HLL_DENSE) { in hllCount()
1027 } else if (hdr->encoding == HLL_SPARSE) { in hllCount()
1030 } else if (hdr->encoding == HLL_RAW) { in hllCount()
1053 switch(hdr->encoding) { in hllAdd()
1072 if (hdr->encoding == HLL_DENSE) { in hllMerge()
1142 hdr->encoding = HLL_SPARSE; in createHLLObject()
1164 if (hdr->encoding > HLL_MAX_ENCODING) goto invalid; in isHLLObjectOrReply()
1167 if (hdr->encoding == HLL_DENSE && in isHLLObjectOrReply()
1237 hdr->encoding = HLL_RAW; /* Special internal-only encoding. */ in pfcountCommand()
1330 if (hdr->encoding == HLL_DENSE) use_dense = 1; in pfmergeCommand()
1367 switch(hdr->encoding) { in pfmergeCommand()
1449 if (hdr2->encoding != HLL_SPARSE) { in pfselftestCommand()
1513 if (hdr->encoding == HLL_SPARSE) { in pfdebugCommand()
1537 if (hdr->encoding != HLL_SPARSE) { in pfdebugCommand()
1570 addReplyStatus(c,encodingstr[hdr->encoding]); in pfdebugCommand()
1577 if (hdr->encoding == HLL_SPARSE) { in pfdebugCommand()