/src/sys/arch/x68k/stand/loadbsd/ |
loadbsd.c | 302 union dos_fcb *fcb; local in function:read_kernel 313 if ((int)(fcb = DOS_GET_FCB_ADR(fd)) < 0) 317 * XXX FCB is in supervisor area 319 /*if (fcb->blk.mode != 0)*/ 320 if (IOCS_B_BPEEK((char *)fcb + 1) & 0x80) 323 /*filesize = fcb->blk.size;*/ 324 filesize = IOCS_B_LPEEK(&fcb->blk.size);
|
/src/sys/external/bsd/drm2/linux/ |
linux_dma_fence.c | 530 * dma_fence_add_callback(fence, fcb, fn) 535 * fcb) when it is signalled, and return 0. 537 * The fence uses memory allocated by the caller in fcb from the 542 dma_fence_add_callback(struct dma_fence *fence, struct dma_fence_cb *fcb, 565 SDT_PROBE2(sdt, drm, fence, add_callback, fence, fcb); 566 fcb->func = fn; 567 TAILQ_INSERT_TAIL(&fence->f_callbacks, fcb, fcb_entry); 568 fcb->fcb_onqueue = true; 574 fcb->func = NULL; 575 fcb->fcb_onqueue = false 766 struct dma_fence_cb *fcb, *next; local in function:dma_fence_signal_locked 797 struct dma_fence_cb fcb; member in struct:wait_any 1180 struct dma_fence_cb *fcb, *next; local in function:__dma_fence_signal_wake [all...] |
/src/games/gomoku/ |
pickmove.c | 434 union comboval ocb, fcb; local in function:makecombo2 466 fcb.s = fsp->s_fval[curcolor][r].s; 467 if (fcb.cv_force >= 6) 475 if ((f == 0 && fcb.cv_win != 0) || fcb.s == 0x101) { 476 fcb.cv_force++; 477 fcb.cv_win = 0; 481 int c = fcb.cv_force + ocb.cv_force - 3; 484 int n = fcb.cv_force + fcb.cv_win - 1 571 union comboval fcb, cb; local in function:addframes [all...] |
/src/lib/libpuffs/ |
framebuf.c | 57 puffs_framev_cb fcb; /* non-blocking callback */ member in struct:puffs_framebuf 332 } else if (pufbuf->fcb) { 334 pufbuf->fcb(pu, pufbuf, pufbuf->fcb_arg, error); 371 pufbuf->fcb = NULL; 394 struct puffs_framebuf *pufbuf, puffs_framev_cb fcb, void *arg, 403 pufbuf->fcb = fcb; 428 pufbuf->fcb = NULL; 465 pufbuf->fcb = NULL; 496 pufbuf->fcb = NULL [all...] |
/src/sys/arch/powerpc/booke/dev/ |
pq3etsec.c | 90 #define M_HASFCB M_LINK2 /* tx packet has FCB prepended */ 1546 const struct rxfcb *fcb) 1548 if (fcb->rxfcb_flags & RXFCB_VLN) { 1549 vlan_set_tag(m, fcb->rxfcb_vlctl); 1551 if ((fcb->rxfcb_flags & RXFCB_IP) == 0 1552 || (fcb->rxfcb_flags & (RXFCB_CIP | RXFCB_CTU)) == 0) 1555 if ((fcb->rxfcb_flags & (RXFCB_IP6 | RXFCB_CIP)) == RXFCB_CIP) { 1557 if (fcb->rxfcb_flags & RXFCB_EIP) 1560 if ((fcb->rxfcb_flags & RXFCB_CTU) == RXFCB_CTU) { 1562 if (fcb->rxfcb_flags & RXFCB_IP6 1590 struct rxfcb fcb = *mtod(m, struct rxfcb *); local in function:pq3etsec_rx_input 2058 struct txfcb fcb; local in function:pq3etsec_tx_offload [all...] |