Home
last modified time | relevance | path

Searched refs:poly (Results 1 – 17 of 17) sorted by relevance

/titanic_50/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); 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_50/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); 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_50/usr/src/uts/common/sys/
H A Dcrc32.h107 #define CRC32_INIT(table, poly) \ argument
112 *Xt = (*Xt >> 1) ^ (-(*Xt & 1) & (poly)); \
/titanic_50/usr/src/uts/common/zmod/
H A Dcrc32.c115 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_50/usr/src/lib/libmvec/common/
H A D__vatan.c50 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_50/usr/src/uts/sun4v/io/n2rng/
H A Dn2rng_entp_setup.c119 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_50/usr/src/common/crypto/ecc/
H A Dec.c186 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 Decc_impl.h147 SECItem poly; /* irreducible binary polynomial for (GF2m) */ member
H A Decdecode.c129 CHECK_OK(hexString2SECItem(NULL, &params->fieldID.u.poly, in gf_populate_params()
/titanic_50/usr/src/lib/libmvec/common/vis/
H A D__vatan.S40 ! 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.S943 !!!!!!!!!!!!!!!!!!! poly-reorder - ends here
H A D__vlog_ultra3.S2380 ! s ( poly + ( 2-xT-x)), n*l2lo+lylo
H A D__vcos.S173 ! when in pri range, using value as transition from poly to table.
/titanic_50/usr/src/cmd/fwflash/plugins/transport/common/
H A Dtavor.c1909 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 Dhermon.c1201 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_50/usr/src/lib/libshell/misc/
H A DERRATA.txt470 - 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_50/usr/src/uts/common/io/e1000api/
H A De1000_ich8lan.c2731 u32 poly = 0xEDB88320; /* Polynomial for 802.3 CRC calculation */ in e1000_calc_rx_da_crc() local
2741 crc = (crc >> 1) ^ (poly & mask); in e1000_calc_rx_da_crc()