Searched refs:ref (Results 1 - 25 of 469) sorted by relevance

1234567891011>>

/freebsd-current/tools/regression/geom/ConfCmp/
H A Da1c.conf4 <ref>0x80712c0</ref>
7 <ref>0x80bfd00</ref>
8 <method><ref>0x80712c0</ref></method>
12 <ref>0x80b9500</ref>
13 <geom><ref>0x80bfd00</ref></geo
[all...]
H A Da1b.conf4 <ref>0x80712c0</ref>
7 <ref>0x80bfd00</ref>
8 <method><ref>0x80712c0</ref></method>
12 <ref>0x80b9500</ref>
13 <geom><ref>0x80bfd00</ref></geo
[all...]
H A Da1d.conf4 <ref>0x80712c0</ref>
7 <ref>0x80bfd00</ref>
8 <method><ref>0x80712c0</ref></method>
12 <ref>0x80b9500</ref>
13 <geom><ref>0x80bfd00</ref></geo
[all...]
H A Da1a.conf4 <ref>0x90712c0</ref>
7 <ref>0x90bfd00</ref>
8 <method><ref>0x90712c0</ref></method>
12 <ref>0x90b9500</ref>
13 <geom><ref>0x90bfd00</ref></geo
[all...]
H A Da1.conf4 <ref>0x80712c0</ref>
7 <ref>0x80bfd00</ref>
8 <method><ref>0x80712c0</ref></method>
12 <ref>0x80b9500</ref>
13 <geom><ref>0x80bfd00</ref></geo
[all...]
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Drefcount.h37 refcount_set(refcount_t *ref, unsigned int i) argument
39 atomic_set(ref, i);
43 refcount_inc(refcount_t *ref) argument
45 atomic_inc(ref);
49 refcount_inc_not_zero(refcount_t *ref) argument
51 return (atomic_inc_not_zero(ref));
55 refcount_dec(refcount_t *ref) argument
57 atomic_dec(ref);
61 refcount_read(refcount_t *ref) argument
63 return atomic_read(ref);
67 refcount_dec_and_lock_irqsave(refcount_t *ref, spinlock_t *lock, unsigned long *flags) argument
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DCBindingWrapping.h19 #define DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
20 inline ty *unwrap(ref P) { \
24 inline ref wrap(const ty *P) { \
25 return reinterpret_cast<ref>(const_cast<ty*>(P)); \
28 #define DEFINE_ISA_CONVERSION_FUNCTIONS(ty, ref) \
29 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
32 inline T *unwrap(ref P) { \
36 #define DEFINE_STDCXX_CONVERSION_FUNCTIONS(ty, ref) \
37 DEFINE_SIMPLE_CONVERSION_FUNCTIONS(ty, ref) \
40 inline T *unwrap(ref
[all...]
/freebsd-current/share/doc/usd/13.viref/
H A DMakefile3 EXTRA= ex.cmd.roff ref.so set.opt.roff vi.cmd.roff
5 CLEANFILES= vi.ref-patched index
10 vi.ref-patched: vi.ref
15 SRCS+= vi.ref-${_dev}
17 CLEANFILES+= index.so.${_dev} vi.ref-${_dev}
19 vi.ref-${_dev}: index.so.${_dev}
20 sed -e 's:^\.so index\.so\.\\\*\[\.T\]$$:${_dev}:' vi.ref-patched > ${.TARGET}
23 index.so.${_dev}: vi.ref-patched ${EXTRA:Nindex.so.${_dev}}
24 sed -e 's:^\.so index\.so\.\\\*\[\.T\]$$::' vi.ref
[all...]
/freebsd-current/contrib/netbsd-tests/usr.bin/bzip2/
H A Dt_bzip2.sh36 bzip2 -1c $(atf_get_srcdir)/d_sample1.ref
38 bzip2 -2c $(atf_get_srcdir)/d_sample2.ref
40 bzip2 -3c $(atf_get_srcdir)/d_sample3.ref
41 atf_check -o file:$(atf_get_srcdir)/d_sample1.ref \
43 atf_check -o file:$(atf_get_srcdir)/d_sample2.ref \
45 atf_check -o file:$(atf_get_srcdir)/d_sample3.ref \
/freebsd-current/sys/dev/drm2/
H A Ddrm_global.c68 int drm_global_item_ref(struct drm_global_reference *ref) argument
71 struct drm_global_item *item = &glob[ref->global_type];
75 item->object = malloc(ref->size, M_DRM_GLOBAL,
82 ref->object = item->object;
83 ret = ref->init(ref);
89 ref->object = item->object;
99 void drm_global_item_unref(struct drm_global_reference *ref) argument
101 struct drm_global_item *item = &glob[ref->global_type];
105 MPASS(ref
[all...]
H A Ddrm_global.h50 extern int drm_global_item_ref(struct drm_global_reference *ref);
51 extern void drm_global_item_unref(struct drm_global_reference *ref);
/freebsd-current/sbin/hastd/
H A Dlzf.c116 const u8 *ref; local
151 ref = *hslot; *hslot = ip;
155 && ref < ip /* the next test will actually take care of this, but this is faster */
157 && (off = ip - ref - 1) < MAX_OFF
159 && ref > (const u8 *)in_data
161 && ref[0] == ip[0]
162 && ref[1] == ip[1]
163 && ref[2] == ip[2]
165 && *(const u16 *)ref == *(const u16 *)ip
166 && ref[
356 u8 *ref = op - ((ctrl & 0x1f) << 8) - 1; local
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBCommandReturnObject.cpp25 SBCommandReturnObjectImpl(CommandReturnObject &ref) argument
26 : m_ptr(&ref), m_owned(false) {}
52 SBCommandReturnObject::SBCommandReturnObject(CommandReturnObject &ref) argument
53 : m_opaque_up(new SBCommandReturnObjectImpl(ref)) {
54 LLDB_INSTRUMENT_VA(this, ref);
88 ConstString output(ref().GetOutputData());
95 ConstString output(ref().GetErrorData());
102 return ref().GetOutputData().size();
108 return ref().GetErrorData().size();
162 ref()
213 CommandReturnObject &SBCommandReturnObject::ref() const { function in class:SBCommandReturnObject
[all...]
/freebsd-current/share/doc/psd/02.implement/
H A DMakefile4 EXTRA= ref.bib
12 @(echo .R1; echo database ${.CURDIR}/ref.bib; \
/freebsd-current/share/doc/papers/relengr/
H A DMakefile5 EXTRA= ref.bib
11 @(echo .R1; echo database ${.CURDIR}/ref.bib; echo .R2) > ${.TARGET}
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDIERef.cpp19 void llvm::format_provider<DIERef>::format(const DIERef &ref, raw_ostream &OS, argument
21 if (ref.file_index())
22 OS << format_hex_no_prefix(*ref.file_index(), 8) << "/";
23 OS << (ref.section() == DIERef::DebugInfo ? "INFO" : "TYPE");
24 OS << "/" << format_hex_no_prefix(ref.die_offset(), 8);
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Drefcount.c95 reference_t *ref; local
99 while ((ref = avl_destroy_nodes(&rc->rc_tree, &cookie)) != NULL)
100 kmem_cache_free(reference_cache, ref);
103 while ((ref = list_remove_head(&rc->rc_removed)))
104 kmem_cache_free(reference_cache, ref);
130 reference_t *ref; local
139 ref = kmem_cache_alloc(reference_cache, KM_SLEEP);
140 ref->ref_holder = holder;
141 ref->ref_number = number;
142 ref
171 reference_t *ref, s; local
229 reference_t *ref; local
266 reference_t *ref, s; local
298 reference_t *ref, s; local
325 reference_t *ref, s; local
[all...]
/freebsd-current/sys/dev/xen/grant_table/
H A Dgrant_table.c68 int ref, error; local
77 ref = head = gnttab_free_head;
85 *entries = ref;
118 put_free_entry(grant_ref_t ref) argument
122 gnttab_entry(ref) = gnttab_free_head;
123 gnttab_free_head = ref;
137 int error, ref; local
139 error = get_free_entries(1, &ref);
144 shared[ref].frame = frame;
145 shared[ref]
156 gnttab_grant_foreign_access_ref(grant_ref_t ref, domid_t domid, unsigned long frame, int readonly) argument
167 gnttab_query_foreign_access(grant_ref_t ref) argument
177 gnttab_end_foreign_access_ref(grant_ref_t ref) argument
191 gnttab_end_foreign_access(grant_ref_t ref, void *page) argument
247 int error, ref; local
260 gnttab_grant_foreign_transfer_ref(grant_ref_t ref, domid_t domid, unsigned long pfn) argument
270 gnttab_end_foreign_transfer_ref(grant_ref_t ref) argument
304 gnttab_end_foreign_transfer(grant_ref_t ref) argument
313 gnttab_free_grant_reference(grant_ref_t ref) argument
322 grant_ref_t ref; local
344 int ref, error; local
[all...]
/freebsd-current/sys/xen/
H A Dgnttab.h69 int gnttab_end_foreign_access_ref(grant_ref_t ref);
77 void gnttab_end_foreign_access(grant_ref_t ref, void *page);
88 unsigned long gnttab_end_foreign_transfer_ref(grant_ref_t ref);
89 unsigned long gnttab_end_foreign_transfer(grant_ref_t ref);
91 int gnttab_query_foreign_access(grant_ref_t ref);
98 void gnttab_free_grant_reference(grant_ref_t ref);
113 void gnttab_grant_foreign_access_ref(grant_ref_t ref, domid_t domid,
/freebsd-current/usr.bin/bzip2/
H A DMakefile18 REFFILES= sample1.ref sample2.ref sample3.ref
37 ./bzip2 -1 < sample1.ref > sample1.rb2
38 ./bzip2 -2 < sample2.ref > sample2.rb2
39 ./bzip2 -3 < sample3.ref > sample3.rb2
46 cmp sample1.tst sample1.ref
47 cmp sample2.tst sample2.ref
48 cmp sample3.tst sample3.ref
/freebsd-current/sys/dev/cxgbe/cudbg/
H A Dfastlz.c221 const unsigned char *ref; local
236 ref = anchor - 1 + 3;
244 ref = htab[hval];
247 distance = anchor - ref;
252 if (!ref)
261 *ref++ != *ip++ || *ref++ != *ip++ ||
262 *ref++ != *ip++)
268 if (*ip++ != *ref++ || *ip++ != *ref
440 const unsigned char *ref = op; local
[all...]
/freebsd-current/sys/dev/drm2/ttm/
H A Dttm_object.c50 * @ref_hash: Hash tables of ref objects, one per ttm_ref_type,
51 * for fast lookup of ref objects given a base object.
94 * @head: List entry for the per-file list of ref-objects.
98 * @obj: Base object this ref object is referencing.
100 * @ref_type: Type of ref object.
105 * a particular ttm_object_file. It also carries a ref count to avoid creating
106 * multiple ref objects if a ttm_object_file references the same base
260 struct ttm_ref_object *ref; local
273 ref = drm_hash_entry(hash, struct ttm_ref_object, hash);
274 refcount_acquire(&ref
318 ttm_ref_object_release(struct ttm_ref_object *ref) argument
343 struct ttm_ref_object *ref; local
362 struct ttm_ref_object *ref; local
[all...]
/freebsd-current/crypto/openssh/
H A Ded25519.sh5 AUTHOR="supercop-20221122/crypto_sign/ed25519/ref/implementors"
7 supercop-20221122/crypto_verify/32/ref/verify.c
8 supercop-20221122/crypto_sign/ed25519/ref/fe25519.h
9 supercop-20221122/crypto_sign/ed25519/ref/fe25519.c
10 supercop-20221122/crypto_sign/ed25519/ref/sc25519.h
11 supercop-20221122/crypto_sign/ed25519/ref/sc25519.c
12 supercop-20221122/crypto_sign/ed25519/ref/ge25519.h
13 supercop-20221122/crypto_sign/ed25519/ref/ge25519.c
14 supercop-20221122/crypto_sign/ed25519/ref/keypair.c
15 supercop-20221122/crypto_sign/ed25519/ref/sig
[all...]
/freebsd-current/share/doc/smm/06.nfs/
H A DMakefile3 SRCS= 0.t 1.t 2.t ref.t
/freebsd-current/contrib/netbsd-tests/libexec/ld.elf_so/
H A Dt_dl_symver.sh45 -o file:$(datadir)/symver-output-ref-stdout.v$tv-v$lv \
46 -e file:$(datadir)/symver-output-ref-stderr.v$tv-v$lv \

Completed in 355 milliseconds

1234567891011>>