HomeSort by: relevance | last modified time | path
    Searched refs:vf (Results 1 - 25 of 34) sorted by relevancy

1 2

  /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...]
test_vf_float_conversions.cpp 39 for (int vf = 1; vf < 128; vf++) {
40 int ebits = (vf >> 4) & 0x7;
41 int mbits = vf & 0xf;
46 vf_to_float[vf] = ldexpf(x, exp);
65 for (int vf = 0; vf < 256; vf++) {
66 float expected = vf_to_float[vf % 128]
    [all...]
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...]
test_vf_float_conversions.cpp 39 for (int vf = 1; vf < 128; vf++) {
40 int ebits = (vf >> 4) & 0x7;
41 int mbits = vf & 0xf;
46 vf_to_float[vf] = ldexpf(x, exp);
65 for (int vf = 0; vf < 256; vf++) {
66 float expected = vf_to_float[vf % 128]
    [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.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/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/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/xf86-video-intel/dist/test/
mkvsync.sh 23 mencoder "mf://${TMP}/anim/*.png" -v -vf-clr -mf fps=60 -o "${OUT}" -ovc lavc
  /xsrc/external/mit/xf86-video-intel-2014/dist/test/
mkvsync.sh 23 mencoder "mf://${TMP}/anim/*.png" -v -vf-clr -mf fps=60 -o "${OUT}" -ovc lavc
  /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.old/dist/src/intel/vulkan/
gen7_cmd_buffer.c 259 anv_batch_emit(&cmd_buffer->batch, GEN75_3DSTATE_VF, vf) {
260 vf.IndexedDrawCutIndexEnable = pipeline->primitive_restart;
261 vf.CutIndex = cmd_buffer->state.restart_index;
genX_gpu_memcpy.c 143 * store the data that VF is going to pass to SOL.
213 anv_batch_emit(&cmd_buffer->batch, GENX(3DSTATE_VF_STATISTICS), vf) {
214 vf.StatisticsEnable = false;
gen8_cmd_buffer.c 530 anv_batch_emit(&cmd_buffer->batch, GENX(3DSTATE_VF), vf) {
531 vf.IndexedDrawCutIndexEnable = pipeline->primitive_restart;
532 vf.CutIndex = cmd_buffer->state.restart_index;
  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
genX_gpu_memcpy.c 154 * store the data that VF is going to pass to SOL.
229 anv_batch_emit(&cmd_buffer->batch, GENX(3DSTATE_VF_STATISTICS), vf) {
230 vf.StatisticsEnable = false;
gfx7_cmd_buffer.c 351 anv_batch_emit(&cmd_buffer->batch, GFX75_3DSTATE_VF, vf) {
352 vf.IndexedDrawCutIndexEnable = d->primitive_restart_enable;
353 vf.CutIndex = cmd_buffer->state.restart_index;
gfx8_cmd_buffer.c 680 anv_batch_emit(&cmd_buffer->batch, GENX(3DSTATE_VF), vf) {
681 vf.IndexedDrawCutIndexEnable = d->primitive_restart_enable;
682 vf.CutIndex = cmd_buffer->state.restart_index;
  /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...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/blorp/
blorp_genX_exec.h 517 blorp_emit(batch, GENX(3DSTATE_VF_STATISTICS), vf) {
518 vf.StatisticsEnable = false;
532 blorp_emit(batch, GENX(3DSTATE_VF_INSTANCING), vf) {
533 vf.VertexElementIndex = i;
534 vf.InstancingEnable = false;
  /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/MesaLib/dist/src/intel/blorp/
blorp_genX_exec.h 574 blorp_emit(batch, GENX(3DSTATE_VF_STATISTICS), vf) {
575 vf.StatisticsEnable = false;
589 blorp_emit(batch, GENX(3DSTATE_VF_INSTANCING), vf) {
590 vf.VertexElementIndex = i;
591 vf.InstancingEnable = false;

Completed in 33 milliseconds

1 2