Searched refs:bar (Results 1 - 25 of 195) sorted by relevance

12345678

/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Derr.D_SYNTAX.badenum.d37 enum foo`bar
H A Derr.D_SYNTAX.badstruct.d36 struct foo`bar {
/freebsd-13-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dbarrier.c49 barrier_init(barrier_t *bar, int nthreads) argument
51 pthread_mutex_init(&bar->bar_lock, NULL);
53 sema_init(&bar->bar_sem, 0, USYNC_THREAD, NULL);
55 sem_init(&bar->bar_sem, 0, 0);
58 bar->bar_numin = 0;
59 bar->bar_nthr = nthreads;
63 barrier_wait(barrier_t *bar) argument
65 pthread_mutex_lock(&bar->bar_lock);
67 if (++bar->bar_numin < bar
[all...]
/freebsd-13-stable/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dd_c99_union_cast.c3 struct bar { struct
9 struct bar *a;
15 struct bar *a;
H A Dd_gcc_compound_statements2.c3 int bar; member in struct:cpu_info
13 })->bar;
H A Dd_type_question_colon.c4 int bar; member in struct:foo
12 for (i = (ptr ? ptr : (void *)0)->bar; i < 10; i++)
H A Dd_c99_anon_struct.c10 struct bar { struct
22 struct bar b;
H A Dd_compound_literals2.c9 struct p *bar(int i) function
17 *bar(1) = (struct p) { 1, 2, 3, 4 };
H A Dd_c99_union_init4.c12 foo bar = { variable
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/
H A Derr.D_PDESC_ZERO.notreturn.d44 void bar();
46 fbt::bar:entry
51 fbt::bar:return
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/struct/
H A Dtst.clauselocal.d37 this struct foo bar;
42 this->bar.x = 1;
43 this->bar.y = ',';
44 this->bar.z = 1234;
49 printf("Die %s%c %s.\n", this->bar.x == 1 ? "SystemTap" : "DTrace",
50 this->bar.y, this->bar.z == 1234 ? "Die" : "The");
/freebsd-13-stable/lib/libthr/thread/
H A Dthr_barrier.c50 pthread_barrier_t bar; local
58 bar = __thr_pshared_offpage(barrier, 0);
59 if (bar == NULL) {
65 bar = *barrier;
69 THR_UMUTEX_LOCK(curthread, &bar->b_lock);
70 if (bar->b_destroying) {
71 THR_UMUTEX_UNLOCK(curthread, &bar->b_lock);
74 bar->b_destroying = 1;
76 if (bar->b_waiters > 0) {
77 bar
102 pthread_barrier_t bar; local
137 pthread_barrier_t bar; local
[all...]
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Dtst.basename.d.out3 if [ `basename "/foo/bar/baz"` != "baz" ]; then
4 echo "basename(\"/foo/bar/baz\") is \"baz\"; expected \"`basename "/foo/bar/baz"`"\"
7 if [ `dirname "/foo/bar/baz"` != "/foo/bar" ]; then
8 echo "dirname(\"/foo/bar/baz\") is \"/foo/bar\"; expected \"`dirname "/foo/bar/baz"`"\"
11 if [ `basename "/foo/bar///baz/"` != "baz" ]; then
12 echo "basename(\"/foo/bar///ba
[all...]
/freebsd-13-stable/bin/rm/tests/
H A Drm_test.sh35 touch -- foo bar -foo -bar
37 atf_check -s exit:0 unlink -- bar
39 atf_check -s exit:0 unlink -- -bar
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/multiaggs/
H A Derr.D_PRINTA_AGGKEY.d34 @bar = sum(456);
36 printa("%10d %@10d %@10d\n", @foo, @bar);
H A Derr.D_PRINTA_AGGPROTO.d34 @bar["fooey"] = sum(456);
36 printa("%10d %@10d %@10d\n", @foo, @bar);
H A Dtst.zero.d41 @bar[456] = sum(456);
44 @bar[789] = sum(789);
46 printa("%10d %@10d %@10d\n", @foo, @bar);
47 printa("%10d %@10d %@10d %@10d\n", @foo, @bar, @bop);
48 printa("%10d %@10d %@10d %@10d %@10d\n", @foo, @bar, @bop, @baz);
H A Dtst.zero2.d40 @bar[456] = sum(456);
43 @bar[789] = sum(789);
45 printa("%10d %@10d %@10d\n", @foo, @bar);
46 printa("%10d %@10d %@10d %@10d\n", @foo, @bar, @bop);
47 printa("%10d %@10d %@10d %@10d %@10d\n", @foo, @bar, @bop, @baz);
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
H A Dtst.spin.c34 int bar(int);
50 bar(int a) function
58 return (bar(a) - b);
/freebsd-13-stable/bin/cp/tests/
H A Dcp_test.sh40 echo "foo" > bar
42 atf_check cp bar baz
49 echo "foo" > bar
51 check_size bar 4
54 atf_check cp bar trunc
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/
H A Dtst.walltimestamp.ksh45 @bar = max(walltimestamp);
50 printa("%@T\n", @bar);
51 printa("%@Y\n", @bar);
/freebsd-13-stable/usr.bin/bmake/tests/syntax/semi/
H A DMakefile.test9 BAR=bar
20 BAR=bar
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/benchmarks/
H A Dfunc_entry_exit.cpp12 __attribute__((noinline)) void bar(volatile bool x) { function
19 bar(x);
/freebsd-13-stable/usr.bin/bmake/tests/variables/opt_V/
H A DMakefile.test7 FOOBAR= ${FOO}bar
/freebsd-13-stable/lib/libproc/tests/
H A Dtarget_prog.c55 bar(void) function
58 __strong_reference(bar, baz);
70 bar(); /* force the symbol to be emitted */

Completed in 198 milliseconds

12345678