Function report |
Source Code:lib\zstd\compress.c |
Create Date:2022-07-28 07:03:20 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
home page | Tree |
Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:-************************************** Match length counter
Proto:static unsigned ZSTD_NbCommonBytes(register size_t val)
Type:unsigned
Parameter:
Type | Parameter | Name |
---|---|---|
register size_t | val |
892 | If ZSTD_isLittleEndian() Then |
893 | If ZSTD_64bits() Then |
894 | Return __builtin_ctzll((U64)val) >> 3 |
895 | Else |
896 | Return __builtin_ctz((U32)val) >> 3 |
898 | Else |
899 | If ZSTD_64bits() Then |
900 | Return __builtin_clzll(val) >> 3 |
901 | Else |
902 | Return __builtin_clz((U32)val) >> 3 |
Name | Describe |
---|---|
ZSTD_count |
Source code conversion tool public plug-in interface | X |
---|---|
Support c/c++/esqlc/java Oracle/Informix/Mysql Plug-in can realize: logical Report Code generation and batch code conversion |