Home
last modified time | relevance | path

Searched refs:BROTLI_UNALIGNED_LOAD64 (Results 1 – 6 of 6) sorted by relevance

/external/brotli/enc/
Dfind_match_length.h28 if (BROTLI_PREDICT_FALSE(BROTLI_UNALIGNED_LOAD64(s2) == in FindMatchLengthWithLimit()
29 BROTLI_UNALIGNED_LOAD64(s1 + matched))) { in FindMatchLengthWithLimit()
34 BROTLI_UNALIGNED_LOAD64(s2) ^ BROTLI_UNALIGNED_LOAD64(s1 + matched); in FindMatchLengthWithLimit()
Dport.h66 #define BROTLI_UNALIGNED_LOAD64(_p) (*(const uint64_t *)(_p)) macro
94 static BROTLI_INLINE uint64_t BROTLI_UNALIGNED_LOAD64(const void *p) { in BROTLI_UNALIGNED_LOAD64() function
115 static BROTLI_INLINE uint64_t BROTLI_UNALIGNED_LOAD64(const void *p) { in BROTLI_UNALIGNED_LOAD64() function
Dcompress_fragment_two_pass.c44 const uint64_t h = (BROTLI_UNALIGNED_LOAD64(p) << 16) * kHashMul32; in Hash()
349 uint64_t input_bytes = BROTLI_UNALIGNED_LOAD64(ip - 5); in CreateCommands()
357 input_bytes = BROTLI_UNALIGNED_LOAD64(ip - 2); in CreateCommands()
389 uint64_t input_bytes = BROTLI_UNALIGNED_LOAD64(ip - 5); in CreateCommands()
397 input_bytes = BROTLI_UNALIGNED_LOAD64(ip - 2); in CreateCommands()
Dcompress_fragment.c45 const uint64_t h = (BROTLI_UNALIGNED_LOAD64(p) << 24) * kHashMul32; in Hash()
606 uint64_t input_bytes = BROTLI_UNALIGNED_LOAD64(ip - 3); in BrotliCompressFragmentFastImpl()
643 uint64_t input_bytes = BROTLI_UNALIGNED_LOAD64(ip - 3); in BrotliCompressFragmentFastImpl()
Dhash_longest_match_quickly_inc.h25 const uint64_t h = ((BROTLI_UNALIGNED_LOAD64(data) << (64 - 8 * HASH_LEN)) * in FN()
Dhash_longest_match64_inc.h26 const uint64_t h = (BROTLI_UNALIGNED_LOAD64(data) & mask) * kHashMul64Long; in FN()