Home | History | Annotate | Download | only in string

Lines Matching defs:w1

40 combine_words(unsigned long w1, unsigned long w2, int shift1, int shift2)
43 return (w1 << shift1) | (w2 >> shift2);
45 return (w1 >> shift1) | (w2 << shift2);
92 unsigned long w1 = *lb++;
100 la[0] = combine_words(w1, w2, shift1, shift2);
102 w1 = lb[1];
104 la[1] = combine_words(w2, w1, shift1, shift2);
108 la[2] = combine_words(w1, w2, shift1, shift2);
110 w1 = lb[3];
112 la[3] = combine_words(w2, w1, shift1, shift2);
121 *la++ = combine_words(w1, w2, shift1, shift2);
123 w1 = w2;