HomeSort by: relevance | last modified time | path
    Searched refs:Shared (Results 1 - 25 of 29) sorted by relevancy

1 2

  /src/sys/rump/net/lib/libshmif/
Makefile 5 COMMENT=Shared memory bus network interface
  /src/external/apache2/llvm/lib/libLLVMExecutionEngineOrcShared/
Makefile 7 .PATH: ${LLVM_SRCDIR}/lib/ExecutionEngine/Orc/Shared
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gcc/sections/
pecoff.d 89 version (Shared)
120 version (Shared)
242 version (Shared)
320 /* For each shared library and executable, the compiler generates code that
349 version (Shared)
397 version (Shared) runFinalizers(pdso);
400 version (Shared)
433 version (Shared)
447 // Shared D libraries are only supported when linking against a shared druntime library
    [all...]
package.d 45 version (Shared)
macho.d 90 version (Shared)
121 version (Shared)
241 version (Shared)
325 /* For each shared library and executable, the compiler generates code that
354 version (Shared)
404 version (Shared) runFinalizers(pdso);
407 version (Shared)
440 version (Shared)
454 // Shared D libraries are only supported when linking against a shared druntime library
    [all...]
elf.d 1 // ELF-specific support for sections with shared libraries.
150 version (Shared)
189 version (Shared)
351 version (Shared)
428 /* For each shared library and executable, the compiler generates code that
456 version (Shared)
507 version (Shared) runFinalizers(pdso);
510 version (Shared)
541 version (Shared)
560 // Shared D libraries are only supported when linking against a shared druntime library
    [all...]
  /src/external/bsd/openldap/dist/build/
lib-shared.mk 16 # Makefile Template for Shared Libraries
29 Makefile: $(top_srcdir)/build/lib-shared.mk
  /src/external/gpl3/gdb/dist/sim/testsuite/mips/
utils-mdmx.inc 23 ### Shared macros
  /src/external/gpl3/gdb.old/dist/sim/testsuite/mips/
utils-mdmx.inc 23 ### Shared macros
  /src/external/apache2/llvm/dist/llvm/tools/llvm-config/
llvm-config.cpp 238 --shared-mode Print how the provided components can be collectively linked (`shared` or `static`).\n\
239 --link-shared Link the components as shared libraries.\n\
369 /// We only use `shared library` mode in cases where the static library form
417 /// CMake style shared libs, ie each component is in a shared library.
424 // If LLVM_LINK_DYLIB is ON, the single shared library will be returned
426 // --link-static or --link-shared.
436 // The shared library does not exist: don't error unless the use
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 226 // starting nodes into a shared matcher.
316 Matcher *Shared = Optn;
327 Shared->setNext(new ScopeMatcher(EqualMatchers));
330 FactorNodes(Shared->getNextPtr());
332 NewOptionsToMatch.push_back(Shared);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/
sections.d 88 version (Shared)
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerMatrixIntrinsics.cpp 1618 const DenseMap<Value *, SmallPtrSet<Value *, 2>> &Shared;
1632 const DenseMap<Value *, SmallPtrSet<Value *, 2>> &Shared,
1635 : Str(), Stream(Str), DL(DL), Inst2Matrix(Inst2Matrix), Shared(Shared),
1797 // Is Expr shared with other expression leaves?
1800 // Deal with shared subtrees. Mark them as shared, if required.
1802 auto SI = Shared.find(Expr);
1803 assert(SI != Shared.end() && SI->second.count(Leaf));
1809 write("shared with remark at line " + std::to_string(DL.getLine())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 170 Shared = 1 << 4,
220 case 's': // shared section
221 SecFlags |= Shared | InitData;
269 if (SecFlags & Shared)
349 // s: Shared section
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
MinGW.cpp 72 bool Shared = Args.hasArg(options::OPT_shared);
75 if (Static || (!CXX && !Shared)) {
150 CmdArgs.push_back("--shared");
272 // MinGW always links against a shared MSVCRT.
Darwin.cpp 1265 bool Shared) const {
1266 auto RLO = RuntimeLinkOptions(RLO_AlwaysLink | (Shared ? RLO_AddRPath : 0U));
1267 AddLinkRuntimeLib(Args, CmdArgs, Sanitizer, RLO, Shared);
1319 AddLinkSanitizerLibArgs(Args, CmdArgs, "fuzzer", /*shared=*/false);
  /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
