Searched refs:limb (Results 1 - 6 of 6) sorted by relevance

/external/boringssl/src/crypto/ec/
H A Dp256-64.c56 * apart, but are 128-bits wide, the most significant bits of each limb overlap
67 typedef uint128_t limb; typedef
68 typedef limb felem[NLIMBS];
69 typedef limb longfelem[NLIMBS * 2];
178 #define two105m41m9 ((((limb)1) << 105) - (((limb)1) << 41) - (((limb)1) << 9))
179 #define two105 (((limb)1) << 105)
180 #define two105m41p9 ((((limb)1) << 105) - (((limb)
[all...]
H A Dp224-64.c43 * 2^336*b_6 using 128-bit coefficients called 'widelimbs'. A 4-limb
52 typedef uint64_t limb; typedef
55 typedef limb felem[4];
260 static const limb two58p2 = (((limb)1) << 58) + (((limb)1) << 2);
261 static const limb two58m2 = (((limb)1) << 58) - (((limb)1) << 2);
262 static const limb two58m42m
[all...]
/external/libconstrainedcrypto/
H A Dp256_ec.c53 * That is, each limb is alternately 29 or 28-bits wide in little-endian
58 * when multiplying as terms end up one bit short of a limb which would require
64 typedef u32 limb; typedef
66 typedef limb felem[NLIMBS];
68 static const limb kBottom28Bits = 0xfffffff;
69 static const limb kBottom29Bits = 0x1fffffff;
118 static const limb kPrecomputed[NLIMBS * 2 * 15 * 2] = {
188 * x must be a u32 or an equivalent type such as limb. */
196 static void felem_reduce_carry(felem inout, limb carry) {
219 limb carr
[all...]
/external/freetype/src/autofit/
H A Dafscript.h202 SCRIPT( limb, LIMB,
H A Dafstyles.h281 STYLE_DEFAULT_INDIC( limb, LIMB, "Limbu" )
/external/pdfium/xfa/fxfa/app/
H A Dxfa_ffwidget.cpp991 uint32_t limb; local
993 for (i = 0, j = 0, limb = 0; i + 2 < buf_len; i += 3, j += 4) {
994 limb = ((uint32_t)buf[i] << 16) | ((uint32_t)buf[i + 1] << 8) |
996 out[j] = g_base64_chars[(limb >> 18) & 63];
997 out[j + 1] = g_base64_chars[(limb >> 12) & 63];
998 out[j + 2] = g_base64_chars[(limb >> 6) & 63];
999 out[j + 3] = g_base64_chars[(limb)&63];
1005 limb = ((uint32_t)buf[i]);
1006 out[j++] = g_base64_chars[(limb >> 2) & 63];
1007 out[j++] = g_base64_chars[(limb <<
[all...]

Completed in 211 milliseconds