Home
last modified time | relevance | path

Searched refs:ttt (Results 1 - 6 of 6) sorted by relevance

/third_party/lzma/C/
H A DBcj2.c204 UInt32 bound, ttt; in Bcj2Dec_Decode() local
221 ttt = *prob; in Bcj2Dec_Decode()
222 bound = (p->range >> kNumBitModelTotalBits) * ttt; in Bcj2Dec_Decode()
227 *prob = (CBcj2Prob)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); in Bcj2Dec_Decode()
234 *prob = (CBcj2Prob)(ttt - (ttt >> kNumMoveBits)); in Bcj2Dec_Decode()
H A DBcj2Enc.c317 const unsigned ttt = *prob; in Bcj2Enc_Encode_2() local
318 const UInt32 bound = (p->range >> kNumBitModelTotalBits) * ttt; in Bcj2Enc_Encode_2()
324 *prob = (CBcj2Prob)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); in Bcj2Enc_Encode_2()
330 *prob = (CBcj2Prob)(ttt - (ttt >> kNumMoveBits)); in Bcj2Enc_Encode_2()
H A DLzmaDec.c24 #define IF_BIT_0(p) ttt = *(p); NORMALIZE; bound = (range >> kNumBitModelTotalBits) * (UInt32)ttt; if (code < bound)
25 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits));
26 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >> kNumMoveBits));
72 #define IF_BIT_0_CHECK(p) ttt = *(p); NORMALIZE_CHECK bound = (range >> kNumBitModelTotalBits) * (UInt32)ttt; if (code < bound)
259 unsigned ttt; in LZMA_DECODE_REAL() local
728 unsigned ttt; in LzmaDec_TryDummy() local
[all...]
H A DLzmaEnc.c727 ttt = *(prob); \
728 newBound = (range >> kNumBitModelTotalBits) * ttt;
736 if (bit == 0) { range = newBound; ttt += (kBitModelTotal - ttt) >> kNumMoveBits; } \
737 else { (p)->low += newBound; range -= newBound; ttt -= ttt >> kNumMoveBits; } \
738 *(prob) = (CLzmaProb)ttt; \
756 ttt += (UInt32)((Int32)(mask - ttt) >> kNumMoveBits); \
757 *(prob) = (CLzmaProb)ttt; \
782 UInt32 range, ttt, newBound; RangeEnc_EncodeBit_0() local
795 UInt32 ttt, newBound; LitEnc_Encode() local
813 UInt32 ttt, newBound; LitEnc_EncodeMatched() local
906 UInt32 ttt, newBound; RcTree_ReverseEncode() local
930 UInt32 range, ttt, newBound; LenEnc_Encode() local
2105 UInt32 ttt, newBound; WriteEndMarker() local
2125 UInt32 ttt, newBound; WriteEndMarker() local
2150 UInt32 ttt, newBound; WriteEndMarker() local
2426 UInt32 range, ttt, newBound; LzmaEnc_CodeOneBlock() local
[all...]
/third_party/lzma/CPP/7zip/UI/Common/
H A DEnumDirItems.cpp270 for (unsigned ttt = 0; ; ttt++) in EnumerateOneDir()
278 if (Callback && (ttt & kScanProgressStepMask) == kScanProgressStepMask) in EnumerateOneDir()
290 for (unsigned ttt = 0; ; ttt++) in EnumerateOneDir()
/third_party/ffmpeg/libavfilter/
H A Dvf_v360.c493 const float ttt = t * t * t; in calculate_bicubic_coeffs() local
495 coeffs[0] = - t / 3.f + tt / 2.f - ttt / 6.f; in calculate_bicubic_coeffs()
496 coeffs[1] = 1.f - t / 2.f - tt + ttt / 2.f; in calculate_bicubic_coeffs()
497 coeffs[2] = t + tt / 2.f - ttt / 2.f; in calculate_bicubic_coeffs()
498 coeffs[3] = - t / 6.f + ttt / 6.f; in calculate_bicubic_coeffs()

Completed in 15 milliseconds