HomeSort by: relevance | last modified time | path
    Searched refs:sy (Results 1 - 25 of 95) sorted by relevancy

1 2 3 4

  /src/sys/sys/
syscallvar.h 59 sy_call(const struct sysent *sy, struct lwp *l, const void *uap,
64 l->l_sysent = sy;
65 error = (*sy->sy_call)(l, uap, rval);
72 sy_invoke(const struct sysent *sy, struct lwp *l, const void *uap,
76 (sy->sy_flags & SYCALL_INDIRECT) == 0;
84 if (__predict_true(!(do_trace || KDTRACE_ENTRY(sy->sy_entry)))
85 || (error = trace_enter(code, sy, uap)) == 0) {
94 error = sy_call(sy, l, uap, rval);
97 if (__predict_false(do_trace || KDTRACE_ENTRY(sy->sy_return))) {
98 trace_exit(code, sy, uap, rval, error)
    [all...]
systm.h 159 #define SYCALL_RET_64_P(sy) ((sy)->sy_flags & SYCALL_RET_64)
160 #define SYCALL_ARG_64_P(sy, n) ((sy)->sy_flags & (SYCALL_ARG0_64 << (n)))
161 #define SYCALL_ARG_64_MASK(sy) (((sy)->sy_flags >> 17) & 0xff)
162 #define SYCALL_ARG_PTR_P(sy) ((sy)->sy_flags & SYCALL_ARG_PTR)
163 #define SYCALL_NARGS64(sy) (((sy)->sy_flags >> 12) & 0x0f
    [all...]
  /src/games/hack/
hack.mkshop.c 93 int sh, sx, sy, i = -1; local in function:mkshop
158 sy = doors[sh].y;
163 else if (sy == sroom->ly - 1)
164 sy++;
165 else if (sy == sroom->hy + 1)
166 sy--;
187 if (!(shk = makemon(PM_SHK, sx, sy)))
196 ESHK->shk.y = sy;
204 for (sy = sroom->ly; sy <= sroom->hy; sy++)
227 int sh, sx, sy, i; local in function:mkzoo
303 int sx, sy, i, eelct = 0; local in function:mkswamp
    [all...]
hack.zap.c 497 buzz(int type, xchar sx, xchar sy, int dx, int dy)
521 sy += dy;
522 if ((lev = &levl[sx][sy])->typ)
523 Tmp_at(sx, sy);
526 if (cansee(sx - dx, sy - dy))
528 if (ZAP_POS(levl[sx][sy - dy].typ))
530 if (ZAP_POS(levl[sx - dx][sy].typ)) {
545 sy -= dy;
554 if (cansee(sx, sy)) {
555 mnewsym(sx, sy);
    [all...]
  /src/sys/kern/
kern_syscall.c 64 const struct sysent *sy; local in function:sys_nomodule
75 sy = l->l_sysent;
76 if (sy->sy_call != sys_nomodule) {
85 code = sy - em->e_sysent;
94 sy->sy_call == sys_nomodule) {
109 struct sysent *sy; local in function:syscall_establish
117 sy = em->e_sysent;
128 if (sy[sp[i].sp_code].sy_call != sys_nomodule &&
129 sy[sp[i].sp_code].sy_call != sys_nosys) {
138 sy[sp[i].sp_code].sy_call = sp[i].sp_call
147 struct sysent *sy; local in function:syscall_disestablish
    [all...]
kern_scdebug.c 136 const struct sysent *sy; local in function:scdebug_call
147 sy = &em->e_sysent[code];
150 (CODE_NOT_OK(code, em) || sy->sy_call == sys_nosys)) {
178 p->p_pid, l->l_lid, code, (uintptr_t)sy->sy_call);
182 if (sy->sy_narg > 7) {
187 } else if (sy->sy_narg > 6) {
192 } else if (sy->sy_narg > 5) {
196 } else if (sy->sy_narg == 5) {
202 if (sy->sy_narg > 3) {
207 } else if (sy->sy_narg > 2)
247 const struct sysent *sy; local in function:scdebug_ret
    [all...]
  /src/usr.bin/make/unit-tests/
shell-csh.exp 8 They chatted in the sy.
  /src/sys/arch/amiga/dev/
ite_cv.c 228 cv_clear(struct ite_softc *ip, int sy, int sx, int h, int w)
239 (((sy * ip->cols) + sx) << 2));
246 dst = &console_buffer[(sy * ip->cols) + sx];
253 cv_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir)
260 ((volatile char*)ip->grf->g_fbkva + (cv_rowc[sy] << 2));
266 len = cv_rowc[(ip->bottom_margin + 1 - sy)];
267 src = &console_buffer[cv_rowc[sy]];
269 if (count > sy) { /* boundary checks */
272 len -= cv_rowc[(count - sy)];
273 src += cv_rowc[(count - sy)];
    [all...]
ite_cv3d.c 228 cv3d_clear(struct ite_softc *ip, int sy, int sx, int h, int w)
239 (((sy * ip->cols) + sx) << 2));
246 dst = &console_buffer[(sy * ip->cols) + sx];
253 cv3d_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir)
260 ((volatile char*)ip->grf->g_fbkva + (cv3d_rowc[sy] << 2));
266 len = cv3d_rowc[(ip->bottom_margin + 1 - sy)];
267 src = &console_buffer[cv3d_rowc[sy]];
269 if (count > sy) { /* boundary checks */
272 len -= cv3d_rowc[(count - sy)];
273 src += cv3d_rowc[(count - sy)];
    [all...]
ite_rh.c 207 rh_clear(struct ite_softc *ip, int sy, int sx, int h, int w)
209 RZ3AlphaErase (ip->grf, sx, sy, w, h);
218 rh_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir)
228 screen_up(ip, sy - count, ip->bottom_margin, count);
230 memcpy(fb + (sy - count) * ip->cols, fb + sy * ip->cols,
231 4 * (ip->bottom_margin - sy + 1) * ip->cols);
236 screen_down(ip, sy, ip->bottom_margin, count);
238 memcpy(fb + (sy + count) * ip->cols, fb + sy * ip->cols
    [all...]
ite_rt.c 415 retina_clear(struct ite_softc *ip, int sy, int sx, int h, int w)
422 fb += 2 * (sy * ip->cols + sx);
437 retina_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir)
447 screen_up(ip, sy - count, ip->bottom_margin, count);
449 memcpy(fb + (sy - count) * ip->cols, fb + sy * ip->cols,
450 4 * (ip->bottom_margin - sy + 1) * ip->cols);
456 screen_down(ip, sy, ip->bottom_margin, count);
458 memcpy(fb + (sy + count) * ip->cols, fb + sy * ip->cols
    [all...]
ite_cl.c 69 void cl_clear(struct ite_softc *ip, int sy, int sx, int h, int w);
70 void cl_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir);
173 cl_clear(struct ite_softc *ip, int sy, int sx, int h, int w)
187 (sy * ip->cols) + sx;
198 cl_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir)
206 fb = (unsigned char*)__UNVOLATILE(ip->grf->g_fbkva) + sy * ip->cols;
212 (ip->bottom_margin + 1 - sy) * ip->cols);
216 (ip->bottom_margin + 1 - (sy + count)) * ip->cols);
231 (ip->bottom_margin + 1 - sy) * ip->cols);
235 (ip->bottom_margin + 1 - (sy + count)) * ip->cols)
    [all...]
