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

  /external/brotli/c/enc/
hash.h 58 #define score_t size_t macro
69 score_t score;
134 static BROTLI_INLINE score_t BackwardReferenceScore(
136 return BROTLI_SCORE_BASE + BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length -
140 static BROTLI_INLINE score_t BackwardReferenceScoreUsingLastDistance(
142 return BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length +
146 static BROTLI_INLINE score_t BackwardReferencePenaltyUsingLastDistance(
148 return (score_t)39 + ((0x1CA10 >> (distance_short_code & 0xE)) & 0xE);
160 score_t score;
  /external/webp/src/enc/
vp8i_enc.h 107 typedef int64_t score_t; // type used for scores, rate, distortion typedef
108 // Note that MAX_COST is not the maximum allowed by sizeof(score_t),
110 #define MAX_COST ((score_t)0x7fffffffffffffLL)
204 score_t i4_penalty_; // penalty for using Intra4
212 score_t D, SD; // Distortion, spectral distortion
213 score_t H, R, score; // header bits, rate, score.

Completed in 171 milliseconds