HomeSort by: relevance | last modified time | path
    Searched defs:ox (Results 1 - 11 of 11) sorted by relevancy

  /src/lib/libcurses/
scroll.c 99 int oy, ox; local in function:wscrl
111 getyx(win, oy, ox);
115 wmove(win, oy, ox);
addchnstr.c 138 int i, ret, ox, oy; local in function:waddchnstr
162 ox = win->curx;
184 wmove(win, oy, ox);
refresh.c 1517 domvcur(WINDOW *win, int oy, int ox, int ny, int nx)
1521 oy, ox, ny, nx, win );
1526 if (oy == ny && ox == nx) {
1536 __mvcur(oy, ox, ny, nx, 1);
1861 int i, oy, ox, n; local in function:scrolln
1864 ox = curscr->curx;
1899 __mvcur(oy, ox, 0, 0, 1);
1912 __mvcur(0, 0, oy, ox, 1);
1918 __mvcur(oy, ox, bot, 0, 1);
1922 __mvcur(oy, ox, top, 0, 1)
    [all...]
  /src/games/hack/
def.obj.h 70 xchar ox,oy; member in struct:obj
  /src/games/cribbage/
io.c 523 int c, oy, ox; local in function:get_line
528 getyx(stdscr, oy, ox);
545 move(oy, ox);
  /src/usr.bin/systat/
main.c 381 int oy, ox; local in function:error
386 getyx(stdscr, oy, ox);
392 move(oy, ox);
  /src/sys/arch/usermode/dev/
vncfb.c 445 int ox, oy, x, y, w, h; local in function:vncfb_cursor
450 ox = ri->ri_ccol * w + ri->ri_xorigin;
458 vncfb_update(sc, ox, oy, w, h);
  /src/games/sail/
pl_7.c 302 int oy, ox; local in function:oops
306 ox = getcurx(stdscr);
311 move(oy, ox);
  /src/lib/libc/stdio/
vfwprintf.c 642 * B: ox[1] holds the 'x' or 'X'; '\0' if not hexadecimal
684 CHAR_T ox[2]; /* space for 0x hex-prefix */ local in function:WDECL
880 ox[1] = '\0';
1058 ox[1] = 'x';
1062 ox[1] = 'X';
1091 ox[1] = '\0';
1273 ox[1] = 'x';
1347 ox[1] = ch;
1418 if (ox[1])
1435 if (ox[1]) { /* ox[1] is either x, X, or \0 *
    [all...]
  /src/sys/dev/usb/
ohci.c 537 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_alloc_std_chain
552 ox->ox_stds = kmem_zalloc(sizeof(ohci_soft_td_t *) * nstd,
554 ox->ox_nstd = nstd;
558 for (size_t j = 0; j < ox->ox_nstd; j++) {
563 ox->ox_stds[j] = cur;
564 cur->held = &ox->ox_stds[j];
567 DPRINTFN(10, "xfer=%#jx new std=%#jx held at %#jx", (uintptr_t)ox,
574 ohci_free_stds(sc, ox);
575 kmem_free(ox->ox_stds, sizeof(ohci_soft_td_t *) * nstd);
581 ohci_free_stds(ohci_softc_t *sc, struct ohci_xfer *ox)
600 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_reset_std_chain
1362 struct ohci_xfer *ox, *tmp; local in function:ohci_intr1
2312 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_abortx
2703 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_ctrl_init
2753 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_ctrl_fini
2791 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_ctrl_start
3039 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_bulk_fini
3072 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_bulk_start
3204 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_intr_init
3234 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_intr_fini
3267 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_intr_start
3485 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_isoc_init
3530 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_isoc_fini
3568 struct ohci_xfer *ox = OHCI_XFER2OXFER(xfer); local in function:ohci_device_isoc_enter
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/
msan_test.cc 4292 U4 ox = rand(); //NOLINT local in function:BinaryOpOriginTest
4294 T *x = GetPoisonedO<T>(0, ox, 0);
4301 EXPECT_EQ(true, __msan_origin_is_descendant_or_same(origin, ox) ||
4314 *x = *GetPoisonedO<T>(0, ox);
4319 EXPECT_POISONED_O(*z, ox);
4320 EXPECT_ORIGIN(ox, __msan_get_origin(z));
4396 int ox = __LINE__; local in function:MemCpyTest
4402 __msan_set_origin(x, N * sizeof(T), ox);
4407 EXPECT_POISONED_O(y[0], ox);
4408 EXPECT_POISONED_O(y[N/2], ox);
    [all...]

Completed in 22 milliseconds