ite_et.c 69 void et_clear(struct ite_softc *ip, int sy, int sx, int h, int w);
70 void et_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir);
179 et_clear(struct ite_softc *ip, int sy, int sx, int h, int w)
192 dst = (volatile unsigned char*)ip->grf->g_fbkva + (sy * ip->cols) + sx;
204 et_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir)
212 fb = (volatile unsigned char*)ip->grf->g_fbkva + sy * ip->cols;
218 (ip->bottom_margin + 1 - sy) * ip->cols);
222 (ip->bottom_margin + 1 - (sy + count)) * ip->cols);
237 (ip->bottom_margin + 1 - sy) * ip->cols);
241 (ip->bottom_margin + 1 - (sy + count)) * ip->cols)
    [all...]
ite_ul.c 392 void ulowell_clear(struct ite_softc *ip, int sy, int sx, int h, int w)
400 printf("ulowell_clear %d %d %d %d ->",sy,sx,h,w);
407 cmd[3] = sy * ip->ftheight;
415 void ulowell_scroll(struct ite_softc *ip, int sy, int sx, int count, int dir)
423 printf("ulowell_scroll %d %d %d %d ->",sy,sx,count,dir);
429 screen_up (ip, sy, ip->bottom_margin, count);
431 screen_down (ip, sy, ip->bottom_margin, count);
435 cmd[2] = sy * ip->ftheight;
439 cmd[6] = sy * ip->ftheight;
441 ulowell_clear (ip, sy, sx, 1, count)
    [all...]
  /src/sys/arch/aarch64/include/
