Lines Matching defs:dwords
2307 /* VPC_SO_FLUSH_BASE has dwords counter, but counter should be in bytes */
4111 uint32_t dwords = 0;
4113 if (link->push_consts.dwords > 0) {
4114 unsigned num_units = link->push_consts.dwords;
4115 dwords += 4 + num_units;
4118 return dwords;
4130 if (link->push_consts.dwords > 0) {
4131 unsigned num_units = link->push_consts.dwords;
4154 if (pipeline->shared_consts.dwords > 0) {
4155 /* Offset and num_units for shared consts are in units of dwords. */
4156 unsigned num_units = pipeline->shared_consts.dwords;
4181 uint32_t dwords = 0;
4183 if (pipeline->shared_consts.dwords > 0) {
4184 dwords = pipeline->shared_consts.dwords + 4;
4187 dwords = tu6_user_consts_size(pipeline, MESA_SHADER_COMPUTE);
4190 dwords += tu6_user_consts_size(pipeline, type);
4194 return dwords;
4202 uint32_t dwords = 0;
4204 dwords = tu6_const_size(cmd, pipeline, compute);
4206 if (dwords == 0)
4210 tu_cs_begin_sub_stream(&cmd->sub_cs, dwords, &cs);
4212 if (pipeline->shared_consts.dwords > 0) {
4218 assert(!link->push_consts.dwords);