Searched defs:move (Results 1 - 16 of 16) sorted by relevance

/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dmove.c30 * move.c
40 static char rcsID[] = "$Header: /rd/src/libc/xcurses/rcs/move.c 1.1 1995/05/12 18:30:16 ant Exp $";
46 #undef move macro
49 move(y, x) function
53 __m_trace("move(%d, %d)", y, x);
56 return __m_return_code("move", ERR);
61 return __m_return_code("move", OK);
/osnet-11/usr/src/lib/libplot/plot/common/
H A Dmove.c38 move(short xi, short yi) function
/osnet-11/usr/src/lib/libplot/t300/common/
H A Dmove.c37 move(short xi, short yi) function
/osnet-11/usr/src/lib/libplot/t300s/common/
H A Dmove.c37 move(short xi, short yi) function
/osnet-11/usr/src/lib/libplot/t4014/common/
H A Dmove.c38 move(short xi, short yi) function
/osnet-11/usr/src/lib/libplot/t450/common/
H A Dmove.c36 move(short xi, short yi) function
/osnet-11/usr/src/lib/libcurses/screen/
H A D_move.c49 move(int y, int x) function
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dmove.c32 * move.c
42 static char rcsID[] = "$Header: /rd/src/libc/xcurses/rcs/move.c 1.1 "
49 #undef move macro
52 move(int y, int x) function
/osnet-11/usr/src/lib/libplot/vt0/common/
H A Dmove.c37 move(short xi, short yi) function
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DCopy.pm31 @EXPORT = qw(copy move);
180 sub move { subroutine
214 *mv = \&move;
275 move("/dev1/fileA","/dev2/fileB");
286 C<move>, which are useful for getting the contents of a file from
321 The C<move> function also takes two parameters: the current name
327 If possible, move() will simply rename the file. Otherwise, it copies
431 move("MacintoshHD:fileA", "DataHD:fileB"); # moves (don't copies) files from one
/osnet-11/usr/src/lib/libparted/common/libparted/fs/hfs/
H A Dreloc.c111 /* move blocks */
191 HfsCPrivateExtent* move; local
259 move = hfsc_cache_move_extent(cache, ref->ext_start, new_start);
260 if (!move) return -1; /* "cleanly" fail */
261 PED_ASSERT(move == ref, return -1); /* generate a bug */
H A Dreloc_plus.c114 /* move blocks */
192 HfsCPrivateExtent* move; local
314 move = hfsc_cache_move_extent(cache, ref->ext_start, new_start);
315 if (!move) return -1;
316 PED_ASSERT(move == ref, return -1);
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dvasnprintf.c5217 size_t move; local
5232 move = count - prefix_count;
5233 if (precision > move)
5236 size_t insert = precision - move;
5335 /* ENSURE_ALLOCATION will not move tmpsrc
5341 /* ENSURE_ALLOCATION will move the array
/osnet-11/usr/src/cmd/parted/
H A Dparted.c301 * If a move isn't allowed or is out of range it can't be selected.
304 * The preferred move is to the nearest allowed boundary of the part
315 EMoves move; local
340 move = MOVE_STILL;
344 move = MOVE_DOWN;
347 move = MOVE_UP;
351 move = MOVE_UP;
353 move = MOVE_DOWN;
355 *dist = ( move == MOVE_DOWN ? down_dist :
356 ( move
[all...]
/osnet-11/usr/src/lib/libxcurses2/h/
H A Dcurses.h470 extern int move(int, int);
736 #define mvaddch(y, x, ch) (move(y, x) ? ((ch), ERR) : addch(ch))
741 #define mvadd_wch(y, x, cp) (move(y, x) ? ((cp), ERR) : add_wch(cp))
748 (move(y, x) ? ((chs), (n), ERR) : addchnstr(chs, n))
751 (move(y, x) ? ((chs), ERR) : addchstr(chs))
765 (move(y, x) ? ((cp), (n), ERR) : add_wchnstr(cp, n))
768 (move(y, x) ? ((cp), ERR) : add_wchstr(cp))
782 (move(y, x) ? (s, n, ERR) : addnstr(s, n))
785 (move(y, x) ? (s, ERR) : addstr(s))
797 (move(
1074 #define move macro
[all...]
/osnet-11/usr/src/lib/libxcurses/h/
H A Dcurses.h727 extern int move(int, int);
835 #define mvaddch(y,x,ch) (move(y,x)?ERR:addch(ch))
839 #define mvadd_wch(y,x,cp) (move(y,x)?ERR:add_wch(cp))
844 #define mvaddchnstr(y,x,chs,n) (move(y,x)?ERR:addchnstr(chs,n))
845 #define mvaddchstr(y,x,chs) (move(y,x)?ERR:addchstr(chs))
852 #define mvadd_wchnstr(y,x,cp,n) (move(y,x)?ERR:add_wchnstr(cp,n))
853 #define mvadd_wchstr(y,x,cp) (move(y,x)?ERR:add_wchstr(cp))
860 #define mvaddnstr(y,x,s,n) (move(y,x)?ERR:addnstr(s,n))
861 #define mvaddstr(y,x,s) (move(y,x)?ERR:addstr(s))
868 #define mvaddnwstr(y,x,wcs,n) (move(
1055 #define move macro
[all...]

Completed in 82 milliseconds