HomeSort by relevance Sort by last modified time
    Searched defs:tG (Results 1 - 3 of 3) sorted by null

  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_mulmod.c 41 ecc_point *tG, *M[8];
80 tG = ltc_ecc_new_point();
81 if (tG == NULL) { err = CRYPT_MEM; goto done; }
83 /* tG = G and convert to montgomery */
85 if ((err = mp_copy(G->x, tG->x)) != CRYPT_OK) { goto done; }
86 if ((err = mp_copy(G->y, tG->y)) != CRYPT_OK) { goto done; }
87 if ((err = mp_copy(G->z, tG->z)) != CRYPT_OK) { goto done; }
89 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; }
90 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; }
91 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done;
    [all...]
ltc_ecc_mulmod_timing.c 39 ecc_point *tG, *M[3];
78 tG = ltc_ecc_new_point();
79 if (tG == NULL) { err = CRYPT_MEM; goto done; }
81 /* tG = G and convert to montgomery */
82 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; }
83 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; }
84 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done; }
90 if ((err = mp_copy(tG->x, M[0]->x)) != CRYPT_OK) { goto done; }
91 if ((err = mp_copy(tG->y, M[0]->y)) != CRYPT_OK) { goto done; }
92 if ((err = mp_copy(tG->z, M[0]->z)) != CRYPT_OK) { goto done;
    [all...]
  /external/icu4c/layout/
ThaiShaping.h 55 tG = 5,

Completed in 142 milliseconds