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

1 2

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_event.c 36 if (--event->refs[index * event->types_nr + type] == 0) {
49 if (++event->refs[index * event->types_nr + type] == 1) {
63 if (!event->refs || WARN_ON(index >= event->index_nr))
82 if (event->refs) {
83 kfree(event->refs);
84 event->refs = NULL;
94 event->refs = kzalloc(array3_size(index_nr, types_nr,
95 sizeof(*event->refs)),
97 if (!event->refs)
nouveau_nvkm_core_notify.c 144 if ((notify->event = event), event->refs) {
  /src/share/doc/papers/pulldown/
Makefile 6 DPSRCS= ${SRCS} refs.r Makefile
10 ${TOOL_REFER} -P -S -e -p ${.CURDIR}/refs.r | \
16 ${TOOL_REFER} -P -S -e -p ${.CURDIR}/refs.r | \
22 ${TOOL_REFER} -P -S -e -p ${.CURDIR}/refs.r | \
  /src/sys/arch/xen/include/
xenio_gntdev.h 62 struct ioctl_gntdev_grant_ref refs[1]; member in struct:ioctl_gntdev_map_grant_ref
xenio.h 171 struct ioctl_gntdev_grant_ref *refs; member in struct:ioctl_gntdev_mmap_grant_ref
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_vmm.h 11 int refs; member in struct:nouveau_vma
nouveau_vmm.c 70 if (vma && --vma->refs <= 0) {
91 vma->refs++;
98 vma->refs = 1;
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
event.h 19 int *refs; member in struct:nvkm_event
  /src/usr.bin/gprof/PSD.doc/
Makefile 7 postp.me present.me refs.me
  /src/distrib/amiga/stand/
update 21 ftp -o $srctar $githubdir/archive/refs/tags/$version.tar.gz
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/
nouveau_nvkm_subdev_mmu_base.c 123 u32 refs; member in struct:nvkm_mmu_ptc
140 ptc->refs = 0;
162 if (pt->ptc->refs < 8 /* Heuristic. */ && !force) {
164 pt->ptc->refs++;
202 ptc->refs--;
nouveau_nvkm_subdev_mmu_vmm.c 157 if (--pgd->refs[0]) {
162 if (!pgt->refs[!type]) {
198 if (!pgt->refs[!type])
223 if (!pgt->refs[0])
284 pgt->refs[type] -= ptes;
287 if (desc->type == SPT && (pgt->refs[0] || pgt->refs[1]))
291 if (!pgt->refs[type]) {
322 if (!pgt->refs[0])
378 pgt->refs[type] += ptes
    [all...]
  /src/sys/kern/
subr_kcov.c 277 u_int refs __diagused;
284 refs = atomic_inc_uint_nv(&kr->refcount);
285 KASSERT(refs == 1);
299 u_int refs __diagused;
306 refs = atomic_dec_uint_nv(&kr->refcount);
307 KASSERT(refs == 0);
uipc_socket.c 686 u_int refs; local in function:sofree
716 refs = so->so_aborting; /* XXX */
721 if (refs == 0) /* XXX */
796 u_int refs; local in function:soabort
804 refs = --so->so_aborting; /* XXX */
805 if (error || (refs == 0)) {
  /src/usr.sbin/npf/npfctl/
npf_show.c 479 } refs[] = { local in function:npfctl_print_filter_seg
493 const char *neg = !!(ctx->seen_marks & refs[which].negbm) ? "! " : "";
494 const char *kwd = refs[which].keyword;
499 list = &ctx->list[refs[which].alist];
507 list = &ctx->list[refs[which].plist];
527 } refs[] = { local in function:npfctl_print_l2filter_seg
539 const char *neg = !!(ctx->seen_marks & refs[which].negbm) ? "! " : "";
540 const char *kwd = refs[which].keyword;
545 list = &ctx->list[refs[which].alist];
  /src/sys/uvm/
uvm_object.c 62 bool alock, u_int refs)
78 uo->uo_refs = refs;
350 (*pr)("refs=<SYSTEM>\n");
352 (*pr)("refs=%d\n", uobj->uo_refs);
uvm_aobj.c 141 struct uvm_object u_obj; /* has: lock, pgops, #pages, #refs */
423 int refs; local in function:uao_create
434 refs = UVM_OBJ_KERN;
440 refs = 0xdeadbeaf; /* XXX: gcc */
445 refs = 1;
496 uvm_obj_init(&aobj->u_obj, &aobj_pager, !kernobj, refs);
  /src/usr.bin/netstat/
unix.c 82 "Address", "Type", "Recv-Q", "Send-Q", "Inode", "Conn", "Refs",
91 u_long inode, u_long conn, u_long refs, u_long nextref,
95 so_pcb, socktype[so_type], rcvq, sndq, inode, conn, refs,
  /src/sys/external/bsd/gnu-efi/dist/
Makefile 119 git tag $(VERSION) refs/heads/master
  /src/common/lib/libc/gen/
radixtree.c 510 struct radix_tree_node_ref *refs = NULL; local in function:radix_tree_lookup_ptr
519 refs = path->p_refs;
520 refs->pptr = vpp;
538 KASSERT((refs - path->p_refs) == 0);
557 path->p_lastidx = refs - path->p_refs;
570 refs++;
571 refs->pptr = vpp;
579 path->p_lastidx = refs - path->p_refs;
  /src/usr.bin/mail/
thread.c 911 struct name *refs; local in function:get_parent_id
913 if ((refs = extract(hfield("references", mp), 0)) != NULL) {
915 while (refs->n_flink)
916 refs = refs->n_flink;
918 id = skin(refs->n_name);
  /src/sys/dev/marvell/
mvxpsecvar.h 256 uint32_t refs; member in struct:mvxpsec_session
mvxpsec.c 1501 mv_s->refs = 1; /* 0 means session is already invalid */
1525 uint32_t refs; local in function:mvxpsec_session_ref
1533 refs = atomic_inc_32_nv(&mv_s->refs);
1534 if (refs == 1) {
1536 * a session with refs == 0 is
1540 atomic_dec_32(&mv_s->refs);
1552 uint32_t refs; local in function:mvxpsec_session_unref
1555 refs = atomic_dec_32_nv(&mv_s->refs);
    [all...]
  /src/sys/external/bsd/ipf/netinet/
ip_htable.c 656 int refs; local in function:ipf_htable_deref
659 refs = iph->iph_ref;
665 return refs;
  /src/sys/dev/hyperv/
vmbus.c 1094 int refs __diagused;
1135 refs = atomic_inc_uint_nv(&nch->ch_refs);
1136 KASSERT(refs == 2);
1355 ret[i] = ch; /* XXX inc refs */
1517 u_int refs; local in function:vmbus_channel_detach
1523 refs = atomic_dec_uint_nv(&ch->ch_refs);
1524 if (refs == 0) {

Completed in 31 milliseconds

1 2