/src/games/warp/ |
move.c | 37 bounce(OBJECT *obj) function in typeref:typename:void 521 bounce(curobj); 523 bounce(biggie);
|
/src/games/rogue/ |
zap.c | 104 bounce((short)wand->which_kind, d, row, col, 0); 280 bounce(short ball, short dir, short row, short col, short r) function in typeref:typename:void 404 bounce(ball, new_dir, orow, ocol, r);
|
/src/sys/dev/podulebus/ |
if_ei.c | 293 u_int16_t *bounce = NULL; local in function:ei_copyout 300 bounce = (u_int16_t *) malloc(size, M_DEVBUF, M_NOWAIT); 301 if (bounce == NULL) 304 memcpy(bounce, src, size); 305 src = bounce; 324 if (bounce != NULL) 325 free(bounce, M_DEVBUF);
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_ioctl.c | 147 static int vmw_fill_compat_cap(struct vmw_private *dev_priv, void *bounce, 151 (struct svga_3d_compat_cap *) bounce; 190 void *bounce; local in function:vmw_get_cap_3d_ioctl 211 bounce = vzalloc(size); 212 if (unlikely(bounce == NULL)) { 213 DRM_ERROR("Failed to allocate bounce buffer for 3D caps.\n"); 219 uint32_t *bounce32 = (uint32_t *) bounce; 233 ret = vmw_fill_compat_cap(dev_priv, bounce, size); 238 memcpy(bounce, &fifo_mem[SVGA_FIFO_3D_CAPS], size); 241 ret = copy_to_user(buffer, bounce, size) [all...] |
/src/games/hack/ |
hack.zap.c | 525 int bounce = 0; local in function:buzz 529 bounce = 1; 531 if (!bounce || rn2(2)) 532 bounce = 2; 534 switch (bounce) { 614 int bounce = 0, rmn; local in function:buzz 624 bounce = 1; 627 if (!bounce || rn2(2)) 628 bounce = 2; 630 switch (bounce) { [all...] |
/src/lib/libpuffs/ |
null.c | 266 void *bounce; local in function:puffs_null_fs_nodetofh 270 bounce = NULL; 272 bounce = malloc(*fidsize + FHANDLE_HEADERLEN); 273 if (!bounce) 277 if (getfh(PNPATH(pn), bounce, fidsize) == -1) 280 memcpy(fid, (uint8_t *)bounce + FHANDLE_HEADERLEN, 292 free(bounce);
|
/src/sys/arch/arm/ti/ |
ti_sdhc.c | 487 /* Setup bounce buffer */ 526 bool bounce; local in function:ti_sdhc_edma_xfer_data 530 bounce = false; 534 bounce = true; 539 bounce = true; 542 if (bounce) { 557 if (bounce) {
|
/src/usr.bin/mail/ |
cmd3.c | 529 * and append that list to the bounce address(es). 544 (void)printf("bounce failed for message %d\n", msgno); 557 bounce(void *v) function in typeref:typename:PUBLIC int 567 /* setup the bounce tab */
|
/src/sys/arch/acorn32/podulebus/ |
sbicvar.h | 78 u_char* bounce; /* Bounce buffer for this device */ member in struct:sbic_tinfo
|
/src/sys/arch/amiga/dev/ |
sbicvar.h | 69 #define ACB_BBUF 0x10 /* DMA input needs to be copied from bounce */ 76 u_char *sc_dmausrbuf; /* user buffer kva - for bounce copy */ 77 u_long sc_dmausrlen; /* length of bounce copy */ 93 u_char* bounce; /* Bounce buffer for this device */ member in struct:sbic_tinfo
|
/src/sys/dev/scsipi/ |
cd.c | 572 struct cdbounce *bounce = bp->b_private; local in function:cd_bounce_buffer_done 573 struct buf *obp = bounce->obp; 575 if (bp == bounce->lbp) { 576 if ((bounce->lerr = bp->b_error) == 0) 577 memcpy(obp->b_data, (char *)bp->b_data + bounce->head, bounce->lcount); 578 bounce->lbp = NULL; 581 if (bp == bounce->rbp) { 582 if ((bounce->rerr = bp->b_error) == 0) 583 memcpy((char *)obp->b_data + bounce->lcount, bp->b_data, bounce->rcount) 648 struct cdbounce *bounce; local in function:cd_make_bounce 736 struct cdbounce *bounce = NULL; local in function:cdstrategy [all...] |