HomeSort by: relevance | last modified time | path
    Searched defs:vf (Results 1 - 14 of 14) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_packed_float.c 46 unsigned vf = (fu.s.sign << 7) | (exponent << 4) | mantissa; local
49 if ((vf & 0x7f) == 0)
56 return vf;
60 brw_vf_to_float(unsigned char vf)
65 if (vf == 0x00 || vf == 0x80) {
66 fu.u = (unsigned)vf << 24;
70 fu.s.sign = vf >> 7;
71 fu.s.exponent = ((vf & 0x70) >> 4) + (127 - 3);
72 fu.s.mantissa = (vf & 0xf) << (23 - 4)
    [all...]
brw_vec4_nir.cpp 1038 const int vf = brw_float_to_vf(f[i]); local
1039 if (vf == -1)
1042 vf_values[i] = vf;
brw_vec4.cpp 414 int vf = -1; local
420 * represented as a VF.
429 vf = brw_float_to_vf(inst->src[0].d);
432 if (vf == -1) {
433 vf = brw_float_to_vf(inst->src[0].f);
447 (vf > 0 && dest_type != need_type)) {
450 unsigned vf; local
451 memcpy(&vf, imm, sizeof(vf));
452 vec4_instruction *mov = MOV(imm_inst[0]->dst, brw_imm_vf(vf));
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_packed_float.c 46 unsigned vf = (fu.s.sign << 7) | (exponent << 4) | mantissa; local
49 if ((vf & 0x7f) == 0)
56 return vf;
60 brw_vf_to_float(unsigned char vf)
65 if (vf == 0x00 || vf == 0x80) {
66 fu.u = vf << 24;
70 fu.s.sign = vf >> 7;
71 fu.s.exponent = ((vf & 0x70) >> 4) + (127 - 3);
72 fu.s.mantissa = (vf & 0xf) << (23 - 4)
    [all...]
brw_vec4.cpp 416 int vf = -1; local
422 * represented as a VF.
431 vf = brw_float_to_vf(inst->src[0].d);
434 if (vf == -1) {
435 vf = brw_float_to_vf(inst->src[0].f);
449 (vf > 0 && dest_type != need_type)) {
452 unsigned vf; local
453 memcpy(&vf, imm, sizeof(vf));
454 vec4_instruction *mov = MOV(imm_inst[0]->dst, brw_imm_vf(vf));
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/
v3d_formats.c 57 const struct v3d_format *vf = get_format(devinfo, f); local
59 if (!vf)
62 return vf->rt_type != V3D_OUTPUT_IMAGE_FORMAT_NO;
68 const struct v3d_format *vf = get_format(devinfo, f); local
70 if (!vf)
73 return vf->rt_type;
80 const struct v3d_format *vf = get_format(devinfo, f); local
82 return vf != NULL;
88 const struct v3d_format *vf = get_format(devinfo, f); local
90 if (!vf)
100 const struct v3d_format *vf = get_format(devinfo, f); local
121 const struct v3d_format *vf = get_format(devinfo, f); local
132 const struct v3d_format *vf = get_format(devinfo, f); local
175 const struct v3d_format *vf = get_format(devinfo, f); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/v3d/
v3d_formats.c 53 const struct v3d_format *vf = get_format(devinfo, f); local
55 if (!vf)
58 return vf->rt_type != V3D_OUTPUT_IMAGE_FORMAT_NO;
64 const struct v3d_format *vf = get_format(devinfo, f); local
66 if (!vf)
69 return vf->rt_type;
76 const struct v3d_format *vf = get_format(devinfo, f); local
78 return vf != NULL;
84 const struct v3d_format *vf = get_format(devinfo, f); local
86 if (!vf)
96 const struct v3d_format *vf = get_format(devinfo, f); local
111 const struct v3d_format *vf = get_format(devinfo, f); local
122 const struct v3d_format *vf = get_format(devinfo, f); local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
vc4_formats.c 122 const struct vc4_format *vf = get_format(f); local
124 if (!vf)
127 return vf->rt_type != RT_NO;
133 const struct vc4_format *vf = get_format(f); local
135 if (!vf)
138 return vf->rt_type == RT_RGB565;
144 const struct vc4_format *vf = get_format(f); local
146 return vf != NULL;
152 const struct vc4_format *vf = get_format(f); local
154 if (!vf)
163 const struct vc4_format *vf = get_format(f); local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
vc4_formats.c 122 const struct vc4_format *vf = get_format(f); local
124 if (!vf)
127 return vf->rt_type != RT_NO;
133 const struct vc4_format *vf = get_format(f); local
135 if (!vf)
138 return vf->rt_type == RT_RGB565;
144 const struct vc4_format *vf = get_format(f); local
146 return vf != NULL;
152 const struct vc4_format *vf = get_format(f); local
154 if (!vf)
163 const struct vc4_format *vf = get_format(f); local
    [all...]
  /xsrc/external/mit/pixman/dist/test/
matrix-test.c 136 pixman_vector_f128_t vf, result_f; local
188 vf.v[j] = pixman_fixed_to_float128 (vi.v[j]);
195 if (pixman_transform_point_f128 (&tf, &vf, &result_f))
  /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
v3dv_formats.c 35 const struct v3dv_format *vf = v3dv_X(device, get_format)(f); local
38 if (!vf)
41 return vf->swizzle;
45 v3dv_get_tex_return_size(const struct v3dv_format *vf,
57 return vf->return_size;
  /xsrc/external/mit/MesaLib/dist/src/gallium/tests/trivial/
compute.c 1178 float vf[4]; local
1182 test_surface_st_init0f(&vf[j], s, 4 * x + j, y);
1183 util_format_pack_rgba(surface_fmts[i], p, vf, 1);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/tests/trivial/
compute.c 1178 float vf[4]; local
1182 test_surface_st_init0f(&vf[j], s, 4 * x + j, y);
1183 util_format_write_4f(surface_fmts[i], vf, 0, p, 0, 0, 0, 1, 1);
  /xsrc/external/mit/xf86-video-mga/dist/src/
mga_video.c 1412 int yf[8], uf[4], vf[4]; local
1439 vf[0]=(v&0x000000ff);
1440 vf[1]=(v&0x0000ff00)>>8;
1441 vf[2]=(v&0x00ff0000)>>16;
1442 vf[3]=(v&0xff000000)>>24;
1447 vf[0]<<24 | uf[0]<<8;
1449 vf[1]<<24 | uf[1]<<8;
1451 vf[2]<<24 | uf[2]<<8;
1453 vf[3]<<24 | uf[3]<<8;
1459 ((vf[0]+vf[1])/2 )<<24 | ((uf[0]+uf[1])/2)<<8
    [all...]

Completed in 20 milliseconds