Home | History | Annotate | Download | only in avr

Lines Matching defs:n_words

2972        If N_WORDS >= 0  Add N_WORDS to *PLEN.
2973 If N_WORDS < 0 Set *PLEN to -N_WORDS.
2978 avr_asm_len (const char* tpl, rtx* operands, int* plen, int n_words)
2984 if (n_words < 0)
2985 *plen = -n_words;
2987 *plen += n_words;
4264 int n_words = AVR_TINY ? 1 : 2;
4267 : avr_asm_len ("lds %0,%m1", op, plen, -n_words);
4558 int n_words = AVR_TINY ? 2 : 4;
4564 "lds %B0,%m1+1", op, plen, -n_words);
5402 int n_words = AVR_TINY ? 3 : 6;
5405 "lds %C0,%m1+2", op, plen , -n_words);
5499 int n_words = AVR_TINY ? 3 : 6;
5502 "sts %m0+2,%C1", op, plen, -n_words);
5685 int n_words = AVR_TINY ? 1 : 2;
5688 : avr_asm_len ("sts %m0,%1", op, plen, -n_words);
5946 int n_words = AVR_TINY ? 2 : 4;
5952 "sts %m0,%A1", op, plen, -n_words);