HomeSort by relevance Sort by last modified time
    Searched refs:BROTLI_IS_CONSTANT (Results 1 - 2 of 2) sorted by null

  /external/brotli/c/dec/
bit_reader.h 35 if (BROTLI_IS_CONSTANT(n) || BROTLI_HAS_UBFX) {
109 if (!BROTLI_ALIGNED_READ && BROTLI_IS_CONSTANT(n_bits) && (n_bits <= 8)) {
118 !BROTLI_ALIGNED_READ && BROTLI_IS_CONSTANT(n_bits) && (n_bits <= 16)) {
136 if (!BROTLI_ALIGNED_READ && BROTLI_IS_CONSTANT(n_bits) && (n_bits <= 8)) {
  /external/brotli/c/common/
platform.h 454 /* BROTLI_IS_CONSTANT macros returns true for compile-time constants. */
457 #define BROTLI_IS_CONSTANT(x) (!!__builtin_constant_p(x))
459 #define BROTLI_IS_CONSTANT(x) (!!0)

Completed in 157 milliseconds