Searched refs:shared (Results 1 - 25 of 189) sorted by relevance

12345678

/freebsd-10-stable/contrib/bmake/unit-tests/
H A Ddotwait.exp17 shared.0
18 shared.0
19 shared.1.99
20 shared.1.99
21 shared.2.1
22 shared.2.1
23 shared.2.99
24 shared.2.99
H A Ddotwait.mk5 TESTS= simple recursive shared cycle
49 # shared: both shared.1.99 and shared.2.99 depend on shared.0.
50 # shared.0 must be made first, even though it is a child of
52 shared: shared.1.99 .WAIT shared.2.99
53 shared
[all...]
/freebsd-10-stable/sbin/ggate/ggatel/
H A DMakefile3 .PATH: ${.CURDIR}/../shared
10 CFLAGS+= -I${.CURDIR}/../shared
/freebsd-10-stable/sbin/ggate/ggated/
H A DMakefile3 .PATH: ${.CURDIR}/../shared
12 CFLAGS+= -I${.CURDIR}/../shared
/freebsd-10-stable/crypto/openssl/
H A DMakefile.shared2 # Helper makefile to link shared libraries in a portable way.
12 # shared libraries) are created, or when an application is linked.
13 # SHARED_LDFLAGS contains flags to be used when the shared library is created.
22 # build shared libraries.
154 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,-soname=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"
160 #do with shared libraries, for example when linking against static
177 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,-soname=$$SHLIB$$SHLIB_SUFFIX"
192 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
202 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
213 # supplied shared librarie
[all...]
/freebsd-10-stable/sbin/ggate/ggatec/
H A DMakefile3 .PATH: ${.CURDIR}/../shared
11 CFLAGS+= -I${.CURDIR}/../shared
/freebsd-10-stable/sys/xen/
H A Dgnttab.c54 static grant_entry_t *shared; variable
142 shared[ref].frame = frame;
143 shared[ref].domid = domid;
145 shared[ref].flags = GTF_permit_access | (readonly ? GTF_readonly : 0);
158 shared[ref].frame = frame;
159 shared[ref].domid = domid;
161 shared[ref].flags = GTF_permit_access | (readonly ? GTF_readonly : 0);
169 nflags = shared[ref].flags;
179 nflags = shared[ref].flags;
185 } while ((nflags = synch_cmpxchg(&shared[re
[all...]
/freebsd-10-stable/sys/dev/buslogic/
H A Dbt_eisa.c118 int shared; local
132 shared = bt->level_trigger_ints ? RF_SHAREABLE : 0;
135 shared | RF_ACTIVE);
195 int shared; local
237 shared = (inb(iobase + AMI_EISA_IOCONF1) & AMI_IRQ_LEVEL) ?
272 shared = (inb(iobase + EISA_IRQ_TYPE) & LEVEL) ?
289 eisa_add_intr(dev, info.irq, shared);
/freebsd-10-stable/sys/dev/aic7xxx/
H A Dahc_eisa.c50 int shared; local
82 shared = (intdef & EDGE_TRIG) ? EISA_TRIGGER_EDGE : EISA_TRIGGER_LEVEL;
99 eisa_add_intr(dev, irq, shared);
/freebsd-10-stable/contrib/libucl/tests/basic/
H A D3.in23 shared-depends: info -qB,
/freebsd-10-stable/contrib/libstdc++/libsupc++/
H A DMakefile.am104 LTCOMPILE = $(LIBTOOL) --tag CC --tag disable-shared --mode=compile $(CC) \
136 # We have to put --tag disable-shared after --tag CXX lest things
137 # CXX undo the affect of disable-shared.
138 LTCXXCOMPILE = $(LIBTOOL) --tag CXX --tag disable-shared \
144 # 3) We'd have a problem when building the shared libstdc++ object if
150 CXXLINK = $(LIBTOOL) --tag CXX --tag disable-shared \
/freebsd-10-stable/lib/libthr/thread/
H A Dthr_umtx.c185 _thr_umtx_wait_uint(volatile u_int *mtx, u_int id, const struct timespec *timeout, int shared) argument
191 shared ? UMTX_OP_WAIT_UINT : UMTX_OP_WAIT_UINT_PRIVATE, id, 0,
197 const struct timespec *abstime, int shared)
214 shared ? UMTX_OP_WAIT_UINT : UMTX_OP_WAIT_UINT_PRIVATE, id,
219 _thr_umtx_wake(volatile void *mtx, int nr_wakeup, int shared) argument
221 return _umtx_op_err(__DEVOLATILE(void *, mtx), shared ? UMTX_OP_WAKE : UMTX_OP_WAKE_PRIVATE,
196 _thr_umtx_timedwait_uint(volatile u_int *mtx, u_int id, int clockid, const struct timespec *abstime, int shared) argument
H A Dthr_umtx.h54 const struct timespec *timeout, int shared) __hidden;
56 const struct timespec *timeout, int shared) __hidden;
57 int _thr_umtx_wake(volatile void *mtx, int count, int shared) __hidden;
/freebsd-10-stable/contrib/netbsd-tests/lib/libpthread/
H A Dt_cond.c54 int *shared = (int *) arg; local
61 printf("Shared value: %d. Changing to 0.\n", *shared);
62 *shared = 0;
113 int *shared = (int *) arg; local
120 printf("Shared value: %d. Changing to 0.\n", *shared);
121 *shared = 0;
174 int *shared = (int *) arg; local
181 printf("Shared value: %d. Changing to 0.\n", *shared);
182 *shared = 0;
/freebsd-10-stable/contrib/gdb/gdb/
H A Dmacroexp.c60 int shared;
94 b->shared = 0;
100 shared substring. */
106 buf->shared = 1;
112 /* Free the text of the buffer B. Raise an error if B is shared. */
116 gdb_assert (! b->shared);
135 /* We shouldn't be trying to resize shared strings. */
136 gdb_assert (! b->shared);
467 refer to the text after that token. SRC must be a shared buffer;
468 the resulting TOK will be shared, pointin
59 int shared; member in struct:macro_buffer
[all...]
/freebsd-10-stable/contrib/pam_modules/pam_passwdqc/
H A DMakefile11 LDFLAGS = -s -lpam -lcrypt --shared
/freebsd-10-stable/tools/regression/tls/ttls3/
H A DMakefile5 LDFLAGS=-shared -Bsymbolic --allow-shlib-undefined
/freebsd-10-stable/contrib/gdb/
H A Dltcf-gcj.sh61 # See if GNU ld supports shared libraries.
70 *** to be unable to reliably create shared libraries on AIX.
71 *** Therefore, libtool is disabling shared libraries support. If you
72 *** really care for shared libraries, you may want to modify your PATH
88 # behavior of shared libraries on other platforms, we can use
186 archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
187 archive_expsym_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
197 *** create shared libraries on Solaris systems. Therefore, libtool
198 *** is disabling shared libraries support. We urge you to upgrade GNU
205 archive_cmds='$CC -shared
[all...]
/freebsd-10-stable/contrib/wpa/src/tls/
H A Dtlsv1_client_write.c211 u8 *csecret, *csecret_start, *dh_yc, *shared; local
284 shared = os_malloc(shared_len);
285 if (shared == NULL) {
294 /* shared = Ys^csecret mod p */
298 shared, &shared_len)) {
302 os_free(shared);
306 shared, shared_len);
310 if (tls_derive_keys(conn, shared, shared_len)) {
314 os_free(shared);
317 os_memset(shared,
[all...]
/freebsd-10-stable/contrib/bmake/mk/
H A Dlib.mk45 # Data-driven table using make variables to control how shared libraries
48 # SHLIB_SOVERSION: version number to be compiled into a shared library
52 # SHLIB_SHFLAGS: Flags to tell ${LD} to emit shared library.
53 # with ELF, also set shared-lib version for ld.so.
65 # Alpha-specific shared library flags
72 # mips-specific shared library flags
98 # Platform-independent flags for NetBSD a.out shared libraries
109 # Platform-independent linker flags for ELF shared libraries
159 LD_shared= -msym -shared -expect_unresolved '*'
171 LD_shared=-shared
[all...]
/freebsd-10-stable/contrib/binutils/bfd/
H A Delf-vxworks.c60 specially by the linker at runtime. Except shared libraries
62 If the symbol is imported from, or will be put in a shared library,
66 if ((info->shared || abfd->flags & DYNAMIC)
91 if (!info->shared)
177 /* This is a relocation from an executable or shared library
178 against a symbol in a different shared library. We are
/freebsd-10-stable/sys/sys/
H A Dumtx.h39 #define USYNC_PROCESS_SHARED 0x0001 /* Process shared sync objs */
198 int shared; member in struct:umtx_key
203 } shared; member in union:umtx_key::__anon11573
/freebsd-10-stable/contrib/unbound/libunbound/python/
H A DMakefile71 gcc -shared libunbound_wrap.o -L../../.libs -lunbound -o _unbound.so
/freebsd-10-stable/lib/ncurses/
H A Dconfig.mk3 # This Makefile is shared by libncurses, libform, libmenu, libpanel.
/freebsd-10-stable/contrib/file/
H A Dcompile105 if $shared && test -f "$dir/$lib.dll.lib"; then
134 shared=:
188 shared=false

Completed in 356 milliseconds

12345678