Home
last modified time | relevance | path

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

/external/brotli/c/common/
Dplatform.h383 #define BROTLI_UNALIGNED_LOAD32LE BrotliUnalignedRead32 macro
398 static BROTLI_INLINE uint32_t BROTLI_UNALIGNED_LOAD32LE(const void* p) { in BROTLI_UNALIGNED_LOAD32LE() function
421 static BROTLI_INLINE uint32_t BROTLI_UNALIGNED_LOAD32LE(const void* p) { in BROTLI_UNALIGNED_LOAD32LE() function
545 BROTLI_UNUSED(&BROTLI_UNALIGNED_LOAD32LE); in BrotliSuppressUnusedFunctions()
/external/brotli/c/dec/
Dbit_reader.h130 br->val_ |= ((uint64_t)BROTLI_UNALIGNED_LOAD32LE(br->next_in)) << 32; in BrotliFillBitWindow()
140 br->val_ |= BROTLI_UNALIGNED_LOAD32LE(br->next_in) << 8; in BrotliFillBitWindow()
/external/brotli/c/enc/
Dhash_forgetful_chain_inc.h32 const uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kHashMul32; in FN()
Dhash_longest_match_inc.h24 uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kHashMul32; in FN()
Dhash_to_binary_tree_inc.h28 uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kHashMul32; in FN()
Dhash.h85 uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kHashMul32; in Hash14()
Dstatic_dict.c20 uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kDictHashMul32; in Hash()