Searched refs:px (Results 1 - 11 of 11) sorted by relevance

/haiku/src/system/libroot/posix/musl/math/
H A Dexpm1l.c84 long double px, qx, xx; local
98 px = floorl(0.5 + x / xx);
99 k = px;
101 x -= px * C1;
102 x -= px * C2;
105 px = (((( P4 * x + P3) * x + P2) * x + P1) * x + P0) * x;
108 qx = x + (0.5 * xx + xx * px / qx);
113 px = scalbnl(1.0, k);
114 x = px * qx + (px
[all...]
H A Dexpl.c95 long double px, xx; local
108 px = floorl(LOG2E * x + 0.5);
109 k = px;
110 x -= px * LN2HI;
111 x -= px * LN2LO;
117 px = x * __polevll(xx, P, 2);
118 x = px/(__polevll(xx, Q, 3) - px);
/haiku/docs/interface_guidelines/docbook-css/
H A Dopera.css27 outline: 1px dotted invert;
H A Dmozilla.css29 -moz-outline: 1px dotted invert;
H A Dstyles.css280 border-top-width: 2px;
281 border-left-width: 3px;
282 border-right-width: 3px;
283 border-bottom-width: 4px;
309 border: 2px outset #dddddd;
312 border: 2px solid;
490 border: 1px dashed black;
503 border: 1px dashed gray;
544 border-bottom: 2px solid black;
578 border: 2px dotte
[all...]
/haiku/src/libs/agg/src/
H A Dagg_bezier_arc.cpp46 double px[4]; local
48 px[0] = x0;
50 px[1] = x0 + tx;
52 px[2] = x0 + tx;
54 px[3] = x0;
63 curve[i * 2] = cx + rx * (px[i] * cs - py[i] * sn);
64 curve[i * 2 + 1] = cy + ry * (px[i] * sn + py[i] * cs);
/haiku/headers/private/interface/
H A Dclipping.h111 point_in(const clipping_rect &rect, int32 px, int32 py) argument
113 if (px >= rect.left && px <= rect.right
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dcache.c482 struct HASH_ENTRY **px; local
538 px = (struct HASH_ENTRY**)&ph[1];
539 cache->first_hash = px;
541 px[i] = (struct HASH_ENTRY*)NULL;
/haiku/headers/libs/agg/
H A Dagg_trans_perspective.h244 iterator_x(double px, double py, double step, const trans_perspective& m) : argument
245 den(px * m.w0 + py * m.w1 + m.w2),
247 nom_x(px * m.sx + py * m.shx + m.tx),
249 nom_y(px * m.shy + py * m.sy + m.ty),
571 inline void trans_perspective::transform(double* px, double* py) const argument
573 double x = *px;
576 *px = m * (x*sx + y*shx + tx);
/haiku/src/apps/icon-o-matic/import_export/svg/
H A Dnanosvg.h50 // The units passed to NanoSVG should be one of: 'px', 'pt', 'pc' 'mm', 'cm', or 'in'.
53 // If you don't know or care about the units stuff, "px" and 96 should get you going.
59 image = nsvgParseFromFile("test.svg", "px", 96);
725 float px,py, dx,dy; local
727 px = p->pts[(p->npts-1)*2+0];
729 dx = x - px;
731 nsvg__addPoint(p, px + dx/3.0f, py + dy/3.0f);
2074 float x, y, tanx, tany, a, px = 0, py = 0, ptanx = 0, ptany = 0, t[6]; local
2172 nsvg__cubicBezTo(p, px+ptanx,py+ptany, x-tanx, y-tany, x, y);
2173 px
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_eeprom.c611 * from the np ordered pairs of data (px,py).
613 * If the specified x value is less than any of the px,
614 * the returned y value is equal to the py for the lowest px.
615 * If the specified x value is greater than any of the px,
616 * the returned y value is equal to the py for the highest px.
619 interpolate(int32_t x, int32_t *px, int32_t *py, u_int16_t np) argument
634 dx = x - px[ip];
639 hx = px[ip];
648 lx = px[ip];

Completed in 281 milliseconds