/titanic_41/usr/src/lib/libm/common/LD/ |
H A D | __lgammal.c | 55 static long double poly(long double, const long double *, int); 310 case 0: return ch*s+s*poly(s, an4, 21); in primary() 311 case 1: return ch*s+s*poly(s, an3, 20); in primary() 312 case 2: return ch*s+s*poly(s, an2, 20); in primary() 313 case 3: return ch*s+s*poly(s, an1, 20); in primary() 314 case 4: return ch*s+s*poly(s, ap1, 19); in primary() 315 case 5: return ch*s+s*poly(s, ap2, 19); in primary() 316 case 6: return ch*s+s*poly(s, ap3, 19); in primary() 317 case 7: return ch*s+s*poly(s, ap4, 19); in primary() 324 poly(long double s, const long double *p, int n) { in poly() function
|
/titanic_41/usr/src/lib/libm/common/Q/ |
H A D | __lgammal.c | 55 static long double poly(long double, const long double *, int); 306 case 0: return ch*s+s*poly(s,an4,21); in primary() 307 case 1: return ch*s+s*poly(s,an3,20); in primary() 308 case 2: return ch*s+s*poly(s,an2,20); in primary() 309 case 3: return ch*s+s*poly(s,an1,20); in primary() 310 case 4: return ch*s+s*poly(s,ap1,19); in primary() 311 case 5: return ch*s+s*poly(s,ap2,19); in primary() 312 case 6: return ch*s+s*poly(s,ap3,19); in primary() 313 case 7: return ch*s+s*poly(s,ap4,19); in primary() 320 poly(long double s, const long double *p, int n) { in poly() function
|
/titanic_41/usr/src/uts/common/sys/ |
H A D | crc32.h | 107 #define CRC32_INIT(table, poly) \ argument 112 *Xt = (*Xt >> 1) ^ (-(*Xt & 1) & (poly)); \
|
/titanic_41/usr/src/uts/common/zmod/ |
H A D | crc32.c | 115 unsigned long poly; /* polynomial exclusive-or pattern */ in make_crc_table() local 127 poly = 0UL; in make_crc_table() 129 poly |= 1UL << (31 - p[n]); in make_crc_table() 135 c = c & 1 ? poly ^ (c >> 1) : c >> 1; in make_crc_table()
|
/titanic_41/usr/src/common/lvm/ |
H A D | md_crc.c | 56 uint_t poly = 0x04c11db7; in crcgentab() local 62 v = (v << 1) ^ poly; in crcgentab()
|
/titanic_41/usr/src/lib/libmvec/common/ |
H A D | __vatan.c | 50 double f, z, ans = 0.0L, ansu, ansl, tmp, poly, conup, conlo, dummy; in __vatan() local 289 poly = f *((p3*tmp + p2)*tmp + p1)*tmp ; in __vatan() 297 ansl = (((conup - ansu) + f) + poly) + conlo ; in __vatan()
|
/titanic_41/usr/src/uts/sun4v/io/n2rng/ |
H A D | n2rng_entp_setup.c | 119 lfsr64_adv_seq(uint64_t poly, uint64_t in, uint64_t exp, uint64_t *out) in lfsr64_adv_seq() argument 126 res = (res << 1) ^ poly; in lfsr64_adv_seq()
|
/titanic_41/usr/src/common/crypto/ecc/ |
H A D | ec.c | 186 SECITEM_TO_MPINT( params->fieldID.u.poly, &irreducible ); in ec_points_mul() 292 CHECK_SEC_OK(SECITEM_CopyItem(arena, &key->ecParams.fieldID.u.poly, in ec_NewKey() 293 &ecParams->fieldID.u.poly, kmflag)); in ec_NewKey() 1085 CHECK_SEC_OK(SECITEM_CopyItem(arena, &dstParams->fieldID.u.poly, in EC_CopyParams() 1086 &srcParams->fieldID.u.poly, 0)); in EC_CopyParams()
|
H A D | ecc_impl.h | 147 SECItem poly; /* irreducible binary polynomial for (GF2m) */ member
|
H A D | ecdecode.c | 129 CHECK_OK(hexString2SECItem(NULL, ¶ms->fieldID.u.poly, in gf_populate_params()
|
/titanic_41/usr/src/lib/libmvec/common/vis/ |
H A D | __vatan.S | 40 ! double f, z, ans, ansu, ansl, tmp, poly, conup, conlo, dummy; 105 ! poly = (f*tmp)*((p3*tmp + p2)*tmp + p1); 107 ! ansl = (((conup - ansu) + f) + poly) + conlo;
|
H A D | __vexp.S | 943 !!!!!!!!!!!!!!!!!!! poly-reorder - ends here
|
H A D | __vlog_ultra3.S | 2380 ! s ( poly + ( 2-xT-x)), n*l2lo+lylo
|
H A D | __vcos.S | 173 ! when in pri range, using value as transition from poly to table.
|
/titanic_41/usr/src/cmd/fwflash/plugins/transport/common/ |
H A D | tavor.c | 1909 const uint16_t poly = 0x100b; in crc16() local 1923 (word >> 31)) ^ poly) & 0xFFFF; in crc16() 1933 crc = ((crc << 1) ^ poly) & 0xFFFF; in crc16()
|
H A D | hermon.c | 1201 const uint16_t poly = 0x100b; in cnx_crc16() local 1220 (word >> 31)) ^ poly) & 0xFFFF; in cnx_crc16() 1230 crc = ((crc << 1) ^ poly) & 0xFFFF; in cnx_crc16()
|
/titanic_41/usr/src/lib/libshell/misc/ |
H A D | ERRATA.txt | 470 - if (isdigit(*t) || v && i >= 4 && strneq(t, "poly", 4) && (t = v + 1)) 516 + if (isdigit(*t) || v && i >= 4 && strneq(t, "poly", 4) && (t = v + 1))
|
/titanic_41/usr/src/uts/common/io/e1000api/ |
H A D | e1000_ich8lan.c | 2546 u32 poly = 0xEDB88320; /* Polynomial for 802.3 CRC calculation */ in e1000_calc_rx_da_crc() local 2556 crc = (crc >> 1) ^ (poly & mask); in e1000_calc_rx_da_crc()
|