Lines Matching defs:count
83 static inline u32 host1x_opcode_incr(unsigned offset, unsigned count)
85 return (1 << 28) | (offset << 16) | count;
88 static inline u32 host1x_opcode_nonincr(unsigned offset, unsigned count)
90 return (2 << 28) | (offset << 16) | count;
114 static inline u32 host1x_opcode_gather(unsigned count)
116 return (6 << 28) | count;
119 static inline u32 host1x_opcode_gather_nonincr(unsigned offset, unsigned count)
121 return (6 << 28) | (offset << 16) | BIT(15) | count;
124 static inline u32 host1x_opcode_gather_incr(unsigned offset, unsigned count)
126 return (6 << 28) | (offset << 16) | BIT(15) | BIT(14) | count;