Lines Matching defs:fast
782 * otherwise it must be 0. HUF_addBits() is faster when fast is set.
790 * knows this and elides the mask. When fast is set,
800 /* The last 4-bits of elt are dirty if fast is set,
892 HUF_encodeSymbol(HUF_CStream_t* bitCPtr, U32 symbol, const HUF_CElt* CTable, int idx, int fast)
894 HUF_addBits(bitCPtr, CTable[symbol], idx, fast);
908 HUF_encodeSymbol(bitC, ip[--n], ct, 0, /* fast */ 0);
930 HUF_encodeSymbol(bitC, ip[n - u], ct, /* idx */ 0, /* fast */ 1);
932 HUF_encodeSymbol(bitC, ip[n - kUnroll], ct, /* idx */ 0, /* fast */ kLastFast);
940 HUF_encodeSymbol(bitC, ip[n - kUnroll - u], ct, /* idx */ 1, /* fast */ 1);
942 HUF_encodeSymbol(bitC, ip[n - kUnroll - kUnroll], ct, /* idx */ 1, /* fast */ kLastFast);