Searched refs:codeNum (Results 1 – 6 of 6) sorted by relevance
151 signed codeNum = vl_rbsp_ue(rbsp); in vl_rbsp_se() local152 if (codeNum & 1) in vl_rbsp_se()153 return (codeNum + 1) >> 1; in vl_rbsp_se()155 return -(codeNum >> 1); in vl_rbsp_se()
49 uint32_t codeNum; in parseSE() local50 if (!parseUE(br, &codeNum)) return false; in parseSE()51 *val = (codeNum & 1) ? (codeNum + 1) >> 1 : -static_cast<int32_t>(codeNum >> 1); in parseSE()
187 int codeNum = readExpGolombCodeNum(); in readSignedExpGolombCodedInt() local188 return ((codeNum % 2) == 0 ? -1 : 1) * ((codeNum + 1) / 2); in readSignedExpGolombCodedInt()
188 int codeNum = readExpGolombCodeNum(); in readSignedExpGolombCodedInt() local189 return ((codeNum % 2) == 0 ? -1 : 1) * ((codeNum + 1) / 2); in readSignedExpGolombCodedInt()
500 int codeNum = Integer.parseInt(hexString, 16); in stripRules() local501 String temp = UTF16.valueOf(codeNum); in stripRules()