Home
last modified time | relevance | path

Searched refs:xx (Results 1 – 24 of 24) sorted by relevance

/haiku/src/libs/mapm/
H A Dmapmrsin.c63 void M_raw_sin(M_APM rr, int places, M_APM xx) in M_raw_sin() argument
75 m_apm_copy(sum, xx); in M_raw_sin()
76 m_apm_copy(term, xx); in M_raw_sin()
77 m_apm_multiply(tmp8, xx, xx); in M_raw_sin()
80 dplaces = (places + 8) - xx->m_apm_exponent; in M_raw_sin()
81 tolerance = xx->m_apm_exponent - (places + 4); in M_raw_sin()
127 void M_raw_cos(M_APM rr, int places, M_APM xx) in M_raw_cos() argument
142 m_apm_multiply(tmp8, xx, xx); in M_raw_cos()
H A Dmapm_pow.c83 void m_apm_pow(M_APM rr, int places, M_APM xx, M_APM yy) in m_apm_pow() argument
99 if (xx->m_apm_sign == 0) in m_apm_pow()
136 m_apm_integer_pow(rr, places, xx, atoi(sbuf)); in m_apm_pow()
154 if (m_apm_compare(xx, M_last_xx_input) == 0) in m_apm_pow()
164 m_apm_log(tmp9, (places + 8), xx); in m_apm_pow()
170 m_apm_copy(M_last_xx_input, xx); in m_apm_pow()
H A Dmapmasin.c122 void m_apm_arctan2(M_APM rr, int places, M_APM yy, M_APM xx) in m_apm_arctan2() argument
128 ix = xx->m_apm_sign; in m_apm_arctan2()
168 m_apm_divide(tmp6, (places + 6), yy, xx); in m_apm_arctan2()
202 void m_apm_arctan(M_APM rr, int places, M_APM xx) in m_apm_arctan() argument
206 if (xx->m_apm_sign == 0) /* input == 0 ?? */ in m_apm_arctan()
212 if (xx->m_apm_exponent <= -4) /* input close to 0 ?? */ in m_apm_arctan()
214 M_arctan_near_0(rr, places, xx); in m_apm_arctan()
218 if (xx->m_apm_exponent >= 4) /* large input */ in m_apm_arctan()
220 M_arctan_large_input(rr, places, xx); in m_apm_arctan()
227 m_apm_multiply(tmp9, xx, xx); in m_apm_arctan()
[all …]
H A Dmapm_lg4.c53 void M_log_near_1(M_APM rr, int places, M_APM xx) in M_log_near_1() argument
65 tolerance = xx->m_apm_exponent - (places + 6); in M_log_near_1()
66 dplaces = (places + 12) - xx->m_apm_exponent; in M_log_near_1()
68 m_apm_add(tmp0, xx, MM_Two); in M_log_near_1()
69 m_apm_divide(tmpS, (dplaces + 6), xx, tmp0); in M_log_near_1()
H A Dmapm5sin.c116 void M_5x_do_it(M_APM rr, int places, M_APM xx) in M_5x_do_it() argument
126 m_apm_multiply(tmp1, xx, xx); in M_5x_do_it()
129 m_apm_multiply(tmp1, t2, xx); in M_5x_do_it()
134 m_apm_multiply(tmp0, xx, MM_Five); in M_5x_do_it()
149 void M_4x_do_it(M_APM rr, int places, M_APM xx) in M_4x_do_it() argument
158 m_apm_multiply(tmp1, xx, xx); in M_4x_do_it()
H A Dmapm_exp.c364 void M_raw_exp(M_APM rr, int places, M_APM xx) in M_raw_exp() argument
378 m_apm_add(rr, MM_One, xx); in M_raw_exp()
379 m_apm_copy(term, xx); in M_raw_exp()
386 m_apm_multiply(tmp0, term, xx); in M_raw_exp()
/haiku/src/system/libroot/posix/musl/math/
H A Dexpm1l.c84 long double px, qx, xx; in expm1l() local
96 xx = C1 + C2; in expm1l()
98 px = floorl(0.5 + x / xx); in expm1l()
107 xx = x * x; in expm1l()
108 qx = x + (0.5 * xx + xx * px / qx); in expm1l()
H A Dexpl.c95 long double px, xx; in expl() local
116 xx = x * x; in expl()
117 px = x * __polevll(xx, P, 2); in expl()
118 x = px/(__polevll(xx, Q, 3) - px); in expl()
/haiku/src/apps/devices/
H A Dusb-header.awk56 gsub( /\?\?/, "xx", vendor )
70 gsub( /\?\?/, "xx", device )
H A Dpci-header.awk54 gsub( /\?\?/, "xx", vendor )
68 gsub( /\?\?/, "xx", device )
/haiku/src/data/mime_db/application/
H A Dx-lharc8 resource(2, "META:SNIFF_RULE") "0.50 (\"xx-lhx-\" & 0x0000ffffff00ff) ([20] \"\\000\" & 0xfc)";
/haiku/src/apps/glteapot/
H A DQuaternion.h284 float wx, wy, wz, xx, yy, yz, xy, xz, zz, x2, y2, z2; in toOpenGLMatrix() local
289 xx = m_x * x2; xy = m_x * y2; xz = m_x * z2; in toOpenGLMatrix()
297 m[0][1] = xy + wz; m[1][1] = 1.0 - (xx + zz); in toOpenGLMatrix()
302 m[2][2] = 1.0 - (xx + yy); m[3][2] = 0.0; in toOpenGLMatrix()
/haiku/src/apps/haiku3d/
H A DQuaternion.h290 float wx, wy, wz, xx, yy, yz, xy, xz, zz, x2, y2, z2; in toOpenGLMatrix() local
295 xx = m_x * x2; xy = m_x * y2; xz = m_x * z2; in toOpenGLMatrix()
303 m[0][1] = xy + wz; m[1][1] = 1.0 - (xx + zz); in toOpenGLMatrix()
308 m[2][2] = 1.0 - (xx + yy); m[3][2] = 0.0; in toOpenGLMatrix()
/haiku/src/add-ons/screen_savers/ifs/
H A DIFS.cpp136 int32 xx; in transform() local
144 xx = xo - Similitude->Cx; in transform()
145 xx = (xx * Similitude->R2) / UNIT; in transform()
149 *x = ((xo * Similitude->Ct - yo * Similitude->St + xx * Similitude->Ct2 in transform()
151 *y = ((xo * Similitude->St + yo * Similitude->Ct + xx * Similitude->St2 in transform()
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css70 font-size:xx-large;
76 font-size:xx-large;
81 font-size:xx-large;
/haiku/src/add-ons/kernel/network/stack/
H A Dradix.c748 struct radix_node *xx = x; in rn_addroute() local
758 saved_tt = tt; x = xx; in rn_addroute()
/haiku/src/servers/app/
H A DServerFont.cpp406 rmatrix.xx = (FT_Fixed)( rotationAngle.Cosine() * 0x10000); in GetTransformedFace()
412 smatrix.xx = (FT_Fixed)(0x10000); in GetTransformedFace()
/haiku/docs/user/netservices/
H A DHttpRequest.dox596 \retval true When encountering a HTTP status of the client error class (4xx) or server error
597 class (5xx), then the response will not be parsed.
/haiku/data/develop/
H A Dmakefile-engine227 # to a corresponding list of catkeys files in $(CATALOGS_DIR)/xx.catalog
/haiku/data/system/data/licenses/
H A DGNU GPL v1226 Gnomovision version 69, Copyright (C) 19xx name of author
/haiku/src/libs/compat/freebsd_network/compat/dev/mii/
H A Dmiidevs45 * If a vendor uses a different mapping, an "xx" prefixed OUI is defined here
/haiku/src/data/ids/
H A Dusb.ids645 7204 DeskJet 36xx
648 7304 DeskJet 35xx
1739 4940 USB47xx/49xx hub integrated WinUSB
1740 4942 USB47xx/49xx hub integrated I2S audio port
1741 4943 USB47xx/49xx hub integrated I2S audio + HID port
1742 4944 USB47xx/49xx hub integrated serial port
1743 4946 USB47xx/49xx hub integrated serial + I2S audio port
1744 4947 USB47xx/49xx hub integrated serial + I2S audio + HID port
1745 494a USB47xx/49xx hub integrated WinUSB + I2S audio port
1746 494b USB47xx/49xx hub integrated WinUSB + I2S audio + HID port
[all …]
H A Dpci.ids214 0046 Smart Array 64xx
780 00a5 Fusion-MPT 24GSAS/PCIe SAS40xx/41xx
6349 0648 645xx
14097 3038 VT82xx/62xx/VX700/8x0/900 UHCI USB 1.1 Controller
15342 4320 SK-98xx V2.0 Gigabit Ethernet Adapter [Marvell 88E8001]
15812 103c 30cf Pavilion dv95xx/96xx/97xx/98xx series
16216 1259 2804 AT-2874xx
18744 1600 PCI-16xx series PCI multiport serial board (function 0)
18753 16ff PCI-16xx series PCI multiport serial board (function 1: RX/TX steering CPLD)
21146 4719 BCM47xx/53xx RoboSwitch Core
[all …]
/haiku/src/libs/compat/freebsd_network/compat/dev/usb/
H A Dusbdevs2438 product HP 2215 0x1016 iPAQ 22xx/Jornada 548