Lines Matching defs:la
67 unsigned long *la = (long *)ca;
68 const int offset = (uintptr_t)cb & (sizeof(*la) - 1);
70 unsigned long * const ea = la + len / sizeof(*la);
77 for (; la + 4 <= ea; la += 4, lb += 4) {
78 la[0] = lb[0];
79 la[1] = lb[1];
80 la[2] = lb[2];
81 la[3] = lb[3];
86 while (la <= ea) {
87 *la++ = *lb++;
91 const int shift2 = sizeof(*la) * 8 - shift1;
97 for (; la + 4 <= ea; la += 4, lb += 4) {
100 la[0] = combine_words(w1, w2, shift1, shift2);
104 la[1] = combine_words(w2, w1, shift1, shift2);
108 la[2] = combine_words(w1, w2, shift1, shift2);
112 la[3] = combine_words(w2, w1, shift1, shift2);
118 while (la <= ea) {
121 *la++ = combine_words(w1, w2, shift1, shift2);
126 len &= sizeof(*la) - 1;
129 ca = (unsigned char *)la;