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

12345

/freebsd-9.3-release/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-9.3-release/contrib/gcclibs/libgomp/config/linux/
H A Dbar.h45 static inline void gomp_barrier_init (gomp_barrier_t *bar, unsigned count) argument
47 gomp_mutex_init (&bar->mutex);
48 bar->total = count;
49 bar->arrived = 0;
50 bar->generation = 0;
53 static inline void gomp_barrier_reinit (gomp_barrier_t *bar, unsigned count) argument
55 gomp_mutex_lock (&bar->mutex);
56 bar->total = count;
57 gomp_mutex_unlock (&bar->mutex);
60 static inline void gomp_barrier_destroy (gomp_barrier_t *bar) argument
69 gomp_barrier_wait_start(gomp_barrier_t *bar) argument
[all...]
H A Dbar.c38 gomp_barrier_wait_end (gomp_barrier_t *bar, bool last) argument
42 bar->generation++;
43 futex_wake (&bar->generation, INT_MAX);
47 unsigned int generation = bar->generation;
49 gomp_mutex_unlock (&bar->mutex);
52 futex_wait (&bar->generation, generation);
53 while (bar->generation == generation);
56 if (__sync_add_and_fetch (&bar->arrived, -1) == 0)
57 gomp_mutex_unlock (&bar->mutex);
/freebsd-9.3-release/contrib/gcclibs/libgomp/config/posix/
H A Dbar.c37 gomp_barrier_init (gomp_barrier_t *bar, unsigned count) argument
39 gomp_mutex_init (&bar->mutex1);
41 gomp_mutex_init (&bar->mutex2);
43 gomp_sem_init (&bar->sem1, 0);
44 gomp_sem_init (&bar->sem2, 0);
45 bar->total = count;
46 bar->arrived = 0;
50 gomp_barrier_destroy (gomp_barrier_t *bar) argument
53 gomp_mutex_lock (&bar->mutex1);
54 gomp_mutex_unlock (&bar
65 gomp_barrier_reinit(gomp_barrier_t *bar, unsigned count) argument
73 gomp_barrier_wait_end(gomp_barrier_t *bar, bool last) argument
[all...]
H A Dbar.h57 static inline bool gomp_barrier_wait_start (gomp_barrier_t *bar) argument
59 gomp_mutex_lock (&bar->mutex1);
60 return ++bar->arrived == bar->total;
/freebsd-9.3-release/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-9.3-release/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-9.3-release/lib/libkse/thread/
H A Dthr_barrier.c43 pthread_barrier_t bar; local
49 bar = *barrier;
50 if (bar->b_waiters > 0)
53 ret = _pthread_mutex_destroy(&bar->b_lock);
54 ret2 = _pthread_cond_destroy(&bar->b_cond);
55 free(bar);
63 pthread_barrier_t bar; local
69 bar = malloc(sizeof(struct pthread_barrier));
70 if (bar == NULL)
73 if ((ret = _pthread_mutex_init(&bar
96 pthread_barrier_t bar; local
[all...]
/freebsd-9.3-release/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-9.3-release/lib/libthr/thread/
H A Dthr_barrier.c44 pthread_barrier_t bar; local
49 bar = *barrier;
50 if (bar->b_waiters > 0)
53 free(bar);
61 pthread_barrier_t bar; local
68 bar = malloc(sizeof(struct pthread_barrier));
69 if (bar == NULL)
72 _thr_umutex_init(&bar->b_lock);
73 _thr_ucond_init(&bar->b_cv);
74 bar
86 pthread_barrier_t bar; local
[all...]
/freebsd-9.3-release/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-9.3-release/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-9.3-release/usr.sbin/mount_portalfs/
H A Dportal.conf7 foo/ exec ./bar bar baz
/freebsd-9.3-release/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-9.3-release/tools/regression/usr.bin/make/variables/opt_V/
H A DMakefile7 FOOBAR= ${FOO}bar
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ustack/
H A Dtst.spin.c46 bar(int a) function
54 return (bar(a) - b);
/freebsd-9.3-release/tools/regression/usr.bin/make/syntax/semi/
H A DMakefile9 BAR=bar
20 BAR=bar
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/
H A Dtst.libchain.ksh42 inline int foo = bar;
47 inline int bar = 0xd0061e;
/freebsd-9.3-release/sys/dev/pci/
H A Disa_pci.c175 int bar; local
188 bar = PCI_RID2BAR(*rid);
189 if (bar < 0 || bar > PCIR_MAX_BAR_0)
192 if (sc->isab_pci_res[bar].ip_res == NULL)
193 sc->isab_pci_res[bar].ip_res = bus_alloc_resource(dev, type,
195 if (sc->isab_pci_res[bar].ip_res != NULL)
196 sc->isab_pci_res[bar].ip_refs++;
197 return (sc->isab_pci_res[bar].ip_res);
209 int bar, erro local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/scalars/
H A Dtst.selfarray2.d33 struct bar {
38 self struct bar foo[int];
/freebsd-9.3-release/contrib/bsnmp/snmpd/
H A Dsnmpd.config37 host := foo.bar.com
39 contact := "sysmeister@bar.com"
41 traphost := noc.bar.com

Completed in 218 milliseconds

12345