Lines Matching defs:value
102 * when a real index has the same value as ZSTD_DUBT_UNSORTED_MARK */
802 U64 ZSTD_rotateRight_U64(U64 const value, U32 count) {
805 return (value >> count) | (U64)(value << ((0U - count) & 0x3F));
809 U32 ZSTD_rotateRight_U32(U32 const value, U32 count) {
812 return (value >> count) | (U32)(value << ((0U - count) & 0x1F));
816 U16 ZSTD_rotateRight_U16(U16 const value, U32 count) {
819 return (value >> count) | (U16)(value << ((0U - count) & 0x0F));
824 * value to reflect the update. Essentially cycles backwards from [0, {entries per row})
999 * Each row is a circular buffer beginning at the value of "head". So we must rotate the "matches" bitfield
1652 * Pay attention that `start[-value]` can lead to strange undefined behavior
1653 * notably if `value` is unsigned, resulting in a large positive `-value`.