Searched refs:up (Results 1 - 21 of 21) sorted by relevance

/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Dlshift.c37 register mp_srcptr up, mp_size_t usize,
40 mpn_lshift (wp, up, usize, cnt)
42 register mp_srcptr up;
61 if (wp != up)
66 wp[i] = up[i];
75 low_limb = up[i];
80 low_limb = up[i];
36 mpn_lshift(register mp_ptr wp, register mp_srcptr up, mp_size_t usize, register unsigned int cnt) argument
H A Drshift.c37 register mp_srcptr up, mp_size_t usize,
40 mpn_rshift (wp, up, usize, cnt)
42 register mp_srcptr up;
62 if (wp != up)
67 wp[i] = up[i];
75 high_limb = up[0];
81 high_limb = up[i];
36 mpn_rshift(register mp_ptr wp, register mp_srcptr up, mp_size_t usize, register unsigned int cnt) argument
H A Dmul_n.c54 impn_mul_n_basecase (mp_ptr prodp, mp_srcptr up, mp_srcptr vp, mp_size_t size) argument
56 impn_mul_n_basecase (prodp, up, vp, size)
58 mp_srcptr up;
73 MPN_COPY (prodp, up, size);
79 cy_limb = mpn_mul_1 (prodp, up, size, v_limb);
93 cy_limb = mpn_add_n (prodp, prodp, up, size);
96 cy_limb = mpn_addmul_1 (prodp, up, size, v_limb);
106 mp_srcptr up, mp_srcptr vp, mp_size_t size, mp_ptr tspace)
108 impn_mul_n (prodp, up, vp, size, tspace)
110 mp_srcptr up;
105 impn_mul_n(mp_ptr prodp, mp_srcptr up, mp_srcptr vp, mp_size_t size, mp_ptr tspace) argument
224 impn_sqr_n_basecase(mp_ptr prodp, mp_srcptr up, mp_size_t size) argument
274 impn_sqr_n(mp_ptr prodp, mp_srcptr up, mp_size_t size, mp_ptr tspace) argument
363 mpn_mul_n(mp_ptr prodp, mp_srcptr up, mp_srcptr vp, mp_size_t size) argument
[all...]
H A Dmul.c48 mp_srcptr up, mp_size_t usize,
51 mpn_mul (prodp, up, usize, vp, vsize)
53 mp_srcptr up;
85 MPN_COPY (prodp, up, usize);
91 cy_limb = mpn_mul_1 (prodp, up, usize, v_limb);
105 cy_limb = mpn_add_n (prodp, prodp, up, usize);
108 cy_limb = mpn_addmul_1 (prodp, up, usize, v_limb);
119 MPN_MUL_N_RECURSE (prodp, up, vp, vsize, tspace);
122 up += vsize;
129 MPN_MUL_N_RECURSE (tp, up, v
47 mpn_mul(mp_ptr prodp, mp_srcptr up, mp_size_t usize, mp_srcptr vp, mp_size_t vsize) argument
[all...]
/haiku/src/system/libroot/posix/glibc/arch/ppc/
H A Dmul.c48 mp_srcptr up, mp_size_t usize,
51 mpn_mul (prodp, up, usize, vp, vsize)
53 mp_srcptr up;
85 MPN_COPY (prodp, up, usize);
91 cy_limb = mpn_mul_1 (prodp, up, usize, v_limb);
105 cy_limb = mpn_add_n (prodp, prodp, up, usize);
108 cy_limb = mpn_addmul_1 (prodp, up, usize, v_limb);
119 MPN_MUL_N_RECURSE (prodp, up, vp, vsize, tspace);
122 up += vsize;
129 MPN_MUL_N_RECURSE (tp, up, v
47 mpn_mul(mp_ptr prodp, mp_srcptr up, mp_size_t usize, mp_srcptr vp, mp_size_t vsize) argument
[all...]
/haiku/src/tests/system/libroot/posix/
H A Dtest_wcfuncs.c33 wint_t up = towupper(ch); local
37 if ((ch != low) || (up == ch) || (up == low)) {
48 wint_t up = towupper(ch); local
50 if ((ch != up) || (low == ch) || (up == low)) {
/haiku/src/tests/system/kernel/
H A Dmtrr_power_test.c32 uint64 down, up;
34 nearest_powers(value, &down, &up);
43 props[iteration] = -up;
44 if (up - value < 0x100000) {
50 find_nearest(up - value, iteration + 1);
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dgmp-impl.h172 #define MPN_MUL_N_RECURSE(prodp, up, vp, size, tspace) \
175 impn_mul_n_basecase (prodp, up, vp, size); \
177 impn_mul_n (prodp, up, vp, size, tspace); \
179 #define MPN_SQR_N_RECURSE(prodp, up, size, tspace) \
182 impn_sqr_n_basecase (prodp, up, size); \
184 impn_sqr_n (prodp, up, size, tspace); \
315 extern void impn_mul_n_basecase _PROTO ((mp_ptr prodp, mp_srcptr up,
317 extern void impn_mul_n _PROTO ((mp_ptr prodp, mp_srcptr up, mp_srcptr vp,
319 extern void impn_sqr_n_basecase _PROTO ((mp_ptr prodp, mp_srcptr up,
321 extern void impn_sqr_n _PROTO ((mp_ptr prodp, mp_srcptr up, mp_size_
[all...]
/haiku/src/add-ons/tracker/zipomatic/
H A DZipOMaticWindow.h16 up, enumerator in enum:direction
H A DZipOMaticWindow.cpp292 // up and left
293 direction primaryDirection = up;
377 case up:
400 if (*primaryDirection == up) {
403 *primaryDirection = up;
/haiku/headers/private/net/
H A Dnet_device.h47 status_t (*up)(net_device* device); member in struct:net_device_module_info
/haiku/src/system/boot/platform/bios_ia32/
H A Dsmp_trampoline.S44 movl $0x9eff8,%esp # set up the stack pointer
/haiku/src/system/boot/platform/pxe_ia32/
H A Dsmp_trampoline.S44 movl $0x8cff8,%esp # set up the stack pointer
/haiku/src/system/kernel/arch/m68k/
H A Darch_vm.cpp47 #warning M68K: disable TT0 and TT1, set up pmmu
/haiku/src/apps/mail/
H A DSignature.cpp74 // Set up the menu
513 bool up = false; local
529 up = true;
532 height = (int32)((up ? r.top - r.bottom : r.bottom - r.top) - 25);
533 if ((up) && (!r.top))
/haiku/src/apps/terminal/
H A DTermView.cpp1105 bool up = true; local
1107 inView->StrokeLine(BPoint(x, y1 + fFontAscent + (up ? 0 : 2)),
1108 BPoint(std::min(x + 2, x2), y1 + fFontAscent + (up ? 2 : 0)));
1109 up = !up;
2289 // Condition doesn't hold yet. Reset if time is up, or otherwise
2324 // time's up, but not enough happened
2330 // Things are still rolling, but the sync time's up.
2376 // visible text buffer, since those will be scrolled up and
3010 // scroll up t
[all...]
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_output.c119 /* Interface has to be up and running */
176 * reference (and potentially free'ing up any associated storage).
370 * user-priority `up'.
373 ieee80211_up_to_ac(struct ieee80211com *ic, int up) argument
388 ac = (up <= 7) ? up_to_ac[up] : EDCA_AC_BE;
489 * up appearing as actual frames after de-aggregation by a buggy
1633 * Move Tx BA window forward up to the first hole in the bitmap
1634 * or up to the specified SSN, whichever comes first.
/haiku/src/add-ons/kernel/network/stack/
H A Ddevice_interfaces.cpp529 status_t status = device->module->up(device);
/haiku/src/bin/keymap/
H A DKeymap.cpp848 "# [shft] [ \\ ] [ z ] [ x ] [ c ] [ v ] [ b ] [ n ] [ m ] [ , ] [ . ] [ / ] [ shift ] [ up] [ 1 ] [ 2 ] [ 3 ] [ent]\n"
/haiku/src/kits/interface/
H A DColumnListView.cpp279 void ChangeFocusRow(bool up, bool updateSelection,
1787 // recursion if this comes back up here.
2884 // Right mouse button -- bring up menu to show/hide columns.
3053 // Set up the invalid rect to include the rect for the previous
4128 OutlineView::ChangeFocusRow(bool up, bool updateSelection, argument
4138 newRowPos = fFocusRowRect.top + (up ? -4 : fFocusRow->Height() + 4);
4178 < IndexOf(oldFocusRow)) == up)
4287 // TODO: Could use CopyBits here to speed things up.
4322 // move it up to the parent.
4394 // focus row is in a subtree that is gone, move it up t
[all...]
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex541 and summed up, ignoring carry. If the number of bytes to be considered is

Completed in 241 milliseconds