Lines Matching refs:rgb_tmp
2539 uint8_t *rgb_tmp = rgb24; in convert_yuv_to_rgb24() local
2550 write_rgb(rgb_tmp, &rgb); in convert_yuv_to_rgb24()
2552 rgb_tmp += bpp; in convert_yuv_to_rgb24()
2597 const uint8_t *rgb_tmp = rgb24; in convert_rgb24_to_yuv() local
2603 const uint8_t *pair_rgb24 = rgb_tmp; in convert_rgb24_to_yuv()
2607 read_rgb(&rgb, rgb_tmp); in convert_rgb24_to_yuv()
2610 rgb_tmp += bpp; in convert_rgb24_to_yuv()
2709 float *rgb_tmp = ptr; in convert_yuv16_to_float() local
2720 write_rgbf(rgb_tmp, &rgb); in convert_yuv16_to_float()
2723 rgb_tmp[3] = ((float)*a_tmp) / 65535.f; in convert_yuv16_to_float()
2727 rgb_tmp += fpp; in convert_yuv16_to_float()
2780 const float *rgb_tmp = ptr; in convert_float_to_yuv16() local
2787 const float *pair_float = rgb_tmp; in convert_float_to_yuv16()
2791 read_rgbf(&rgb, rgb_tmp); in convert_float_to_yuv16()
2795 *a_tmp = rgb_tmp[3] * 65535.f + .5f; in convert_float_to_yuv16()
2799 rgb_tmp += fpp; in convert_float_to_yuv16()
2971 float *rgb_tmp = ptr; in convert_fp16_to_float() local
2978 rgb_tmp[0] = rgb.d[swz[0]]; in convert_fp16_to_float()
2979 rgb_tmp[1] = rgb.d[swz[1]]; in convert_fp16_to_float()
2980 rgb_tmp[2] = rgb.d[swz[2]]; in convert_fp16_to_float()
2981 rgb_tmp[3] = rgb.d[swz[3]]; in convert_fp16_to_float()
2983 rgb_tmp += 4; in convert_fp16_to_float()
3009 const float *rgb_tmp = ptr; in convert_float_to_fp16() local
3015 rgb.d[0] = rgb_tmp[swz[0]]; in convert_float_to_fp16()
3016 rgb.d[1] = rgb_tmp[swz[1]]; in convert_float_to_fp16()
3017 rgb.d[2] = rgb_tmp[swz[2]]; in convert_float_to_fp16()
3018 rgb.d[3] = rgb_tmp[swz[3]]; in convert_float_to_fp16()
3022 rgb_tmp += 4; in convert_float_to_fp16()