Home
last modified time | relevance | path

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

/DragonOS-0.1.7/docs/userland/libc/apis/api-list/
Derrno.md63 #define EILSEQ 25 /* 不合法的字符序列 Illegal byte sequence.*/
/DragonOS-0.1.7/kernel/src/libs/
Dlz4.c917 LZ4_FORCE_INLINE U32 LZ4_hash4(U32 sequence, tableType_t const tableType) in LZ4_hash4() argument
920 return ((sequence * 2654435761U) >> ((MINMATCH * 8) - (LZ4_HASHLOG + 1))); in LZ4_hash4()
922 return ((sequence * 2654435761U) >> ((MINMATCH * 8) - LZ4_HASHLOG)); in LZ4_hash4()
925 LZ4_FORCE_INLINE U32 LZ4_hash5(U64 sequence, tableType_t const tableType) in LZ4_hash5() argument
931 return (U32)(((sequence << 24) * prime5bytes) >> (64 - hashLog)); in LZ4_hash5()
936 return (U32)(((sequence >> 24) * prime8bytes) >> (64 - hashLog)); in LZ4_hash5()