Home
last modified time | relevance | path

Searched refs:direct (Results 1 – 25 of 390) sorted by relevance

12345678910>>...16

/NextBSD/sys/kern/
HDkern_timeout.c203 int direct);
228 cc_cce_cleanup(struct callout_cpu *cc, int direct) in cc_cce_cleanup() argument
231 cc_exec_curr(cc, direct) = NULL; in cc_cce_cleanup()
232 cc_exec_cancel(cc, direct) = false; in cc_cce_cleanup()
233 cc_exec_waiting(cc, direct) = false; in cc_cce_cleanup()
235 cc_migration_cpu(cc, direct) = CPUBLOCK; in cc_cce_cleanup()
236 cc_migration_time(cc, direct) = 0; in cc_cce_cleanup()
237 cc_migration_prec(cc, direct) = 0; in cc_cce_cleanup()
238 cc_migration_func(cc, direct) = NULL; in cc_cce_cleanup()
239 cc_migration_arg(cc, direct) = NULL; in cc_cce_cleanup()
[all …]
/NextBSD/contrib/gcc/config/i386/
HDathlon.md20 (define_attr "athlon_decode" "direct,vector,double"
30 (const_string "direct")))
32 (define_attr "amdfam10_decode" "direct,vector,double"
33 (const_string "direct"))
71 (define_reservation "athlon-direct" "nothing,
74 ;; Double instructions behaves like two direct instructions.
138 "athlon-direct,athlon-ieu")
153 "athlon-direct,athlon-agu,athlon-store")
165 "athlon-direct,(athlon-ieu+athlon-load)")
179 "athlon-direct,athlon-agu,nothing")
[all …]
/NextBSD/sys/dev/mlx5/mlx5_core/
HDmlx5_alloc.c64 buf->direct.buf = mlx5_dma_zalloc_coherent_node(dev, size, in mlx5_buf_alloc_node()
66 if (!buf->direct.buf) in mlx5_buf_alloc_node()
69 buf->direct.map = t; in mlx5_buf_alloc_node()
78 buf->direct.buf = NULL; in mlx5_buf_alloc_node()
101 buf->direct.buf = vmap(pages, buf->nbufs + 1, VM_MAP, in mlx5_buf_alloc_node()
104 if (!buf->direct.buf) in mlx5_buf_alloc_node()
129 dma_free_coherent(&dev->pdev->dev, buf->size, buf->direct.buf, in mlx5_buf_free()
130 buf->direct.map); in mlx5_buf_free()
133 if (BITS_PER_LONG == 64 && buf->direct.buf) in mlx5_buf_free()
134 vunmap(buf->direct.buf); in mlx5_buf_free()
[all …]
HDmlx5_wq.c86 wq->buf = wq_ctrl->buf.direct.buf; in mlx5_wq_cyc_create()
124 wq->buf = wq_ctrl->buf.direct.buf; in mlx5_cqwq_create()
163 wq->buf = wq_ctrl->buf.direct.buf; in mlx5_wq_ll_create()
/NextBSD/sbin/restore/
HDdirs.c120 static void putent(struct direct *);
123 static struct direct *searchdir(ino_t, char *);
136 struct direct nulldir; in extractdirs()
218 struct direct *dp; in treescan()
277 struct direct *
281 struct direct *dp; in pathsearch()
302 static struct direct *
305 struct direct *dp; in searchdir()
328 struct direct *dp; in putdir()
332 dp = (struct direct *)(buf + loc); in putdir()
[all …]
HDextern.h77 struct direct *pathsearch(const char *);
86 struct direct *rst_readdir(RST_DIR *);
HDinteractive.c90 static void mkentry(char *, struct direct *, struct afile *);
502 struct direct *dp; in printlist()
580 mkentry(char *name, struct direct *dp, struct afile *fp) in mkentry()
714 struct direct *dp; in glob_readdir()
737 struct direct *dp; in glob_stat()
/NextBSD/sys/ofed/drivers/net/mlx4/
HDalloc.c219 buf->direct.buf = dma_alloc_coherent(&dev->pdev->dev, in mlx4_buf_alloc()
221 if (!buf->direct.buf) in mlx4_buf_alloc()
224 buf->direct.map = t; in mlx4_buf_alloc()
231 memset(buf->direct.buf, 0, size); in mlx4_buf_alloc()
235 buf->direct.buf = NULL; in mlx4_buf_alloc()
263 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL); in mlx4_buf_alloc()
265 if (!buf->direct.buf) in mlx4_buf_alloc()
284 dma_free_coherent(&dev->pdev->dev, size, buf->direct.buf, in mlx4_buf_free()
285 buf->direct.map); in mlx4_buf_free()
287 if (BITS_PER_LONG == 64 && buf->direct.buf) in mlx4_buf_free()
[all …]
HDen_resources.c91 if (buf->direct.buf != NULL || buf->nbufs == 1) in mlx4_en_map_buffer()
101 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL); in mlx4_en_map_buffer()
103 if (!buf->direct.buf) in mlx4_en_map_buffer()
114 vunmap(buf->direct.buf); in mlx4_en_unmap_buffer()
/NextBSD/sys/dev/ifmlx4/
HDalloc.c219 buf->direct.buf = dma_alloc_coherent(&dev->pdev->dev, in mlx4_buf_alloc()
221 if (!buf->direct.buf) in mlx4_buf_alloc()
224 buf->direct.map = t; in mlx4_buf_alloc()
231 memset(buf->direct.buf, 0, size); in mlx4_buf_alloc()
235 buf->direct.buf = NULL; in mlx4_buf_alloc()
263 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL); in mlx4_buf_alloc()
265 if (!buf->direct.buf) in mlx4_buf_alloc()
284 dma_free_coherent(&dev->pdev->dev, size, buf->direct.buf, in mlx4_buf_free()
285 buf->direct.map); in mlx4_buf_free()
287 if (BITS_PER_LONG == 64 && buf->direct.buf) in mlx4_buf_free()
[all …]
HDen_resources.c91 if (buf->direct.buf != NULL || buf->nbufs == 1) in mlx4_en_map_buffer()
101 buf->direct.buf = vmap(pages, buf->nbufs, VM_MAP, PAGE_KERNEL); in mlx4_en_map_buffer()
103 if (!buf->direct.buf) in mlx4_en_map_buffer()
114 vunmap(buf->direct.buf); in mlx4_en_unmap_buffer()
/NextBSD/sbin/fsck_ffs/
HDdir.c62 static int dircheck(struct inodesc *, struct direct *);
65 static struct direct *fsck_readdir(struct inodesc *);
102 struct direct *dp; in dirscan()
124 idesc->id_dirp = (struct direct *)dbuf; in dirscan()
142 static struct direct *
145 struct direct *dp, *ndp; in fsck_readdir()
153 dp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc); in fsck_readdir()
160 dp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc); in fsck_readdir()
176 dp = (struct direct *)(bp->b_un.b_buf + dploc); in fsck_readdir()
181 ndp = (struct direct *)(bp->b_un.b_buf + idesc->id_loc); in fsck_readdir()
[all …]
HDpass2.c277 struct direct *dirp = idesc->id_dirp; in pass2check()
283 struct direct proto; in pass2check()
329 dirp = (struct direct *)((char *)(dirp) + entrysize); in pass2check()
352 dirp = (struct direct *)((char *)(dirp) + n); in pass2check()
651 struct direct *dirp = idesc->id_dirp; in deleteentry()
/NextBSD/sys/ufs/ufs/
HDufs_extern.h37 struct direct;
62 int ufs_dirbadentry(struct vnode *, struct direct *, int);
67 struct direct *);
68 int ufs_direnter(struct vnode *, struct vnode *, struct direct *,
HDdirhash.h125 void ufsdirhash_add(struct inode *, struct direct *, doff_t);
126 void ufsdirhash_remove(struct inode *, struct direct *, doff_t);
127 void ufsdirhash_move(struct inode *, struct direct *, doff_t, doff_t);
HDufs_dirhash.c100 static doff_t ufsdirhash_getprev(struct direct *dp, doff_t offset);
341 struct direct *ep; in ufsdirhash_build()
438 ep = (struct direct *)((char *)bp->b_data + (pos & bmask)); in ufsdirhash_build()
547 struct direct *dp; in ufsdirhash_lookup()
632 dp = (struct direct *)(bp->b_data + (offset & bmask)); in ufsdirhash_lookup()
699 struct direct *dp; in ufsdirhash_findfree()
735 dp = (struct direct *)((char *)dp + dp->d_reclen); in ufsdirhash_findfree()
754 dp = (struct direct *)((char *)dp + dp->d_reclen); in ufsdirhash_findfree()
799 ufsdirhash_add(struct inode *ip, struct direct *dirp, doff_t offset) in ufsdirhash_add()
840 ufsdirhash_remove(struct inode *ip, struct direct *dirp, doff_t offset) in ufsdirhash_remove()
[all …]
HDdir.h77 struct direct { struct
113 ((__offsetof(struct direct, d_name) + \
114 ((namlen)+1)*sizeof(((struct direct *)0)->d_name[0]) + 3) & ~3)
HDufs_lookup.c223 struct direct *ep; /* the current directory entry */ in ufs_lookup_ino()
318 ep = (struct direct *)((char *)bp->b_data + in ufs_lookup_ino()
387 ep = (struct direct *)((char *)bp->b_data + entryoffsetinblock); in ufs_lookup_ino()
793 struct direct *ep;
837 struct direct *newdirp;
872 struct direct *dirp;
883 struct direct *ep, *nep;
943 ((struct direct *)
1023 ep = (struct direct *)dirbuf;
1027 nep = (struct direct *)(dirbuf + loc);
[all …]
/NextBSD/sys/ofed/drivers/infiniband/hw/mthca/
HDmthca_allocator.c208 buf->direct.buf = dma_alloc_coherent(&dev->pdev->dev, in mthca_buf_alloc()
210 if (!buf->direct.buf) in mthca_buf_alloc()
213 pci_unmap_addr_set(&buf->direct, mapping, t); in mthca_buf_alloc()
215 memset(buf->direct.buf, 0, size); in mthca_buf_alloc()
290 dma_free_coherent(&dev->pdev->dev, size, buf->direct.buf, in mthca_buf_free()
291 pci_unmap_addr(&buf->direct, mapping)); in mthca_buf_free()
/NextBSD/sys/geom/
HDgeom_io.c474 int direct, error, first; in g_io_request() local
531 direct = (cp->flags & G_CF_DIRECT_SEND) != 0 && in g_io_request()
537 if (direct) { in g_io_request()
542 direct = 0; in g_io_request()
545 direct = 0; in g_io_request()
569 if (direct) { in g_io_request()
599 int direct, first; in g_io_deliver() local
646 direct = (pp->flags & G_PF_DIRECT_SEND) && in g_io_deliver()
649 if (direct) { in g_io_deliver()
654 direct = 0; in g_io_deliver()
[all …]
/NextBSD/contrib/ofed/libibverbs/debian/
HDcontrol.in13 Description: A library for direct userspace use of RDMA (InfiniBand/iWARP)
19 channel adapters (HCAs) and iWARP NICs commonly support direct
38 channel adapters (HCAs) and iWARP NICs commonly support direct
57 channel adapters (HCAs) and iWARP NICs commonly support direct
75 channel adapters (HCAs) and iWARP NICs commonly support direct
/NextBSD/lib/libstand/
HDufs.c448 struct direct *dp;
449 struct direct *edp;
463 dp = (struct direct *)buf;
464 edp = (struct direct *)(buf + buf_size);
481 dp = (struct direct *)((char *)dp + dp->d_reclen);
840 struct direct *dp; in ufs_readdir()
854 dp = (struct direct *)buf; in ufs_readdir()
/NextBSD/contrib/amd/fsinfo/
HDwr_atab.c257 int direct = 0; in write_amount() local
273 direct++; in write_amount()
299 if (direct) { in write_amount()
/NextBSD/libexec/rbootd/
HDutils.c79 DispPkt(RMPCONN *rconn, int direct) in DispPkt() argument
101 fputs((direct==DIR_RCVD)?"<<< ":(direct==DIR_SENT)?">>> ":"", DbgFp); in DispPkt()
/NextBSD/share/examples/ppp/
HDppp.conf.sample259 # their own label in direct mode:
263 allow mode direct
441 # # ppp -direct server
465 # should always be carrier on a direct connection.
473 direct-client:
485 direct-server:
511 # configured to run "ppp -direct tcp-server" when it gets a connection on
514 # ppp stream tcp nowait root /usr/sbin/ppp ppp -direct tcp-server
537 # ppp dgram udp wait root /usr/sbin/ppp ppp -direct udp-server
560 # ppploop stream tcp nowait root /usr/sbin/ppp ppp -direct inet-loop-in
[all …]

12345678910>>...16