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

  /system/core/libmincrypt/
p256.c 59 return (P256_DIGIT(scalar, bit / P256_BITSPERDIGIT)
65 for (i = 0; i < P256_NDIGITS; ++i) result |= P256_DIGIT(a, i);
71 static p256_digit mulAdd(const p256_int* a,
72 p256_digit b,
73 p256_digit top,
74 p256_digit* c) {
80 carry += (p256_ddigit)P256_DIGIT(a, i) * b;
81 *c++ = (p256_digit)carry;
84 return top + (p256_digit)carry;
88 static p256_digit subTop(p256_digit top_a
    [all...]
p256_ec.c     [all...]
  /system/core/include/mincrypt/
p256.h 44 typedef uint32_t p256_digit; typedef
51 p256_digit a[P256_NDIGITS];
77 const p256_digit top_b,
98 p256_digit p256_shl(const p256_int* a, int n, p256_int* b);
120 int p256_add_d(const p256_int* a, p256_digit b, p256_int* c);
153 #define P256_DIGIT(x,y) ((x)->a[y])

Completed in 42 milliseconds