| /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/nspire/ |
| Makefile | 3 nspire-cx.dtb \
|
| /src/sys/arch/powerpc/fpu/ |
| fpu_implode.c | 85 round(struct fpemu *fe, struct fpn *fp, int *cx) 107 *cx |= FPSCR_FI; /* inexact */ 143 *cx |= FPSCR_FR; 197 round_int(struct fpn *fp, int *cx, int rn, int sign, int odd) 207 *cx |= FPSCR_FI; 226 *cx |= FPSCR_FR; 234 fpu_ftoi(struct fpemu *fe, struct fpn *fp, int *cx, int rn) 242 *cx |= FPSCR_VXSNAN; 271 *cx |= tmp_cx; 278 *cx |= FPSCR_VXCVI 512 int cx, rn; local [all...] |
| /src/external/bsd/tmux/dist/ |
| grid-reader.c | 24 grid_reader_start(struct grid_reader *gr, struct grid *gd, u_int cx, u_int cy) 27 gr->cx = cx; 33 grid_reader_get_cursor(struct grid_reader *gr, u_int *cx, u_int *cy) 35 *cx = gr->cx; 58 if (wrap && gr->cx >= px && gr->cy < gr->gd->hsize + gr->gd->sy - 1) { 61 } else if (gr->cx < px) { 62 gr->cx++; 63 while (gr->cx < px) [all...] |
| screen-write.c | 87 screen_write_set_cursor(struct screen_write_ctx *ctx, int cx, int cy) 94 if (cx != -1 && (u_int)cx == s->cx && cy != -1 && (u_int)cy == s->cy) 97 if (cx != -1) { 98 if ((u_int)cx > screen_size_x(s)) /* allow last column */ 99 cx = screen_size_x(s) - 1; 100 s->cx = cx; 183 ttyctx->ocx = s->cx; 574 u_int xx, yy, cx = s->cx, cy = s->cy; local 650 u_int cx, cy, i; local 686 u_int cx, cy, i; local 714 u_int cx, cy, i, j, width = menu->width; local 763 u_int cx, cy, i; local 825 u_int cx, cy, px, py; local 902 u_int cx = s->cx, cy = s->cy; local 929 u_int cx = s->cx, cy = s->cy; local 958 u_int cx = s->cx, cy = s->cy; local 978 u_int cx = s->cx, cy = s->cy; local 999 u_int cx = s->cx, cy = s->cy; local 1782 u_int y, cx, cy, last, items = 0; local 2100 u_int n, cx = s->cx, cy = s->cy; local 2318 u_int x, y, sx, sy, cx = s->cx, cy = s->cy, i, lines; local [all...] |
| format-draw.c | 132 if (width >= list->cx) { 143 if (start + width > list->cx) 144 start = list->cx - width; 147 if (start != 0 && width > list_left->cx) { 149 screen_write_fast_copy(octx, list_left, 0, 0, list_left->cx, 1); 150 offset += list_left->cx; 151 start += list_left->cx; 152 width -= list_left->cx; 154 if (start + width < list->cx && width > list_right->cx) { [all...] |
| screen.c | 107 s->cx = 0; 304 u_int cx = s->cx, cy = s->grid->hsize + s->cy; local 310 __func__, sx, sy, screen_size_x(s), screen_size_y(s), s->cx, s->cy, 311 cx, cy); 332 screen_reflow(s, sx, &cx, &cy, cursor); 335 s->cx = cx; 338 s->cx = 0; 342 log_debug("%s: cursor finished at %u,%u = %u,%u", __func__, s->cx, [all...] |
| /src/sys/arch/i386/stand/boot/ |
| biosboot.S | 63 2: pop %cx 64 sub $2b, %cx /* %ax is offset */ 65 test $0xf, %cx /* check code seg aligned */ 69 shr $4, %cx 70 add %cx, %ax /* segment staring at boot_start */ 87 cmp $boot_start_1 - boot_params, %cx 89 mov $boot_start_1 - boot_params, %cx 144 movw $16, %cx
|
| /src/sys/arch/arc/dev/ |
| pccons.c | 147 int cx, cy; /* escape parameters */ member in struct:video_state 1038 vs.cx = vs.cy = 0; 1110 vs.cx = vs.cy = 0; 1141 if (!vs.cx) 1147 case 'A': { /* back cx rows */ 1148 int cx = vs.cx; local 1149 if (cx <= 0) 1150 cx = 1; 1152 cx %= vs.nrow 1162 int cx = vs.cx; local 1176 int cx = vs.cx, local 1195 int cx = vs.cx, local 1260 int cx = vs.cx, local 1279 int cx = vs.cx, local 1304 int cx = vs.cx; local 1329 int cx = vs.cx, local 1354 int cx = vs.cx; local [all...] |
| /src/sys/arch/i386/stand/mbr/ |
| gptmbr.S | 89 movw $(512/2), %cx 102 xorw %cx, %cx 109 shrw %cx /* Bit 0 = fixed disk subset */ 123 andw $0x3f, %cx /* Sector count */ 125 pushw %cx /* -2(%bp) Save sectors on the stack */ 128 mulw %cx /* Heads*sectors -> sectors per cylinder */ 146 movw (80+6)(%bp),%cx /* NumberOfPartitionEntries */ 149 pushw %cx 150 mulw %cx [all...] |
| /src/games/hack/ |
| hack.do_name.c | 81 int cx, cy, i, c; local 84 cx = u.ux; 86 curs(cx, cy + 2); 90 if (1 <= cx + xdir[i] && cx + xdir[i] <= COLNO) 91 cx += xdir[i]; 110 curs(cx, cy + 2); 112 cc.x = cx; 122 int cx, cy; local 127 cx = cc.x [all...] |
| /src/external/bsd/less/dist/lesstest/ |
| lt_screen.c | 41 int cx; member in struct:ScreenState 64 screen.cx = 0; 183 if (x == screen.cx && y == screen.cy) 196 screen.cx = x; 202 screen.cx = 0; 207 if (screen.cx <= 0) return 0; 208 --screen.cx; 228 if (verbose) fprintf(stderr, "[%d,%d] set_attr(%d)=%d\n", screen.cx, screen.cy, attr, screen.curr_attr); 234 if (verbose) fprintf(stderr, "[%d,%d] clr_attr(%d)=%d\n", screen.cx, screen.cy, attr, screen.curr_attr); 269 fprintf(stderr, "[%d,%d] unrecognized color %d\n", screen.cx, screen.cy, color) [all...] |
| /src/external/lgpl3/mpfr/dist/tests/ |
| tsinh_cosh.c | 48 mpfr_t s, c, sx, cx; local 51 mpfr_inits2 (MPFR_PREC(x), s, c, sx, cx, (mpfr_ptr) 0); local 53 isc = mpfr_sinh_cosh (sx, cx, x, rnd); 57 if (!mpfr_equal_p (s, sx) || !mpfr_equal_p (c, cx)) 58 failed (x, s, sx, c, cx); 61 mpfr_clears (s, c, sx, cx, (mpfr_ptr) 0);
|
| /src/external/gpl2/groff/dist/font/devdvi/generate/ |
| CompileFonts | 5 mode=cx
|
| /src/sys/arch/bebox/stand/boot/ |
| vga.c | 65 int cx; /* the first escape seq argument */ member in struct:screen 214 d->so = d->cx; 249 if (d->cx > ROW) 250 d->cx = ROW; 253 if (d->cx == 0 || d->cy == 0) { 257 d->cp = base + (d->cx - 1) * COL + d->cy - 1; 263 if (d->cx) 264 d->cx = 1; /* block */ 266 d->cx = 12; /* underline */ 268 outb(addr_6845+1, d->cx); [all...] |
| /src/sys/arch/prep/stand/boot/ |
| vga.c | 67 int cx; /* the first escape seq argument */ member in struct:screen 216 d->so = d->cx; 251 if (d->cx > ROW) 252 d->cx = ROW; 255 if (d->cx == 0 || d->cy == 0) { 259 d->cp = base + (d->cx - 1) * COL + d->cy - 1; 265 if (d->cx) 266 d->cx = 1; /* block */ 268 d->cx = 12; /* underline */ 270 outb(addr_6845+1, d->cx); [all...] |
| /src/sys/arch/i386/stand/bootxx/ |
| pbr.S | 129 xor %cx, %cx /* don't trust values of ds, es or ss */ 130 mov %cx, %ss 131 mov %cx, %sp 132 mov %cx, %es 137 mov %cx, %ds 146 incw %cx /* track zero sector 1 */ 226 movw 2(%di), %cx /* ch=cyl, cl=sect */ 275 and $0x3f, %cx /* number of sectors */ 276 mul %cx [all...] |
| /src/sys/arch/hp300/dev/ |
| diofb_mono.c | 119 uint16_t dx, uint16_t dy, uint16_t cx, uint16_t cy, int16_t rop, 152 if (cx <= 32) { 164 getandputrop(psrc, srcBit, dstBit, cx, pdst, rop); 169 maskbits(dx, cx, startmask, endmask, nlMiddle); 175 nend = (dx + cx) & 0x1f; 231 pdstLine += ((dx + cx) >> 5); 232 psrcLine += ((sx + cx) >> 5);
|
| /src/sys/external/bsd/drm2/dist/drm/vboxvideo/ |
| vbox_irq.c | 88 hintsj->dx + (hintsj->cx & 0x8fff) && 89 hintsi->dx + (hintsi->cx & 0x8fff) > 105 vbox->last_mode_hints[i].cx & 0x8fff; 143 vbox_conn->mode_hint.width = hints->cx; 158 hints->cx * 4, hints->cx,
|
| /src/sys/arch/i386/stand/lib/ |
| biosdelay.S | 42 * %cx = time interval (high) 57 movw 22(%esp), %cx
|
| dump_eax.S | 44 movw $8, %cx
|
| message.S | 75 mov $16, %cx /* about a second */ 76 int $0x15 /* delay cx:dx usecs */
|
| /src/external/lgpl3/mpfr/dist/src/ |
| add1sp.c | 135 mpfr_exp_t cx = MPFR_GET_EXP (c); local 148 if (bx == cx) 163 if (bx < cx) /* swap b and c */ 167 tx = bx; bx = cx; cx = tx; 170 MPFR_ASSERTD (bx > cx); 171 d = (mpfr_uexp_t) bx - cx; 262 mpfr_exp_t cx = MPFR_GET_EXP (c); local 275 if (bx == cx) 285 if (bx < cx) /* swap b and c * 367 mpfr_exp_t cx = MPFR_GET_EXP (c); local 488 mpfr_exp_t cx = MPFR_GET_EXP (c); local 620 mpfr_exp_t cx = MPFR_GET_EXP (c); local [all...] |
| /src/usr.bin/config/ |
| util.c | 389 struct condexpr *cx; local 391 cx = emalloc(sizeof(*cx)); 392 cx->cx_type = type; 396 cx->cx_atom = NULL; 400 cx->cx_not = NULL; 404 cx->cx_and.left = NULL; 405 cx->cx_and.right = NULL; 409 cx->cx_or.left = NULL; 410 cx->cx_or.right = NULL [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/ |
| i386-word.exp | 39 set word_regs(3) cx
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/ |
| i386-word.exp | 39 set word_regs(3) cx
|