asm.h 30 eret; dsb sy; isb
  /src/sys/arch/arm/arm32/
arm32_tlb.c 55 dsb(sy);
68 dsb(sy);
82 dsb(sy);
96 dsb(sy);
105 dsb(sy);
127 dsb(sy);
  /src/sys/arch/x68k/dev/
itevar.h 140 #define attrclr(ip, sy, sx, h, w) \
141 memset(ip->attrbuf + ((sy) * ip->cols) + (sx), 0, (h) * (w))
143 #define attrmov(ip, sy, sx, dy, dx, h, w) \
145 ip->attrbuf + ((sy) * ip->cols) + (sx), \
155 #define attrclr(ip, sy, sx, h, w)
156 #define attrmov(ip, sy, sx, dy, dx, h, w)
236 #define attrclr(ip, sy, sx, h, w)
237 #define attrmov(ip, sy, sx, dy, dx, h, w)
  /src/sys/arch/aarch64/aarch64/
idle_machdep.S 58 dsb sy
100 dsb sy
  /src/sys/arch/hp300/dev/
diofb_mono.c 118 diofb_mono_windowmove(struct diofb *fb, uint16_t sx, uint16_t sy,
142 if (sy < dy) { /* start at last scanline of rectangle */
143 psrcLine = ((uint32_t *)fb->fbkva) + ((sy + cy - 1) * width);
147 psrcLine = ((uint32_t *)fb->fbkva) + (sy * width);
  /src/sys/arch/hp300/stand/common/
ite_tc.c 114 topcat_windowmove(struct ite_data *ip, int sy, int sx, int dy, int dx, int h,
123 rp->source_y = sy;
ite_gb.c 124 gbox_windowmove(struct ite_data *ip, int sy, int sx, int dy, int dx, int h,
130 src = (sy * 1024) + sx; /* upper left corner in pixels */
ite_subr.c 203 ite_dio_clear(struct ite_data *ip, int sy, int sx, int h, int w)
206 (*ip->bmv)(ip, sy * ip->ftheight, sx * ip->ftwidth,
207 sy * ip->ftheight, sx * ip->ftwidth,
298 ite_dio_windowmove1bpp(struct ite_data *ip, int sy, int sx, int dy, int dx,
325 psrcLine = ((uint32_t *)ip->fbbase) + (sy * width);
  /src/sys/dev/rcons/
raster.h 199 extern int raster_op ARGS(( struct raster* dst, int dx, int dy, int w, int h, int rop, struct raster* src, int sx, int sy ));
202 extern int raster_op_noclip ARGS(( struct raster* dst, int dx, int dy, int w, int h, int rop, struct raster* src, int sx, int sy ));
208 extern int raster_replsrc ARGS(( struct raster* dst, int dx, int dy, int w, int h, int rop, struct raster* src, int sx, int sy ));
raster_op.c 559 struct raster* src, int sx, int sy)
576 if ( sy < 0 )
578 h += sy;
579 sy = 0;
583 if ( sy + h > src->height )
584 h = src->height - sy;
596 sy -= dy;
607 return raster_op_noclip( dst, dx, dy, w, h, rop, src, sx, sy );
641 struct raster* src, int sx, int sy)
658 srclin1 = RAS_ADDR( src, sx, sy );
    [all...]
  /src/sys/external/bsd/common/include/asm/
barrier.h 55 #define mb() dsb(sy)

Completed in 41 milliseconds

1 2 3 4