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

1234567891011>>

/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/ppc/
H A Dxcoff-ref-1.s1 .ref foo
3 .ref 1234
4 .ref a,
5 .ref ,
6 .ref
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-elfvers/
H A Dvers27d2.c4 ref () function
H A Dvers27d3.c1 extern void ref ();
8 ref ();
H A Dvers26b.c6 ref () function
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/
H A Damd64-entry-value-paramref.cc21 bar (int &ref) argument
24 p = &ref;
25 return ref;
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Damd64-entry-value-paramref.cc21 bar (int &ref) argument
24 p = &ref;
25 return ref;
/netbsd-current/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/lg/
H A DMakefile2 dtb-$(CONFIG_ARCH_LG1K) += lg1312-ref.dtb
3 dtb-$(CONFIG_ARCH_LG1K) += lg1313-ref.dtb
/netbsd-current/external/lgpl3/mpc/dist/tests/
H A Dcomparisons.c25 same_mpfr_value (mpfr_ptr got, mpfr_ptr ref, int known_sign) argument
30 return mpfr_nan_p (ref);
32 return mpfr_inf_p (ref) &&
33 (!known_sign || mpfr_signbit (got) == mpfr_signbit (ref));
35 return mpfr_zero_p (ref) &&
36 (!known_sign || mpfr_signbit (got) == mpfr_signbit (ref));
37 return mpfr_cmp (got, ref) == 0;
41 same_mpc_value (mpc_ptr got, mpc_ptr ref, known_signs_t known_signs) argument
43 return same_mpfr_value (mpc_realref (got), mpc_realref (ref), known_signs.re)
44 && same_mpfr_value (mpc_imagref (got), mpc_imagref (ref), known_sign
[all...]
/netbsd-current/external/bsd/ntp/dist/lib/isc/
H A Drefcount.c30 isc_refcount_init(isc_refcount_t *ref, unsigned int n) { argument
31 REQUIRE(ref != NULL);
33 ref->refs = n;
35 return (isc_mutex_init(&ref->lock));
/netbsd-current/external/apache2/llvm/dist/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...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/i915/
H A Di915_active.h154 void __i915_active_init(struct i915_active *ref,
155 int (*active)(struct i915_active *ref),
156 void (*retire)(struct i915_active *ref),
161 #define i915_active_init(ref, active, retire) do { \
165 __i915_active_init(ref, active, retire, &__mkey, &__wkey); \
168 int i915_active_ref(struct i915_active *ref,
173 i915_active_add_request(struct i915_active *ref, struct i915_request *rq) argument
175 return i915_active_ref(ref, i915_request_timeline(rq), &rq->fence);
178 void i915_active_set_exclusive(struct i915_active *ref, struct dma_fence *f);
180 static inline bool i915_active_has_exclusive(struct i915_active *ref) argument
193 __i915_active_acquire(struct i915_active *ref) argument
200 i915_active_is_idle(const struct i915_active *ref) argument
[all...]
H A Di915_active.c38 struct i915_active *ref; member in struct:active_node
85 struct i915_active *ref = addr; local
87 return (void *)ref->active ?: (void *)ref->retire ?: (void *)ref;
95 static void debug_active_init(struct i915_active *ref) argument
97 debug_object_init(ref, &active_debug_desc);
100 static void debug_active_activate(struct i915_active *ref) argument
102 lockdep_assert_held(&ref->tree_lock);
103 if (!atomic_read(&ref
107 debug_active_deactivate(struct i915_active *ref) argument
114 debug_active_fini(struct i915_active *ref) argument
119 debug_active_assert(struct i915_active *ref) argument
126 debug_active_init(struct i915_active *ref) argument
127 debug_active_activate(struct i915_active *ref) argument
128 debug_active_deactivate(struct i915_active *ref) argument
129 debug_active_fini(struct i915_active *ref) argument
130 debug_active_assert(struct i915_active *ref) argument
175 __active_retire(struct i915_active *ref) argument
218 struct i915_active *ref = container_of(wrk, typeof(*ref), work); local
228 active_retire(struct i915_active *ref) argument
272 active_instance(struct i915_active *ref, struct intel_timeline *tl) argument
353 __i915_active_init(struct i915_active *ref, int (*active)(struct i915_active *ref), void (*retire)(struct i915_active *ref), struct lock_class_key *mkey, struct lock_class_key *wkey) argument
388 ____active_del_barrier(struct i915_active *ref, struct active_node *node, struct intel_engine_cs *engine) argument
431 __active_del_barrier(struct i915_active *ref, struct active_node *node) argument
436 i915_active_ref(struct i915_active *ref, struct intel_timeline *tl, struct dma_fence *fence) argument
474 i915_active_set_exclusive(struct i915_active *ref, struct dma_fence *f) argument
483 i915_active_acquire_if_busy(struct i915_active *ref) argument
489 i915_active_acquire(struct i915_active *ref) argument
516 i915_active_release(struct i915_active *ref) argument
534 i915_active_wait(struct i915_active *ref) argument
569 i915_request_await_active(struct i915_request *rq, struct i915_active *ref) argument
590 i915_active_fini(struct i915_active *ref) argument
605 reuse_idle_barrier(struct i915_active *ref, u64 idx) argument
706 i915_active_acquire_preallocate_barrier(struct i915_active *ref, struct intel_engine_cs *engine) argument
789 i915_active_acquire_barrier(struct i915_active *ref) argument
[all...]
/netbsd-current/tests/libexec/ld.elf_so/data/
H A DMakefile7 FILES= symver-output-ref-stderr.v0-v0
8 FILES+= symver-output-ref-stderr.v0-v1
9 FILES+= symver-output-ref-stderr.v0-v2
10 FILES+= symver-output-ref-stderr.v1-v0
11 FILES+= symver-output-ref-stderr.v1-v1
12 FILES+= symver-output-ref-stderr.v1-v2
13 FILES+= symver-output-ref-stderr.v2-v0
14 FILES+= symver-output-ref-stderr.v2-v1
15 FILES+= symver-output-ref-stderr.v2-v2
16 FILES+= symver-output-ref
[all...]
/netbsd-current/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/socionext/
H A DMakefile4 uniphier-ld11-ref.dtb \
7 uniphier-ld20-ref.dtb \
8 uniphier-pxs3-ref.dtb
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mips/
H A Dcompact-eh-2.s3 .hidden DW.ref.__gnu_compact_pr2
4 .weak DW.ref.__gnu_compact_pr2
5 .section .data.DW.ref.__gnu_compact_pr2,"awG",@progbits,DW.ref.__gnu_compact_pr2,comdat
7 .type DW.ref.__gnu_compact_pr2, @object
8 .size DW.ref.__gnu_compact_pr2, 4
9 DW.ref.__gnu_compact_pr2:
17 .cfi_personality 0x1b, DW.ref.__gnu_compact_pr2
/netbsd-current/external/bsd/nvi/docs/USD.doc/
H A DMakefile3 SUBDIR= edit exref vi.ref vitut
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Drefcount.c92 reference_t *ref; local
95 while (ref = list_head(&rc->rc_list)) {
96 list_remove(&rc->rc_list, ref);
97 kmem_cache_free(reference_cache, ref);
101 while (ref = list_head(&rc->rc_removed)) {
102 list_remove(&rc->rc_removed, ref);
103 kmem_cache_free(reference_history_cache, ref->ref_removed);
104 kmem_cache_free(reference_cache, ref);
131 reference_t *ref = NULL; local
135 ref
159 reference_t *ref; local
245 reference_t *ref; local
274 reference_t *ref; local
302 reference_t *ref; local
[all...]
/netbsd-current/share/doc/papers/memfs/
H A DMakefile8 EXTRA= ref.bib A.t tmac.srefs
9 CLEANFILES=ref.bib.i A.gt paper.t
14 paper.t: ${SRCS} ref.bib.i A.gt
15 ${TOOL_REFER} -n -e -l -s -p ref.bib ${SRCS} A.gt > ${.TARGET}
17 ref.bib.i: ref.bib
18 ${TOOL_INDXBIB} ref.bib
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dprint-tree.h24 extern void debug_raw (const tree_node &ref);
26 extern void debug (const tree_node &ref);
28 extern void debug_verbose (const tree_node &ref);
30 extern void debug_head (const tree_node &ref);
32 extern void debug_body (const tree_node &ref);
34 extern void debug (vec<tree, va_gc> &ref);
36 extern void debug_raw (vec<tree, va_gc> &ref);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dprint-tree.h24 extern void debug_raw (const tree_node &ref);
26 extern void debug (const tree_node &ref);
28 extern void debug_verbose (const tree_node &ref);
30 extern void debug_head (const tree_node &ref);
32 extern void debug_body (const tree_node &ref);
34 extern void debug (vec<tree, va_gc> &ref);
36 extern void debug_raw (vec<tree, va_gc> &ref);
/netbsd-current/external/lgpl3/gmp/dist/mini-gmp/tests/
H A Dt-aorsmul.c37 mpz_t a, b, res, ref; local
42 mpz_init (ref);
46 mini_random_op3 (OP_MUL, MAXBITS, a, b, ref);
48 mpz_add (ref, ref, res);
54 mpz_sub (ref, res, ref);
60 if (mpz_cmp (res, ref))
69 dump ("ref", ref);
[all...]
H A Dt-scan.c34 mp_bitcnt_t b, res, ref; local
40 mini_random_scan_op (OP_SCAN0, MAXBITS, a, &b, &ref);
42 if (res != ref)
48 fprintf (stderr, "ref: %lu\n", ref);
51 if (mpz_sgn (a) > 0 && ref < mpz_sizeinbase (a, 2))
54 if (res != ref)
60 fprintf (stderr, "ref: %lu\n", ref);
64 mini_random_scan_op (OP_SCAN1, MAXBITS, a, &b, &ref);
[all...]
H A Dt-add.c32 mpz_t a, b, res, ref; local
37 mpz_init (ref);
41 mini_random_op3 (OP_ADD, MAXBITS, a, b, ref);
43 if (mpz_cmp (res, ref))
49 dump ("ref", ref);
56 mpz_clear (ref);
H A Dt-powm.c33 mpz_t b, e, m, res, ref; local
39 mpz_init (ref);
43 mini_random_op4 (OP_POWM, MAXBITS, b, e, m, ref);
45 if (mpz_cmp (res, ref))
52 dump ("ref", ref);
60 mpz_clear (ref);
/netbsd-current/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 \

Completed in 448 milliseconds

1234567891011>>