Lines Matching refs:MBEDTLS_GET_UINT32_LE
94 d0 = MBEDTLS_GET_UINT32_LE(input, offset + 0); in poly1305_process()
95 d1 = MBEDTLS_GET_UINT32_LE(input, offset + 4); in poly1305_process()
96 d2 = MBEDTLS_GET_UINT32_LE(input, offset + 8); in poly1305_process()
97 d3 = MBEDTLS_GET_UINT32_LE(input, offset + 12); in poly1305_process()
246 ctx->r[0] = MBEDTLS_GET_UINT32_LE(key, 0) & 0x0FFFFFFFU; in mbedtls_poly1305_starts()
247 ctx->r[1] = MBEDTLS_GET_UINT32_LE(key, 4) & 0x0FFFFFFCU; in mbedtls_poly1305_starts()
248 ctx->r[2] = MBEDTLS_GET_UINT32_LE(key, 8) & 0x0FFFFFFCU; in mbedtls_poly1305_starts()
249 ctx->r[3] = MBEDTLS_GET_UINT32_LE(key, 12) & 0x0FFFFFFCU; in mbedtls_poly1305_starts()
251 ctx->s[0] = MBEDTLS_GET_UINT32_LE(key, 16); in mbedtls_poly1305_starts()
252 ctx->s[1] = MBEDTLS_GET_UINT32_LE(key, 20); in mbedtls_poly1305_starts()
253 ctx->s[2] = MBEDTLS_GET_UINT32_LE(key, 24); in mbedtls_poly1305_starts()
254 ctx->s[3] = MBEDTLS_GET_UINT32_LE(key, 28); in mbedtls_poly1305_starts()