Lines Matching refs:n_words
78 unsigned int n_words;
95 return (1 * intc->n_words - word - 1) * sizeof(u32);
97 return (0 * intc->n_words + word) * sizeof(u32);
105 return (2 * intc->n_words - word - 1) * sizeof(u32);
107 return (1 * intc->n_words + word) * sizeof(u32);
126 for (idx = 0; idx < intc->n_words; idx++) {
238 unsigned int i, n_words;
243 n_words = sz / REG_BYTES_PER_IRQ_WORD;
245 if (!intc->n_words)
246 intc->n_words = n_words;
247 else if (intc->n_words != n_words)
250 cpu = intc->cpus[idx] = kzalloc(sizeof(*cpu) + n_words * sizeof(u32),
260 for (i = 0; i < n_words; i++) {
325 intc->domain = irq_domain_add_linear(dn, IRQS_PER_WORD * intc->n_words,
334 IRQS_PER_WORD * intc->n_words);