Home
last modified time | relevance | path

Searched refs:delta3 (Results 1 – 3 of 3) sorted by relevance

/external/lzma/C/
DLzFind.c541 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Bt4_MatchFinder_GetMatches() local
547 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value]; in Bt4_MatchFinder_GetMatches()
562 if (delta2 != delta3 && delta3 < p->cyclicBufferSize && *(cur - delta3) == *cur) in Bt4_MatchFinder_GetMatches()
565 distances[offset + 1] = delta3 - 1; in Bt4_MatchFinder_GetMatches()
567 delta2 = delta3; in Bt4_MatchFinder_GetMatches()
588 UInt32 hash2Value, hash3Value, delta2, delta3, maxLen, offset; in Hc4_MatchFinder_GetMatches() local
594 delta3 = p->pos - p->hash[kFix3HashSize + hash3Value]; in Hc4_MatchFinder_GetMatches()
609 if (delta2 != delta3 && delta3 < p->cyclicBufferSize && *(cur - delta3) == *cur) in Hc4_MatchFinder_GetMatches()
612 distances[offset + 1] = delta3 - 1; in Hc4_MatchFinder_GetMatches()
614 delta2 = delta3; in Hc4_MatchFinder_GetMatches()
/external/webp/src/dsp/
Ddec_neon.c489 const int8x16_t delta3 = vshrq_n_s8(delta_p3, 3); in ApplyFilter2() local
491 const int8x16_t sp0 = vqaddq_s8(p0s, delta3); in ApplyFilter2()
/external/deqp/framework/common/
DtcuCompressedTexture.cpp368 inline deUint8 extend5Delta3To8 (deUint8 base5, deUint8 delta3) in extend5Delta3To8() argument
370 const deUint8 t = (deUint8)((deInt8)base5 + extendSigned3To8(delta3)); in extend5Delta3To8()