Home
last modified time | relevance | path

Searched refs:cc_dunit (Results 1 – 2 of 2) sorted by relevance

/xnu-11215.1.10/osfmk/corecrypto/
H A Dccmode_gcm_gf_mult.c47 cc_dunit x1, x2, x3, x4, x5; in bmul64()
48 cc_dunit y1, y2, y3, y4, y5; in bmul64()
49 cc_dunit r, z; in bmul64()
69 r = z & (((cc_dunit)m2 << 64) | m1); in bmul64()
71 r |= z & (((cc_dunit)m3 << 64) | m2); in bmul64()
73 r |= z & (((cc_dunit)m4 << 64) | m3); in bmul64()
75 r |= z & (((cc_dunit)m5 << 64) | m4); in bmul64()
77 r |= z & (((cc_dunit)m1 << 64) | m5); in bmul64()
88 cc_dunit z_hi, z_lo; in ccmode_gcm_gf_mult_64()
102 z_hi = ((cc_dunit)z2_hi << 64) | (z2_lo ^ z1_hi); in ccmode_gcm_gf_mult_64()
[all …]
H A Dccn_internal.h49 typedef unsigned cc_dunit __attribute__((mode(TI))); typedef
59 typedef uint64_t cc_dunit;
77 tmp = ((cc_dunit)(x)) + (y); \
85 tmp = ((cc_dunit)(x)) + (y) + _c; \
92 tmp = ((cc_dunit)(x)) - (y); \
100 tmp = ((cc_dunit)(x)) - (y) - _b; \
107 tmp = (cc_dunit)(x) * (y); \
115 tmp = (cc_dunit)(x) * (y); \