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

  /system/core/libmincrypt/
p256.c 59 return (P256_DIGIT(scalar, bit / P256_BITSPERDIGIT)
60 >> (bit & (P256_BITSPERDIGIT - 1))) & 1;
82 carry >>= P256_BITSPERDIGIT;
99 borrow >>= P256_BITSPERDIGIT;
104 assert((borrow >> P256_BITSPERDIGIT) == 0);
120 borrow >>= P256_BITSPERDIGIT;
137 carry >>= P256_BITSPERDIGIT;
198 n %= P256_BITSPERDIGIT;
201 accu |= (P256_DIGIT(a, i - 1) >> (P256_BITSPERDIGIT - n));
206 top = (p256_digit)((((p256_ddigit)top) << n) >> P256_BITSPERDIGIT);
    [all...]
  /system/core/include/mincrypt/
p256.h 39 #define P256_BITSPERDIGIT 32
96 // b := a << (n % P256_BITSPERDIGIT)
100 // b := a >> (n % P256_BITSPERDIGIT)

Completed in 4858 milliseconds