HomeSort by relevance Sort by last modified time
    Searched refs:U8TO32_LE (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/poly1305/
poly1305.c 65 static uint32_t U8TO32_LE(const unsigned char *m)
77 static uint32_t U8TO32_LE(const unsigned char *m)
140 t0 = U8TO32_LE(in);
141 t1 = U8TO32_LE(in+4);
142 t2 = U8TO32_LE(in+8);
143 t3 = U8TO32_LE(in+12);
203 t0 = U8TO32_LE(mp+0);
204 t1 = U8TO32_LE(mp+4);
205 t2 = U8TO32_LE(mp+8);
206 t3 = U8TO32_LE(mp+12)
    [all...]
poly1305_vec.c 68 #define U8TO32_LE(m) (*(uint32_t*)(m))
228 p->R23.d[1] = U8TO32_LE(key + 16);
229 p->R23.d[3] = U8TO32_LE(key + 20);
230 p->R24.d[1] = U8TO32_LE(key + 24);
231 p->R24.d[3] = U8TO32_LE(key + 28);

Completed in 47 milliseconds