Lines Matching defs:count
161 * @count: Number of values to return in @value.
167 uint32_t *value, size_t count)
187 for (i = 1; i <= count; i++) {
207 memset(payload_ptr, 0, count);
218 * @count: Number of values to return in @value.
226 enum pm_ret_status pm_ipi_buff_read_callb(uint32_t *value, size_t count)
239 if (count > IPI_BUFFER_MAX_WORDS) {
240 count = IPI_BUFFER_MAX_WORDS;
243 for (i = 0; i <= count; i++) {
261 memset(payload_ptr, 0, count);
272 * @count: Number of values to return in @value.
282 uint32_t *value, size_t count)
293 ret = ERROR_CODE_MASK & (pm_ipi_buff_read(proc, value, count));