Home | History | Annotate | Download | only in string

Lines Matching defs:w2

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);
98 unsigned long w2 = lb[0];
100 la[0] = combine_words(w1, w2, shift1, shift2);
104 la[1] = combine_words(w2, w1, shift1, shift2);
106 w2 = lb[2];
108 la[2] = combine_words(w1, w2, shift1, shift2);
112 la[3] = combine_words(w2, w1, shift1, shift2);
119 unsigned long w2 = *lb++;
121 *la++ = combine_words(w1, w2, shift1, shift2);
123 w1 = w2;