Home
last modified time | relevance | path

Searched refs:halfValue (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_utils.h805 inline uint32 DNG_HalfToFloat (uint16 halfValue) in DNG_HalfToFloat() argument
808 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()
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/image/dvpp/utils/
DDvppCommon.cc517 const int halfValue = 2; in GetCropRoi() local
522 …= 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() local
572 pasteRoi.up = (output.height - (input.height / resizeRatio)) / halfValue; in GetPasteRoi()
577 pasteRoi.left = (output.width - (input.width / resizeRatio)) / halfValue; in GetPasteRoi()