Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/jbig2/
DJBig2_HuffmanDecoder.cpp19 FX_SAFE_INT32 nSafeVal = 0; in DecodeAValue() local
26 nSafeVal <<= 1; in DecodeAValue()
27 if (!nSafeVal.IsValid()) in DecodeAValue()
30 nSafeVal |= nTmp; in DecodeAValue()
32 const int32_t nVal = nSafeVal.ValueOrDie(); in DecodeAValue()
DJBig2_TrdProc.cpp115 FX_SAFE_INT32 nSafeVal = 0; in DecodeHuffman() local
123 nSafeVal <<= 1; in DecodeHuffman()
124 if (!nSafeVal.IsValid()) in DecodeHuffman()
127 nSafeVal |= nTmp; in DecodeHuffman()
129 const int32_t nVal = nSafeVal.ValueOrDie(); in DecodeHuffman()
DJBig2_Context.cpp1145 FX_SAFE_INT32 nSafeVal = 0; in DecodeSymbolIDHuffmanTable() local
1152 nSafeVal <<= 1; in DecodeSymbolIDHuffmanTable()
1153 if (!nSafeVal.IsValid()) in DecodeSymbolIDHuffmanTable()
1156 nSafeVal |= nTemp; in DecodeSymbolIDHuffmanTable()
1158 const int32_t nVal = nSafeVal.ValueOrDie(); in DecodeSymbolIDHuffmanTable()