Record.h 103 static BitRecTy Shared;
112 static BitRecTy *get() { return &Shared; }
143 static IntRecTy Shared;
152 static IntRecTy *get() { return &Shared; }
161 static StringRecTy Shared;
170 static StringRecTy *get() { return &Shared; }
203 static DagRecTy Shared;
212 static DagRecTy *get() { return &Shared; }
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/thread/
osthread.d 41 version (Shared)
259 private shared bool m_isRunning;
512 version (Shared)
589 atomicStore!(MemoryOrder.raw)(*cast(shared)&m_addr, m_addr.init);
652 private static shared Priority cache;
1220 shared bool inCriticalRegion;
2296 version (Shared)
2315 else version (Shared)
2398 else version (Shared)
2821 shared int n = 0
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntime.h 133 /// Reference to the item shared between tasks to reduce into.
134 const Expr *Shared = nullptr;
141 ReductionData(const Expr *Shared, const Expr *Ref, const Expr *Private,
143 : Shared(Shared), Ref(Ref), Private(Private), ReductionOp(ReductionOp) {
149 /// List of addresses of shared variables/expressions.
158 /// Emits lvalue for shared expression.
160 /// Emits upper bound for shared expression (if array section).
165 /// \param SharedLVal Address of the original shared variable.
175 /// Emits lvalue for the shared and original reduction item
    [all...]
CGOpenMPRuntime.cpp 813 LValue First = emitSharedLValue(CGF, ClausesData[N].Shared);
814 LValue Second = emitSharedLValueUB(CGF, ClausesData[N].Shared);
816 if (ClausesData[N].Shared == ClausesData[N].Ref) {
2947 /// List of shared variables.
6054 // void *reduce_shar; // shared reduction item
7487 // in unified shared memory mode or for local pointers
7675 // can be associated with the combined storage if shared memory mode is
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
Record.cpp 50 BitRecTy BitRecTy::Shared;
51 IntRecTy IntRecTy::Shared;
52 StringRecTy StringRecTy::Shared;
53 DagRecTy DagRecTy::Shared;
81 static std::vector<BitsRecTy*> Shared;
82 if (Sz >= Shared.size())
83 Shared.resize(Sz + 1);
84 BitsRecTy *&Ty = Shared[Sz];
  /src/external/bsd/wpa/dist/hostapd/
Android.mk 657 # Shared TLS functions (needed for EAP_TLS, EAP_PEAP, and EAP_TTLS)
  /src/external/gpl3/gdb/dist/gdb/testsuite/lib/
gdb.exp 1325 -re "Corrupted shared library list.*$prompt_regexp" {
1326 fail "$message (shared library list corrupted)"
2808 # Return a 1 if we should run shared library tests.
2811 # Run the shared library tests on native systems.
2817 # run shared library tests.
2835 # We need shared library support.
3973 # "(*): Shared library is missing debugging information."
5133 # hook. This must be invoked while gdb is running, after shared
5135 # shared libgcc won't be visible.
5163 # probes. This must be invoked while gdb is running, after shared
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/lib/
gdb.exp 1278 -re "Corrupted shared library list.*$prompt_regexp" {
1279 fail "$message (shared library list corrupted)"
2691 # Return a 1 if we should run shared library tests.
2694 # Run the shared library tests on native systems.
2700 # run shared library tests.
2718 # We need shared library support.
3777 # "(*): Shared library is missing debugging information."
4744 # hook. This must be invoked while gdb is running, after shared
4746 # shared libgcc won't be visible.
4774 # probes. This must be invoked while gdb is running, after shared
    [all...]
  /src/sys/external/bsd/acpica/dist/tests/misc/
grammar.asl 394 IRQ (Level, ActiveLow, Shared) {3,4,5,6,7,9,10,11,14,15}

Completed in 67 milliseconds

1 2