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

12

/haiku/src/add-ons/kernel/file_systems/ext2/
H A Dcrc_table.cpp24 ulong crc, poly; local
31 sscanf(argv[1], "%lo", &poly);
32 if (poly & 0xffff0000) {
37 printf("//! CRC 0%o table, as generated by crc_table.cpp\n", poly);
45 crc = (crc >> 1) ^ poly;
/haiku/src/add-ons/kernel/file_systems/shared/
H A Dcrc_table.cpp21 ulong crc, poly; local
28 sscanf(argv[1], "%lo", &poly);
29 if (poly & 0xffff0000) {
34 printf("//! CRC 0%o table, as generated by crc_table.cpp\n", poly);
42 crc = (crc << 1) ^ poly;
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A Dcrc_table.cpp43 uint32 crc, poly; local
49 sscanf(argv[1], "%lo", &poly);
50 printf("//! CRC 0%o table, as generated by crc_table.cpp\n", poly);
56 crc = (crc << 1) ^ poly;
/haiku/src/system/libroot/posix/musl/math/
H A Dlog2f_data.h16 double poly[LOG2F_POLY_ORDER]; member in struct:log2f_data
H A Dlogf_data.h17 double poly[LOGF_POLY_ORDER - 1]; /* First order coefficient is 1. */ member in struct:logf_data
H A Dpow_data.h15 double poly[POW_LOG_POLY_ORDER - 1]; /* First coefficient is 1. */ member in struct:pow_log_data
H A Dpowf_data.h23 double poly[POWF_LOG2_POLY_ORDER]; member in struct:powf_log2_data
H A Dexp2f_data.h17 double poly[EXP2F_POLY_ORDER]; member in struct:exp2f_data
H A Dexp_data.h20 double poly[4]; /* Last four coefficients. */ member in struct:exp_data
H A Dlog2_data.h16 double poly[LOG2_POLY_ORDER - 1]; member in struct:log2_data
H A Dlog_data.h16 double poly[LOG_POLY_ORDER - 1]; /* First coefficient is 1. */ member in struct:log_data
H A Dexp.c19 #define C2 __exp_data.poly[5 - EXP_POLY_ORDER]
20 #define C3 __exp_data.poly[6 - EXP_POLY_ORDER]
21 #define C4 __exp_data.poly[7 - EXP_POLY_ORDER]
22 #define C5 __exp_data.poly[8 - EXP_POLY_ORDER]
126 /* Worst case error is less than 0.5+1.11/N+(abs poly error * 2^53) ulp. */
H A Dexp2f_data.c27 .poly = {
H A Dlog2f_data.c29 .poly = {
H A Dlogf_data.c30 .poly = {
H A Dpow.c21 #define A __pow_log_data.poly
111 #define C2 __exp_data.poly[5 - EXP_POLY_ORDER]
112 #define C3 __exp_data.poly[6 - EXP_POLY_ORDER]
113 #define C4 __exp_data.poly[7 - EXP_POLY_ORDER]
114 #define C5 __exp_data.poly[8 - EXP_POLY_ORDER]
115 #define C6 __exp_data.poly[9 - EXP_POLY_ORDER]
223 /* Worst case error is less than 0.5+1.11/N+(abs poly error * 2^53) ulp. */
H A Dexp2f.c25 #define C __exp2f_data.poly
H A Dlog2f.c23 #define A __log2f_data.poly
H A Dlogf.c22 #define A __logf_data.poly
H A Dpowf_data.c29 .poly = {
H A Dpowf.c24 #define A __powf_log2_data.poly
82 #define C __exp2f_data.poly
H A Dexp_data.c25 .poly = {
H A Dlog.c16 #define A __log_data.poly
106 0.5 + 4.13/N + abs-poly-error*2^57 ULP (+ 0.002 ULP without fma)
108 0.5 + 2.06/N + abs-poly-error*2^56 ULP (+ 0.001 ULP without fma). */
H A Dlog2.c16 #define A __log2_data.poly
113 /* log2(r+1) = r/ln2 + r^2*poly(r). */
118 ~ 0.5 + 2/N/ln2 + abs-poly-error*0x1p56 ULP (+ 0.003 ULP without fma). */
/haiku/headers/libs/agg/
H A Dagg_path_storage.h784 poly_plain_adaptor<T> poly(data, num_points, closed);
785 concat_path(poly);
794 poly_plain_adaptor<T> poly(data, num_points, closed);
795 join_path(poly);

Completed in 119 milliseconds

12