/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_ir_fs.h | 83 const unsigned suboffset = reg.offset + delta; local 84 reg.nr += suboffset / REG_SIZE; 85 reg.offset = suboffset % REG_SIZE; 90 const unsigned suboffset = reg.subnr + delta; local 91 reg.nr += suboffset / REG_SIZE; 92 reg.subnr = suboffset % REG_SIZE;
|
brw_ir_vec4.h | 78 const unsigned suboffset = reg->offset + bytes; local 79 reg->nr += suboffset / REG_SIZE; 80 reg->offset = suboffset % REG_SIZE; 86 const unsigned suboffset = reg->subnr + bytes; local 87 reg->nr += suboffset / REG_SIZE; 88 reg->subnr = suboffset % REG_SIZE;
|
brw_reg.h | 388 * keep track of as you'd want it adjusted by suboffset(), etc. 545 suboffset(struct brw_reg reg, unsigned delta) 554 return suboffset(retype(brw_vec16_reg(file, nr, 0), BRW_REGISTER_TYPE_UW), subnr); 561 return suboffset(retype(brw_vec8_reg(file, nr, 0), BRW_REGISTER_TYPE_UW), subnr); 568 return suboffset(retype(brw_vec1_reg(file, nr, 0), BRW_REGISTER_TYPE_UW), subnr); 943 return vec1(suboffset(reg, elt)); 949 return vec1(suboffset(retype(reg, BRW_REGISTER_TYPE_UD), elt)); 955 return vec1(suboffset(retype(reg, BRW_REGISTER_TYPE_D), elt));
|
brw_vec4_generator.cpp | 446 brw_MOV(p, suboffset(stride(dst, 2, 2, 1), 3), 449 brw_MUL(p, suboffset(stride(dst, 2, 2, 1), 3), stride(src0, 8, 2, 4), 483 suboffset(stride(retype(dst, BRW_REGISTER_TYPE_UW), 2, 2, 1), 4), 554 brw_MOV(p, suboffset(vec1(dst), 2), suboffset(vec1(src), 0)); 568 dst = suboffset(vec1(dst), 4); 636 brw_OR(p, suboffset(vec1(dst), 21), vec1(src), suboffset(vec1(src), 16)); 668 brw_AND(p, suboffset(vec1(dst), 0), suboffset(vec1(src0), 0) [all...] |
brw_fs_visitor.cpp | 207 fs_reg(stride(suboffset(g1_uw, 4), 2, 4, 0)), 210 fs_reg(stride(suboffset(g1_uw, 5), 2, 4, 0)), 268 fs_reg(stride(suboffset(g1_uw, 4), 1, 4, 0)), 289 fs_reg(stride(suboffset(g1_uw, 4), 2, 4, 0)), 292 fs_reg(stride(suboffset(g1_uw, 5), 2, 4, 0)), [all...] |
brw_clip_util.c | 236 vec1(suboffset(t_nopersp, 1)));
|
brw_fs_copy_propagation.cpp | 460 const unsigned suboffset = rel_offset % type_sz(entry->dst.type); local 463 * component and suboffset. 465 inst->src[arg].offset = suboffset +
|
brw_fs_generator.cpp | 305 brw_MOV(p, retype(vec1(suboffset(payload, 2)), 574 brw_MAC(p, dst, suboffset(interp, 1), delta_y); [all...] |
brw_eu_emit.c | [all...] |
brw_sf_emit.c | 312 brw_MOV(p, vec2(suboffset(c->vert[i], 2)), vec2(c->z[i]));
|
brw_fs.cpp | [all...] |
brw_vec4.cpp | [all...] |
brw_fs_nir.cpp | [all...] |
/external/mesa3d/src/compiler/glsl/ |
ir_constant_expression.cpp | 410 int suboffset; local 416 if (!constant_referenced(deref, variable_context, substore, suboffset)) 428 offset = suboffset + index; 443 int suboffset; local 445 if (!constant_referenced(deref, variable_context, substore, suboffset)) 450 assert(suboffset == 0);
|