Searched refs:halfValue (Results 1 – 2 of 2) sorted by relevance
805 inline uint32 DNG_HalfToFloat (uint16 halfValue) in DNG_HalfToFloat() argument808 int32 sign = (halfValue >> 15) & 0x00000001; in DNG_HalfToFloat()809 int32 exponent = (halfValue >> 10) & 0x0000001f; in DNG_HalfToFloat()810 int32 mantissa = halfValue & 0x000003ff; in DNG_HalfToFloat()
517 const int halfValue = 2; in GetCropRoi() local522 …= CONVERT_TO_EVEN(static_cast<uint32_t>((input.height - output.height * resizeRatio) / halfValue)); in GetCropRoi()529 …t = CONVERT_TO_EVEN(static_cast<uint32_t>((input.width - output.width * resizeRatio) / halfValue)); in GetCropRoi()567 const int halfValue = 2; in GetPasteRoi() local572 pasteRoi.up = (output.height - (input.height / resizeRatio)) / halfValue; in GetPasteRoi()577 pasteRoi.left = (output.width - (input.width / resizeRatio)) / halfValue; in GetPasteRoi()