Home
last modified time | relevance | path

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

/external/webp/src/enc/
Diterator.c180 const int tnz = it->nz_[0], lnz = it->nz_[-1]; in VP8IteratorNzToBytes() local
183 it->top_nz_[0] = BIT(tnz, 12); in VP8IteratorNzToBytes()
184 it->top_nz_[1] = BIT(tnz, 13); in VP8IteratorNzToBytes()
185 it->top_nz_[2] = BIT(tnz, 14); in VP8IteratorNzToBytes()
186 it->top_nz_[3] = BIT(tnz, 15); in VP8IteratorNzToBytes()
188 it->top_nz_[4] = BIT(tnz, 18); in VP8IteratorNzToBytes()
189 it->top_nz_[5] = BIT(tnz, 19); in VP8IteratorNzToBytes()
191 it->top_nz_[6] = BIT(tnz, 22); in VP8IteratorNzToBytes()
192 it->top_nz_[7] = BIT(tnz, 23); in VP8IteratorNzToBytes()
194 it->top_nz_[8] = BIT(tnz, 24); in VP8IteratorNzToBytes()
/external/webp/src/dec/
Dvp8.c577 PackedNz tnz, lnz; in ParseResiduals() local
597 tnz = kUnpackTab[mb->nz_ & 0xf]; in ParseResiduals()
602 const int ctx = l + tnz.i8[x]; in ParseResiduals()
605 tnz.i8[x] = l = (nz > 0); in ParseResiduals()
614 out_t_nz = PACK(tnz, 24); in ParseResiduals()
617 tnz = kUnpackTab[mb->nz_ >> 4]; in ParseResiduals()
623 const int ctx = l + tnz.i8[ch + x]; in ParseResiduals()
627 tnz.i8[ch + x] = l = (nz > 0); in ParseResiduals()
637 out_t_nz |= PACK(tnz, 20); in ParseResiduals()
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
DSkeletonControl.java468 float tnz = tanBuf[idxTangents++]; in applySkinningTangents() local
487 rtx += (tnx * mat.m00 + tny * mat.m01 + tnz * mat.m02) * weight; in applySkinningTangents()
488 rty += (tnx * mat.m10 + tny * mat.m11 + tnz * mat.m12) * weight; in applySkinningTangents()
489 rtz += (tnx * mat.m20 + tny * mat.m21 + tnz * mat.m22) * weight; in applySkinningTangents()