Home | History | Annotate | Download | only in curve25519

Lines Matching full:load_3

40 static uint64_t load_3(const uint8_t *in) {
60 int64_t h1 = load_3(s + 4) << 6;
61 int64_t h2 = load_3(s + 7) << 5;
62 int64_t h3 = load_3(s + 10) << 3;
63 int64_t h4 = load_3(s + 13) << 2;
65 int64_t h6 = load_3(s + 20) << 7;
66 int64_t h7 = load_3(s + 23) << 5;
67 int64_t h8 = load_3(s + 26) << 4;
68 int64_t h9 = (load_3(s + 29) & 8388607) << 2;
3779 int64_t s0 = 2097151 & load_3(s);
3781 int64_t s2 = 2097151 & (load_3(s + 5) >> 2);
3784 int64_t s5 = 2097151 & (load_3(s + 13) >> 1);
3786 int64_t s7 = 2097151 & (load_3(s + 18) >> 3);
3787 int64_t s8 = 2097151 & load_3(s + 21);
3789 int64_t s10 = 2097151 & (load_3(s + 26) >> 2);
3792 int64_t s13 = 2097151 & (load_3(s + 34) >> 1);
3794 int64_t s15 = 2097151 & (load_3(s + 39) >> 3);
3795 int64_t s16 = 2097151 & load_3(s + 42);
3797 int64_t s18 = 2097151 & (load_3(s + 47) >> 2);
3800 int64_t s21 = 2097151 & (load_3(s + 55) >> 1);
4121 int64_t a0 = 2097151 & load_3(a);
4123 int64_t a2 = 2097151 & (load_3(a + 5) >> 2);
4126 int64_t a5 = 2097151 & (load_3(a + 13) >> 1);
4128 int64_t a7 = 2097151 & (load_3(a + 18) >> 3);
4129 int64_t a8 = 2097151 & load_3(a + 21);
4131 int64_t a10 = 2097151 & (load_3(a + 26) >> 2);
4133 int64_t b0 = 2097151 & load_3(b);
4135 int64_t b2 = 2097151 & (load_3(b + 5) >> 2);
4138 int64_t b5 = 2097151 & (load_3(b + 13) >> 1);
4140 int64_t b7 = 2097151 & (load_3(b + 18) >> 3);
4141 int64_t b8 = 2097151 & load_3(b + 21);
4143 int64_t b10 = 2097151 & (load_3(b + 26) >> 2);
4145 int64_t c0 = 2097151 & load_3(c);
4147 int64_t c2 = 2097151 & (load_3(c + 5) >> 2);
4150 int64_t c5 = 2097151 & (load_3(c + 13) >> 1);
4152 int64_t c7 = 2097151 & (load_3(c + 18) >> 3);
4153 int64_t c8 = 2097151 & load_3(c + 21);
4155 int64_t c10 = 2097151 & (load_3(c + 26) >> 2);