Searched refs:poly (Results 1 - 19 of 19) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dcrc.c31 uint32_t poly; member in struct:__anon747
47 * exponent of the corresponding polynomial (both for poly and
54 * @param poly generator polynomial without the x**bits coefficient, in the
58 int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size){ argument
62 if (bits < 8 || bits > 32 || poly >= (1LL<<bits))
70 c = (c>>1)^(poly & (-(c&1)));
74 c = (c<<1) ^ ((poly<<(32-bits)) & (((int32_t)c)>>31) );
100 av_crc_table_params[crc_id].poly,
H A Dcrc.h39 int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/include/libavutil/
H A Dcrc.h39 int av_crc_init(AVCRC *ctx, int le, int bits, uint32_t poly, int ctx_size);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec2_smpt.c99 if (!BN_GF2m_mod_arr(x, x_, group->poly)) goto err;
102 if (!BN_GF2m_mod_sqrt_arr(y, &group->b, group->poly, ctx)) goto err;
110 if (!BN_GF2m_mod_solve_quad_arr(z, tmp, group->poly, ctx))
H A Dec2_smpl.c155 group->poly[0] = 0;
156 group->poly[1] = 0;
157 group->poly[2] = 0;
158 group->poly[3] = 0;
159 group->poly[4] = 0;
172 dest->poly[0] = src->poly[0];
173 dest->poly[1] = src->poly[1];
174 dest->poly[
[all...]
H A Dec_asn1.c75 while (group->poly[i] != 0)
93 || !((group->poly[0] != 0) && (group->poly[1] != 0) && (group->poly[2] == 0)))
100 *k = group->poly[1];
112 || !((group->poly[0] != 0) && (group->poly[1] != 0) && (group->poly[2] != 0) && (group->poly[3] != 0) && (group->poly[
[all...]
H A Dec2_mult.c247 if (!BN_GF2m_mod_arr(x1, &point->X, group->poly)) goto err; /* x1 = x */
H A Dec_lcl.h208 unsigned int poly[5]; /* Field specification for curves over GF(2^m). member in struct:ec_group_st
210 * t^poly[0] + t^poly[1] + ... + t^poly[k]
211 * where m = poly[0] > poly[1] > ... > poly[k] = 0.
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/udf/
H A Dcrc.c136 unsigned long crc, poly; local
140 sscanf(argv[1], "%lo", &poly);
141 if (poly & 0xffff0000U){
146 printf("/* CRC 0%o */\n", poly);
156 crc = (crc << 1) ^ poly;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/
H A Dcrc32.c110 unsigned long poly; /* polynomial exclusive-or pattern */ local
122 poly = 0UL;
124 poly |= 1UL << (31 - p[n]);
130 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/
H A Dcrc32.c110 unsigned long poly; /* polynomial exclusive-or pattern */ local
122 poly = 0UL;
124 poly |= 1UL << (31 - p[n]);
130 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/scsi/libsas/
H A Dsas_init.c44 const u32 poly = 0x00DB2777; local
54 r ^= poly;
56 r ^= poly;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dslogn.S35 | log(1+u) = poly.
38 | by k*log(2) + (log(F) + poly). The values of log(F) are calculated
47 | k*log(2) + log(F) + poly where poly approximates log(1+u),
H A Dsatan.S30 | Step 3. Approximate arctan(u) by a polynomial poly.
32 | Step 4. Return arctan(F) + poly, arctan(F) is fetched from a table of values
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-cris/arch-v32/hwregs/iop/
H A Diop_crc_par_defs.h94 unsigned int poly : 3; member in struct:__anon8193
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dac3enc.c1052 static unsigned int mul_poly(unsigned int a, unsigned int b, unsigned int poly) argument
1063 b ^= poly;
1068 static unsigned int pow_poly(unsigned int a, unsigned int n, unsigned int poly) argument
1074 r = mul_poly(r, a, poly);
1075 a = mul_poly(a, a, poly);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/net/pcmcia/
H A Dnmclan_cs.c1371 int poly[]={ local
1376 }; /* CRC polynomial. poly[n] = coefficient of the x**n term of the
1389 CRC[j] ^= poly[j];
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/m68k/ifpsp060/src/
H A Dfplsp.S6062 # Step 3. Approximate arctan(u) by a polynomial poly. #
6064 # Step 4. Return arctan(F) + poly, arctan(F) is fetched from a #
7991 # polynomial in u, log(1+u) = poly. #
7995 # by k*log(2) + (log(F) + poly). The values of log(F) are #
8005 # log(1+X) as k*log(2) + log(F) + poly where poly #
H A Dfpsp.S6168 # Step 3. Approximate arctan(u) by a polynomial poly. #
6170 # Step 4. Return arctan(F) + poly, arctan(F) is fetched from a #
8097 # polynomial in u, log(1+u) = poly. #
8101 # by k*log(2) + (log(F) + poly). The values of log(F) are #
8111 # log(1+X) as k*log(2) + log(F) + poly where poly #

Completed in 381 milliseconds