Lines Matching defs:value
238 * Emit a uint32_t value into a command stream, without boundary checking.
241 tu_cs_emit(struct tu_cs *cs, uint32_t value)
244 *cs->cur = value;
325 tu_cs_emit_qw(struct tu_cs *cs, uint64_t value)
327 tu_cs_emit(cs, (uint32_t) value);
328 tu_cs_emit(cs, (uint32_t) (value >> 32));
332 tu_cs_emit_write_reg(struct tu_cs *cs, uint16_t reg, uint32_t value)
335 tu_cs_emit(cs, value);
419 uint64_t value;
447 v |= regs[i].value; \
452 *p++ = regs[i].value; \
454 *p++ = regs[i].value >> 32; \