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

  /src/usr.sbin/sysinst/
upgrade.c 144 char newx[MAXPATHLEN], oldx[MAXPATHLEN]; local
146 strlcpy(newx, xroot, sizeof(newx));
147 strlcat(newx, "/bin/X", sizeof(newx));
148 strlcpy(oldx, newx, sizeof(oldx));
152 if (target_symlink_exists_p(newx)) {
163 printf("saving %s as %s ...", newx, oldx);
167 mv_within_target_or_die(newx, oldx);
180 char newx[MAXPATHLEN], oldx[MAXPATHLEN] local
    [all...]
  /src/lib/libcurses/
ins_wch.c 90 int cw, pcw, x, y, sx, ex, newx, i; local
148 newx = sx + win->ch_off;
149 if (newx < *lnp->firstchp)
150 *lnp->firstchp = newx;
210 newx = win->maxx - 1 + win->ch_off;
211 if (newx > *lnp->lastchp)
212 *lnp->lastchp = newx;
add_wchstr.c 140 int cw, x, y, sx, ex, newx, i, cnt; local
192 newx = sx + win->ch_off;
193 if (newx < *lnp->firstchp)
194 *lnp->firstchp = newx;
295 newx = ex + win->ch_off;
296 if (newx > *lnp->lastchp)
297 *lnp->lastchp = newx;
addbytes.c 209 int newx, i, wcols; local
219 newx = tabsize - (*x % tabsize);
229 if (*x + newx > win->maxx - 1)
230 newx = win->maxx - *x - 1;
233 for (i = 0; i < newx; i++) {
294 newx = *x + win->ch_off;
300 if (newx < *(*lp)->firstchp)
301 *(*lp)->firstchp = newx;
303 if (newx > *(*lp)->lastchp)
304 *(*lp)->lastchp = newx;
    [all...]
ins_wstr.c 138 int width, len, lx, sx, x, y, tx, ty, cw, pcw, newx, tn, w; local
294 newx = sx + win->ch_off;
295 if (newx < *lnp->firstchp)
296 *lnp->firstchp = newx;
417 newx = win->maxx - 1 + win->ch_off;
418 if (newx > *lnp->lastchp)
419 *lnp->lastchp = newx;
refresh.c 155 int newy, newx; local
212 newx = wbegx + dwin->curx - begx;
217 && 0 <= newx && newx < screen->__virtscr->maxx)
218 screen->__virtscr->curx = newx;
1325 "lx = %d, newy = %d, newx = %d, lch = %d\n",
  /src/external/lgpl3/mpfr/dist/tests/
tstckintc.c 86 newx = (mpfr_ptr) (long *) (void *) old_stack;
200 mpfr_ptr newx; local
220 newx = (mpfr_ptr) (long *) (void *) old_stack;
230 mpfr_custom_move ((i1++, VOIDP_CAST(newx)), (i2++, newx2));
238 return newx;
247 mpfr_ptr newx; local
251 newx = (mpfr_ptr) (long *) (void *) old_stack;
252 (mpfr_custom_move) (newx, old_stack + ALIGNED (sizeof (mpfr_t)));
254 return newx;
  /src/external/bsd/nvi/dist/motif_l/
m_vi.c 1396 int newx, newy;
1398 newx = this_screen->curx;
1402 for ( end = start = CharAt( this_screen, newy, newx );
1403 (isalnum( (unsigned char)*end ) || *end == '_') && (newx < this_screen->cols);
1404 end++, newx++
1454 __vi_move_caret(xvi_screen *this_screen, int newy, int newx)
1460 this_screen->curx = newx;
1380 int newx, newy; local
  /src/external/gpl3/gcc/dist/gcc/
recog.cc 1100 rtx newx = NULL_RTX;
1112 newx = simplify_unary_operation (code, mode, XEXP (x, 0), op0_mode);
1127 newx = simplify_gen_binary (code, mode, XEXP (x, 1), XEXP (x, 0));
1129 newx = simplify_binary_operation (code, mode,
1146 newx = simplify_relational_operation (code, mode, op_mode,
1162 newx = simplify_ternary_operation (code, mode, op0_mode,
1178 newx = simplify_subreg (mode, inner, inner_mode, SUBREG_BYTE (x));
1180 if (!newx
1214 newx = op1;
1266 else if (newx && !rtx_equal_p (x, newx)
1098 rtx newx = NULL_RTX; local
    [all...]
simplify-rtx.cc 322 rtx newx;
326 newx = DECL_RTL (decl);
328 if (MEM_P (newx))
330 rtx n = XEXP (newx, 0), o = XEXP (x, 0);
335 old address X is identical to NEWX, or if X is of the
336 form (plus NEWX OFFSET), or the NEWX is of the form
343 x = adjust_address_nv (newx, mode, offset);
345 else if (GET_MODE (x) == GET_MODE (newx)
347 x = newx;
318 rtx newx; local
413 rtx op0, op1, op2, newx, op; local
    [all...]
optabs.cc 2043 rtx newx;
2046 newx = expand_binop (word_mode,
2058 newx, x,
2068 emit_move_insn (target_piece, newx);
2037 rtx newx; local
  /src/external/gpl3/gcc.old/dist/gcc/
recog.cc 1100 rtx newx = NULL_RTX;
1112 newx = simplify_unary_operation (code, mode, XEXP (x, 0), op0_mode);
1127 newx = simplify_gen_binary (code, mode, XEXP (x, 1), XEXP (x, 0));
1129 newx = simplify_binary_operation (code, mode,
1146 newx = simplify_relational_operation (code, mode, op_mode,
1162 newx = simplify_ternary_operation (code, mode, op0_mode,
1178 newx = simplify_subreg (mode, inner, inner_mode, SUBREG_BYTE (x));
1180 if (!newx
1214 newx = op1;
1266 else if (newx && !rtx_equal_p (x, newx)
1098 rtx newx = NULL_RTX; local
    [all...]
simplify-rtx.cc 322 rtx newx;
326 newx = DECL_RTL (decl);
328 if (MEM_P (newx))
330 rtx n = XEXP (newx, 0), o = XEXP (x, 0);
335 old address X is identical to NEWX, or if X is of the
336 form (plus NEWX OFFSET), or the NEWX is of the form
343 x = adjust_address_nv (newx, mode, offset);
345 else if (GET_MODE (x) == GET_MODE (newx)
347 x = newx;
318 rtx newx; local
413 rtx op0, op1, op2, newx, op; local
    [all...]
optabs.cc 2028 rtx newx;
2031 newx = expand_binop (word_mode,
2043 newx, x,
2053 emit_move_insn (target_piece, newx);
2022 rtx newx; local

Completed in 54 milliseconds