Lines Matching defs:count

244  * \param count The number of constants allocated.
249 uint32_t *count)
261 /* Update the count with the number of constants actually allocated. */
262 *count += constant + num_constants - *next_constant;
277 * \param count The number of temps allocated.
281 pvr_pds_get_temps(uint32_t *next_temp, uint32_t num_temps, uint32_t *count)
293 /* Update the count with the number of temps actually allocated. */
294 *count += temp + num_temps - *next_temp;
645 uint32_t *count)
655 return pvr_pds_get_constants(next_constant, num_constants, count);
673 *count += 2;
1041 /* Update the code size count and temps count for the above code
3017 /* Minimum temp count is 1. */
3399 /* Minimum temp count is 1. */
3429 uint32_t next_constant = PVR_PDS_CONSTANTS_BLOCK_BASE; /* Constants count in
3611 uint32_t next_constant = PVR_PDS_CONSTANTS_BLOCK_BASE; /* Constants count in
4066 /* Update the data size and code size. Minimum temp count is 1. */
4076 * real ld/st instructions based on the value of count.
4083 * \param count Number of dwords for load/store.
4098 uint32_t count,
4110 * less than count passed here.
4125 (((count % 2) == 0) && ((address % 16) == 0) &&
4128 count >>= 1;
4134 if (count <= PVR_ROGUE_PDSINST_LD_COUNT8_MAX_SIZE) {
4136 last_inst_count = count;
4142 num_inst = count / per_inst_count;
4143 last_inst_count = count - per_inst_count * num_inst;
4202 num_inst = count / PVR_ROGUE_PDSINST_ST_COUNT4_MAX_SIZE;
4203 num_inst += ((count % PVR_ROGUE_PDSINST_ST_COUNT4_MAX_SIZE) == 0 ? 0 : 1);
4212 (count <= PVR_ROGUE_PDSINST_ST_COUNT4_MAX_SIZE
4213 ? count
4244 count -= per_inst_count;