Home
last modified time | relevance | path

Searched refs:BROTLI_UNALIGNED_LOAD64LE (Results 1 – 7 of 7) sorted by relevance

/external/brotli/c/enc/
Dfind_match_length.h27 if (BROTLI_PREDICT_FALSE(BROTLI_UNALIGNED_LOAD64LE(s2) == in FindMatchLengthWithLimit()
28 BROTLI_UNALIGNED_LOAD64LE(s1 + matched))) { in FindMatchLengthWithLimit()
32 uint64_t x = BROTLI_UNALIGNED_LOAD64LE(s2) ^ in FindMatchLengthWithLimit()
33 BROTLI_UNALIGNED_LOAD64LE(s1 + matched); in FindMatchLengthWithLimit()
Dcompress_fragment_two_pass.c45 (BROTLI_UNALIGNED_LOAD64LE(p) << ((8 - length) * 8)) * kHashMul32; in Hash()
356 input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 3); in CreateCommands()
365 input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 5); in CreateCommands()
372 input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 2); in CreateCommands()
411 input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 3); in CreateCommands()
420 input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 5); in CreateCommands()
427 input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 2); in CreateCommands()
Dcompress_fragment.c44 const uint64_t h = (BROTLI_UNALIGNED_LOAD64LE(p) << 24) * kHashMul32; in Hash()
605 uint64_t input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 3); in BrotliCompressFragmentFastImpl()
642 uint64_t input_bytes = BROTLI_UNALIGNED_LOAD64LE(ip - 3); in BrotliCompressFragmentFastImpl()
Dhash_longest_match_quickly_inc.h26 const uint64_t h = ((BROTLI_UNALIGNED_LOAD64LE(data) << (64 - 8 * HASH_LEN)) * in FN()
Dhash_longest_match64_inc.h26 const uint64_t h = (BROTLI_UNALIGNED_LOAD64LE(data) & mask) * kHashMul64Long; in FN()
/external/brotli/c/common/
Dplatform.h386 #define BROTLI_UNALIGNED_LOAD64LE BrotliUnalignedRead64 macro
409 static BROTLI_INLINE uint64_t BROTLI_UNALIGNED_LOAD64LE(const void* p) { in BROTLI_UNALIGNED_LOAD64LE() function
431 static BROTLI_INLINE uint64_t BROTLI_UNALIGNED_LOAD64LE(const void* p) { in BROTLI_UNALIGNED_LOAD64LE() function
572 BROTLI_UNUSED(&BROTLI_UNALIGNED_LOAD64LE); in BrotliSuppressUnusedFunctions()
/external/brotli/c/dec/
Dbit_reader.h114 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 8; in BrotliFillBitWindow()
123 br->val_ |= BROTLI_UNALIGNED_LOAD64LE(br->next_in) << 16; in BrotliFillBitWindow()