Home | History | Annotate | Download | only in lib

Lines Matching refs:repeated_c

36   longword repeated_c;
58 repeated_c has c in every byte. */
60 repeated_c = c | (c << 8);
61 repeated_c |= repeated_c << 16;
65 repeated_c |= repeated_c << 31 << 1;
73 repeated_c |= repeated_c << i;
81 c. We first use an xor with repeated_c. This reduces the task
119 longword longword1 = *longword_ptr ^ repeated_c;