Lines Matching defs:count
84 static inline u32 host1x_opcode_incr(unsigned offset, unsigned count)
86 return (1 << 28) | (offset << 16) | count;
89 static inline u32 host1x_opcode_nonincr(unsigned offset, unsigned count)
91 return (2 << 28) | (offset << 16) | count;
115 static inline u32 host1x_opcode_gather(unsigned count)
117 return (6 << 28) | count;
120 static inline u32 host1x_opcode_gather_nonincr(unsigned offset, unsigned count)
122 return (6 << 28) | (offset << 16) | BIT(15) | count;
125 static inline u32 host1x_opcode_gather_incr(unsigned offset, unsigned count)
127 return (6 << 28) | (offset << 16) | BIT(15) | BIT(14) | count;
130 static inline u32 host1x_opcode_gather_wide(unsigned count)
132 return (12 << 28) | count;