HomeSort by: relevance | last modified time | path
    Searched defs:crypto_int32_s (Results 1 - 2 of 2) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
sntrup761.c 568 crypto_int32 crypto_int32_load(const unsigned char *crypto_int32_s) {
570 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 0;
571 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 8;
572 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 16;
573 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 24;
579 void crypto_int32_store(unsigned char *crypto_int32_s,crypto_int32 crypto_int32_x) {
580 *crypto_int32_s++ = crypto_int32_x >> 0;
581 *crypto_int32_s++ = crypto_int32_x >> 8;
582 *crypto_int32_s++ = crypto_int32_x >> 16;
583 *crypto_int32_s++ = crypto_int32_x >> 24
957 crypto_int32 crypto_int32_r, crypto_int32_s; local
    [all...]
sntrup761.c 568 crypto_int32 crypto_int32_load(const unsigned char *crypto_int32_s) {
570 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 0;
571 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 8;
572 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 16;
573 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 24;
579 void crypto_int32_store(unsigned char *crypto_int32_s,crypto_int32 crypto_int32_x) {
580 *crypto_int32_s++ = crypto_int32_x >> 0;
581 *crypto_int32_s++ = crypto_int32_x >> 8;
582 *crypto_int32_s++ = crypto_int32_x >> 16;
583 *crypto_int32_s++ = crypto_int32_x >> 24
957 crypto_int32 crypto_int32_r, crypto_int32_s; local
    [all...]

Completed in 44 milliseconds