HomeSort by relevance Sort by last modified time
    Searched refs:vpos (Results 1 - 6 of 6) sorted by null

  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.c 146 struct ureg_src vpos; local
155 vpos = ureg_DECL_vs_input(shader, VS_I_VPOS);
167 * t_vpos = vpos + 7 / VL_BLOCK_WIDTH
178 ureg_MAD(shader, ureg_writemask(o_vpos, TGSI_WRITEMASK_XY), vpos, scale, scale);
181 ureg_MUL(shader, ureg_writemask(t_tex, TGSI_WRITEMASK_XY), vpos, scale);
262 struct ureg_src vrect, vpos; local
272 vpos = ureg_DECL_vs_input(shader, VS_I_VPOS);
288 * t_vpos = vpos + vrect
290 * o_vpos.zw = vpos
301 ureg_ADD(shader, ureg_writemask(t_tex, TGSI_WRITEMASK_XY), vpos, vrect)
396 struct ureg_src vrect, vpos; local
    [all...]
vl_mc.c 55 struct ureg_src vrect, vpos; local
60 vpos = ureg_DECL_vs_input(shader, VS_I_VPOS);
69 * t_vpos = (vpos + vrect) * block_scale
71 * o_vpos.zw = vpos
73 ureg_ADD(shader, ureg_writemask(t_vpos, TGSI_WRITEMASK_XY), vpos, vrect);
233 struct ureg_src vrect, vpos; local
249 vpos = ureg_DECL_vs_input(shader, VS_I_VPOS);
263 * t_vtex.z = vpos.y % 2
275 ureg_scalar(vpos, TGSI_SWIZZLE_Z), ureg_imm1f(shader, 0.5f));
279 ureg_IF(shader, ureg_scalar(vpos, TGSI_SWIZZLE_W), &label)
    [all...]
vl_zscan.c 124 struct ureg_src vrect, vpos, block_num; local
141 vpos = ureg_DECL_vs_input(shader, VS_I_VPOS);
152 * o_vpos.xy = (vpos + vrect) * scale
163 ureg_ADD(shader, ureg_writemask(tmp, TGSI_WRITEMASK_XY), vpos, vrect);
181 ureg_MOV(shader, ureg_writemask(o_vtex[i], TGSI_WRITEMASK_Z), vpos);
vl_compositor.c 61 struct ureg_src vpos, vtex, color; local
70 vpos = ureg_DECL_vs_input(shader, 0);
81 * o_vpos = vpos
85 ureg_MOV(shader, o_vpos, vpos);
    [all...]
  /external/libopus/src/
analysis.c 244 int mpos, vpos; local
296 mpos = vpos = pos0;
304 vpos += 1;
305 if (vpos>=DETECT_SIZE)
306 vpos -= DETECT_SIZE;
342 vad_prob = tonal->info[vpos].activity_probability;
353 vpos++;
354 if (vpos==DETECT_SIZE)
355 vpos = 0;
356 if (vpos == tonal->write_pos
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_peap.c 782 const u8 *pos, *vpos; local
832 vpos = pos + 4;
833 mandatory = !!(vpos[0] & 0x80);
834 tlv_type = vpos[0] & 0x3f;
835 tlv_type = (tlv_type << 8) | vpos[1];
836 vtlv_len = ((int) vpos[2] << 8) | vpos[3];
837 vpos += 4;
838 if (vpos + vtlv_len > pos + left) {
846 soh_tlv = vpos;
    [all...]

Completed in 136 milliseconds