Searched refs:tempint32 (Results 1 – 2 of 2) sorted by relevance
90 uint32 tempint32 = report->cumulativeNumberOfPacketsLost; in EncodeReportBlock() local94 tempint32 = MAX_CUMULATIVE_LOST; in EncodeReportBlock()97 tempint32 &= FRACTION_LOST_MASK; in EncodeReportBlock()99 tempint32 |= (report->fractionLost) << FRACTION_LOST_POSITION; in EncodeReportBlock()101 outStream << tempint32; in EncodeReportBlock()
199 uint32 tempint32; in DecodeReportBlock() local200 inStream >> tempint32; in DecodeReportBlock()201 report->fractionLost = (uint8)(tempint32 >> FRACTION_LOST_POSITION); in DecodeReportBlock()202 report->cumulativeNumberOfPacketsLost = tempint32 & FRACTION_LOST_MASK; in DecodeReportBlock()