Home
last modified time | relevance | path

Searched refs:suffixLength (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_cavlc.c757 u32 i, tmp, totalCoeff, trailingOnes, suffixLength, levelPrefix; in h264bsdDecodeResidualBlockCavlc() local
807 suffixLength = 1; in h264bsdDecodeResidualBlockCavlc()
809 suffixLength = 0; in h264bsdDecodeResidualBlockCavlc()
820 tmp = suffixLength; in h264bsdDecodeResidualBlockCavlc()
823 tmp = suffixLength ? suffixLength : 4; in h264bsdDecodeResidualBlockCavlc()
830 if (!suffixLength) in h264bsdDecodeResidualBlockCavlc()
831 suffixLength = 1; in h264bsdDecodeResidualBlockCavlc()
835 if (suffixLength) in h264bsdDecodeResidualBlockCavlc()
836 levelPrefix <<= suffixLength; in h264bsdDecodeResidualBlockCavlc()
851 if (suffixLength == 0) in h264bsdDecodeResidualBlockCavlc()
[all …]
/frameworks/base/core/java/android/app/
DApplicationErrorReport.java392 int suffixLength = 10 * 1024; in sanitizeString() local
393 int acceptableLength = prefixLength + suffixLength; in sanitizeString()
402 sb.append(s.substring(s.length() - suffixLength)); in sanitizeString()