/src/lib/libcurses/ |
id_subwins.c | 49 __id_subwins(WINDOW *orig) 54 for (win = orig->nextp; win != orig; win = win->nextp) { 55 oy = win->begy - orig->begy; 58 &orig->alines[oy + y]->line[win->ch_off];
|
id_subwins.c | 49 __id_subwins(WINDOW *orig) 54 for (win = orig->nextp; win != orig; win = win->nextp) { 55 oy = win->begy - orig->begy; 58 &orig->alines[oy + y]->line[win->ch_off];
|
mvwin.c | 61 parent = win->orig; 102 WINDOW *orig; local in function:mvwin 113 orig = win->orig; 114 if (orig == NULL) { 115 orig = win; 121 } while (win != orig); 123 if (by < orig->begy || win->maxy + dy > orig->maxy) 125 if (bx < orig->begx || win->maxx + dx > orig->maxx [all...] |
mvwin.c | 61 parent = win->orig; 102 WINDOW *orig; local in function:mvwin 113 orig = win->orig; 114 if (orig == NULL) { 115 orig = win; 121 } while (win != orig); 123 if (by < orig->begy || win->maxy + dy > orig->maxy) 125 if (bx < orig->begx || win->maxx + dx > orig->maxx [all...] |
newwin.c | 49 static WINDOW *__subwin(WINDOW *orig, int nlines, int ncols, int by, int bx, 55 * are relative to the origin of window orig instead of absolute. 58 derwin(WINDOW *orig, int nlines, int ncols, int by, int bx) 61 return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx, 68 * are relative to the origin of window orig instead of absolute. 71 subpad(WINDOW *orig, int nlines, int ncols, int by, int bx) 74 return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx [all...] |
newwin.c | 49 static WINDOW *__subwin(WINDOW *orig, int nlines, int ncols, int by, int bx, 55 * are relative to the origin of window orig instead of absolute. 58 derwin(WINDOW *orig, int nlines, int ncols, int by, int bx) 61 return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx, 68 * are relative to the origin of window orig instead of absolute. 71 subpad(WINDOW *orig, int nlines, int ncols, int by, int bx) 74 return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx [all...] |
move.c | 95 while (win->orig) { 96 wmove(win->orig, win->cury + win->begy - win->orig->begy, 97 win->curx + win->begx - win->orig->begx); 98 win = win->orig;
|
move.c | 95 while (win->orig) { 96 wmove(win->orig, win->cury + win->begy - win->orig->begy, 97 win->curx + win->begx - win->orig->begx); 98 win = win->orig;
|
getyx.c | 54 if (win->orig == NULL) 57 return win->begy - win->orig->begy; 72 if (win->orig == NULL) 75 return win->begx - win->orig->begx;
|
getyx.c | 54 if (win->orig == NULL) 57 return win->begy - win->orig->begy; 72 if (win->orig == NULL) 75 return win->begx - win->orig->begx;
|
resize.c | 63 if (win->orig != NULL) { 65 if (win->begy > win->orig->begy + win->orig->maxy) 66 win->begy = win->orig->begy + win->orig->maxy - 1; 67 if (win->begy + nlines > win->orig->begy + win->orig->maxy) 70 nlines += win->orig->begy + win->orig->maxy - win->begy; 73 if (win->begx > win->orig->begx + win->orig->maxx [all...] |
resize.c | 63 if (win->orig != NULL) { 65 if (win->begy > win->orig->begy + win->orig->maxy) 66 win->begy = win->orig->begy + win->orig->maxy - 1; 67 if (win->begy + nlines > win->orig->begy + win->orig->maxy) 70 nlines += win->orig->begy + win->orig->maxy - win->begy; 73 if (win->begx > win->orig->begx + win->orig->maxx [all...] |
/src/usr.sbin/acpitools/aml/ |
aml_obj.c | 60 aml_copy_object(struct aml_environ *env, union aml_object *orig) 65 if (orig == NULL) 67 switch (orig->type) { 70 ret->buffer.size = (orig->regfield.bitlen / 8) + 71 ((orig->regfield.bitlen % 8) ? 1 : 0); 76 aml_store_to_object(env, orig, ret); 80 ret = aml_alloc_object(0, orig); 84 if (1 || orig != &env->tempobject) { /* XXX */ 85 if (orig->type == aml_t_buffer) { 86 if (orig->buffer.size == 0) [all...] |
aml_obj.c | 60 aml_copy_object(struct aml_environ *env, union aml_object *orig) 65 if (orig == NULL) 67 switch (orig->type) { 70 ret->buffer.size = (orig->regfield.bitlen / 8) + 71 ((orig->regfield.bitlen % 8) ? 1 : 0); 76 aml_store_to_object(env, orig, ret); 80 ret = aml_alloc_object(0, orig); 84 if (1 || orig != &env->tempobject) { /* XXX */ 85 if (orig->type == aml_t_buffer) { 86 if (orig->buffer.size == 0) [all...] |
/src/sbin/newbtconf/ |
newbtconf.sh | 82 orig=etc.current 85 orig=$2 88 if [ -z "`expr $orig : 'etc.\(.*\)'`" ] ; then 89 orig=etc.$orig 92 if [ ! -d /etc/$orig ] ; then 93 echo "Original directory /etc/$orig does not exist." 97 cd /etc/$orig
|
newbtconf.sh | 82 orig=etc.current 85 orig=$2 88 if [ -z "`expr $orig : 'etc.\(.*\)'`" ] ; then 89 orig=etc.$orig 92 if [ ! -d /etc/$orig ] ; then 93 echo "Original directory /etc/$orig does not exist." 97 cd /etc/$orig
|
/src/usr.bin/find/ |
misc.c | 61 * Replace occurrences of {} in orig with path, and place it in a malloced 65 brace_subst(char *orig, char **store, char *path, size_t *len) 71 for (p = *store; (ch = *orig) != '\0'; ++orig) 72 if (ch == '{' && orig[1] == '}') { 74 rest = strlen(&orig[2]); 91 ++orig;
|
misc.c | 61 * Replace occurrences of {} in orig with path, and place it in a malloced 65 brace_subst(char *orig, char **store, char *path, size_t *len) 71 for (p = *store; (ch = *orig) != '\0'; ++orig) 72 if (ch == '{' && orig[1] == '}') { 74 rest = strlen(&orig[2]); 91 ++orig;
|
/src/games/monop/ |
misc.c | 130 MON *orig; /* remember starting monop ptr */ local in function:set_ownlist 178 orig = op->sqr->desc->mon_desc; 181 while (op && op->sqr->desc->mon_desc == orig) { 197 if (orig == NULL) { 199 "orig = %p\n", orig); 223 printf("orig->num_in = %d\n", orig->num_in); 225 if (num == orig->num_in) 226 is_monop(orig, pl) [all...] |
misc.c | 130 MON *orig; /* remember starting monop ptr */ local in function:set_ownlist 178 orig = op->sqr->desc->mon_desc; 181 while (op && op->sqr->desc->mon_desc == orig) { 197 if (orig == NULL) { 199 "orig = %p\n", orig); 223 printf("orig->num_in = %d\n", orig->num_in); 225 if (num == orig->num_in) 226 is_monop(orig, pl) [all...] |
/src/usr.bin/seq/ |
seq.c | 344 unescape(char *orig) 346 char c, *cp, *new = orig; 349 for (cp = orig; (*orig = *cp); cp++, orig++) { 355 *orig = '\a'; 358 *orig = '\b'; 361 *orig = '\x1B'; 364 *orig = '\f'; 367 *orig = '\n' [all...] |
seq.c | 344 unescape(char *orig) 346 char c, *cp, *new = orig; 349 for (cp = orig; (*orig = *cp); cp++, orig++) { 355 *orig = '\a'; 358 *orig = '\b'; 361 *orig = '\x1B'; 364 *orig = '\f'; 367 *orig = '\n' [all...] |
/src/tests/usr.bin/patch/ |
t_patch.sh | 33 --- ./longlines.orig 2019-10-16 09:25:30.667656644 +0000 82 touch to_patch.orig 94 atf_check [ -f to_patch.orig ] 95 origfile_cksum=$(sha256 -n to_patch.orig | cut -d' ' -f1) 120 atf_check [ ! -f to_patch.orig ] 127 atf_check [ ! -f to_patch.orig ] 133 atf_check [ ! -f to_patch.orig ]
|
t_patch.sh | 33 --- ./longlines.orig 2019-10-16 09:25:30.667656644 +0000 82 touch to_patch.orig 94 atf_check [ -f to_patch.orig ] 95 origfile_cksum=$(sha256 -n to_patch.orig | cut -d' ' -f1) 120 atf_check [ ! -f to_patch.orig ] 127 atf_check [ ! -f to_patch.orig ] 133 atf_check [ ! -f to_patch.orig ]
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_vce_v2_0.c | 80 u32 orig, tmp; local in function:vce_v2_0_set_dyn_cg 92 orig = tmp = RREG32(VCE_UENC_CLOCK_GATING); 95 if (tmp != orig) 98 orig = tmp = RREG32(VCE_UENC_REG_CLOCK_GATING); 100 if (tmp != orig)
|