Searched defs:poly (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/common/lvm/
H A Dmd_crc.c56 uint_t poly = 0x04c11db7; local
62 v = (v << 1) ^ poly;
/illumos-gate/usr/src/lib/libm/common/LD/
H A D__lgammal.c55 static long double poly(long double, const long double *, int);
310 case 0: return ch*s+s*poly(s, an4, 21);
311 case 1: return ch*s+s*poly(s, an3, 20);
312 case 2: return ch*s+s*poly(s, an2, 20);
313 case 3: return ch*s+s*poly(s, an1, 20);
314 case 4: return ch*s+s*poly(s, ap1, 19);
315 case 5: return ch*s+s*poly(s, ap2, 19);
316 case 6: return ch*s+s*poly(s, ap3, 19);
317 case 7: return ch*s+s*poly(s, ap4, 19);
324 poly(lon function
[all...]
/illumos-gate/usr/src/lib/libm/common/Q/
H A D__lgammal.c55 static long double poly(long double, const long double *, int);
306 case 0: return ch*s+s*poly(s,an4,21);
307 case 1: return ch*s+s*poly(s,an3,20);
308 case 2: return ch*s+s*poly(s,an2,20);
309 case 3: return ch*s+s*poly(s,an1,20);
310 case 4: return ch*s+s*poly(s,ap1,19);
311 case 5: return ch*s+s*poly(s,ap2,19);
312 case 6: return ch*s+s*poly(s,ap3,19);
313 case 7: return ch*s+s*poly(s,ap4,19);
320 poly(lon function
[all...]
/illumos-gate/usr/src/uts/common/zmod/
H A Dcrc32.c115 unsigned long poly; /* polynomial exclusive-or pattern */ local
127 poly = 0UL;
129 poly |= 1UL << (31 - p[n]);
135 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
/illumos-gate/usr/src/boot/lib/libz/
H A Dcrc32.c94 z_crc_t poly; /* polynomial exclusive-or pattern */ local
106 poly = 0;
108 poly |= (z_crc_t)1 << (31 - p[n]);
114 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vatan.c50 double f, z, ans = 0.0L, ansu, ansl, tmp, poly, conup, conlo, dummy; local
289 poly = f *((p3*tmp + p2)*tmp + p1)*tmp ;
297 ansl = (((conup - ansu) + f) + poly) + conlo ;
/illumos-gate/usr/src/uts/sun4v/io/n2rng/
H A Dn2rng_entp_setup.c112 * modulus polynomial is x^64 + the interpretation of poly. Out is
119 lfsr64_adv_seq(uint64_t poly, uint64_t in, uint64_t exp, uint64_t *out) argument
126 res = (res << 1) ^ poly;
/illumos-gate/usr/src/common/crypto/ecc/
H A Decc_impl.h147 SECItem poly; /* irreducible binary polynomial for (GF2m) */ member in union:ECFieldIDStr::__anon1959
/illumos-gate/usr/src/cmd/fwflash/plugins/transport/common/
H A Dhermon.c1201 const uint16_t poly = 0x100b; local
1220 (word >> 31)) ^ poly) & 0xFFFF;
1230 crc = ((crc << 1) ^ poly) & 0xFFFF;
H A Dtavor.c1909 const uint16_t poly = 0x100b; local
1923 (word >> 31)) ^ poly) & 0xFFFF;
1933 crc = ((crc << 1) ^ poly) & 0xFFFF;
/illumos-gate/usr/src/uts/common/io/e1000api/
H A De1000_ich8lan.c2742 u32 poly = 0xEDB88320; /* Polynomial for 802.3 CRC calculation */ local
2752 crc = (crc >> 1) ^ (poly & mask);

Completed in 93 milliseconds