Home
last modified time | relevance | path

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

/external/brotli/c/common/
Dplatform.h385 #define BROTLI_UNALIGNED_LOAD32LE BrotliUnalignedRead32 macro
400 static BROTLI_INLINE uint32_t BROTLI_UNALIGNED_LOAD32LE(const void* p) { in BROTLI_UNALIGNED_LOAD32LE() function
423 static BROTLI_INLINE uint32_t BROTLI_UNALIGNED_LOAD32LE(const void* p) { in BROTLI_UNALIGNED_LOAD32LE() function
571 BROTLI_UNUSED(&BROTLI_UNALIGNED_LOAD32LE); in BrotliSuppressUnusedFunctions()
/external/brotli/c/dec/
Dbit_reader.h131 br->val_ |= ((uint64_t)BROTLI_UNALIGNED_LOAD32LE(br->next_in)) << 32; in BrotliFillBitWindow()
141 br->val_ |= BROTLI_UNALIGNED_LOAD32LE(br->next_in) << 8; in BrotliFillBitWindow()
/external/brotli/c/enc/
Dhash_longest_match_inc.h25 uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kHashMul32; in FN()
Dhash_forgetful_chain_inc.h32 const 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.h70 uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kHashMul32; in Hash14()
Dstatic_dict.c20 uint32_t h = BROTLI_UNALIGNED_LOAD32LE(data) * kDictHashMul32; in Hash()