Function report |
Source Code:lib\xxhash.c |
Create Date:2022-07-28 06:56:26 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
home page | Tree |
Annotation kernel can get tool activity | Download SCCT | Chinese |
Name:xxh64_digest
Proto:uint64_t xxh64_digest(const struct xxh64_state *state)
Type:uint64_t
Parameter:
Type | Parameter | Name |
---|---|---|
const struct xxh64_state * | state |
451 | If total_len >= 32 Then |
457 | h64 = xxh_rotl64(v1, 1) + xxh_rotl64(v2, 7) + xxh_rotl64(v3, 12) + xxh_rotl64(v4, 18) |
459 | h64 = xxh64_merge_round(h64, v1) |
460 | h64 = xxh64_merge_round(h64, v2) |
461 | h64 = xxh64_merge_round(h64, v3) |
462 | h64 = xxh64_merge_round(h64, v4) |
463 | Else |
470 | k1 = xxh64_round(0, get_unaligned_le64(p)) |
473 | h64 = xxh_rotl64(h64, 27) * PRIME64_1 + PRIME64_4 |
474 | p += 8 |
478 | h64 ^= get_unaligned_le32(p) * PRIME64_1 |
479 | h64 = xxh_rotl64(h64, 23) * PRIME64_2 + PRIME64_3 |
480 | p += 4 |
495 | Return h64 |
Name | Describe |
---|---|
ZSTD_writeEpilogue | : nb of bytes written into dst (or an error code) |
ZSTD_decompressFrame | ! ZSTD_decompressFrame() :*@dctx must be properly initialized |
ZSTD_decompressContinue | : nb of bytes generated into `dst` (necessarily <= `dstCapacity) |
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 |