Searched refs:codeNum (Results 1 – 3 of 3) sorted by relevance
103 u32 h264bsdDecodeExpGolombUnsigned(strmData_t *pStrmData, u32 *codeNum) in h264bsdDecodeExpGolombUnsigned() argument113 ASSERT(codeNum); in h264bsdDecodeExpGolombUnsigned()121 *codeNum = 0; in h264bsdDecodeExpGolombUnsigned()129 *codeNum = 1 + ((bits >> 29) & 0x1); in h264bsdDecodeExpGolombUnsigned()137 *codeNum = 3 + ((bits >> 27) & 0x3); in h264bsdDecodeExpGolombUnsigned()145 *codeNum = 7 + ((bits >> 25) & 0x7); in h264bsdDecodeExpGolombUnsigned()159 *codeNum = 0; in h264bsdDecodeExpGolombUnsigned()172 *codeNum = BIG_CODE_NUM; in h264bsdDecodeExpGolombUnsigned()179 *codeNum = BIG_CODE_NUM; in h264bsdDecodeExpGolombUnsigned()193 *codeNum = (1 << numZeros) - 1 + bits; in h264bsdDecodeExpGolombUnsigned()[all …]
57 OMX_U16 sizeCodeNum, codeNum; in armVCM4P10_ExpGolBitsUsed() local60 codeNum = armAbs (val); in armVCM4P10_ExpGolBitsUsed()63 codeNum = (2 * codeNum) - 1; in armVCM4P10_ExpGolBitsUsed()67 codeNum = 2 * codeNum; in armVCM4P10_ExpGolBitsUsed()71 sizeCodeNum = (2 * armLogSize (codeNum + 1)) - 1; in armVCM4P10_ExpGolBitsUsed()
63 unsigned codeNum = parseUE(br); in parseSE() local65 return (codeNum & 1) ? (codeNum + 1) / 2 : -signed(codeNum / 2); in parseSE()70 unsigned codeNum = parseUEWithFallback(br, ~0U); in parseSEWithFallback() local71 if (codeNum == ~0U) { in parseSEWithFallback()74 return (codeNum & 1) ? (codeNum + 1) / 2 : -signed(codeNum / 2); in parseSEWithFallback()