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

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/clang/lib/Basic/
XRayInstr.cpp 34 void serializeXRayInstrValue(XRayInstrSet Set,
36 if (Set.Mask == XRayInstrKind::All) {
41 if (Set.Mask == XRayInstrKind::None) {
46 if (Set.has(XRayInstrKind::Custom))
49 if (Set.has(XRayInstrKind::Typed))
52 if (Set.has(XRayInstrKind::FunctionEntry) &&
53 Set.has(XRayInstrKind::FunctionExit))
55 else if (Set.has(XRayInstrKind::FunctionEntry))
57 else if (Set.has(XRayInstrKind::FunctionExit))
Sanitizers.cpp 38 void clang::serializeSanitizerSet(SanitizerSet Set,
41 if (Set.has(SanitizerKind::ID)) \
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMerge.h 17 // The outter process collects the set of files and writes their names
47 #include <set>
68 Set<uint32_t> ParseSummary(std::istream &IS);
69 size_t Merge(const Set<uint32_t> &InitialFeatures,
72 return Merge(Set<uint32_t>{}, NewFiles);
75 Set<uint32_t> AllFeatures() const;
FuzzerMerge.cpp 21 #include <set>
126 size_t Merger::Merge(const Set<uint32_t> &InitialFeatures,
130 Set<uint32_t> AllFeatures(InitialFeatures);
182 Set<uint32_t> Merger::AllFeatures() const {
183 Set<uint32_t> S;
189 Set<uint32_t> Merger::ParseSummary(std::istream &IS) {
191 Set<uint32_t> Res;
225 Set<size_t> AllFeatures;
245 Set<size_t> UniqFeatures;
373 Set<uint32_t> InitialFeatures
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugPubTable.h 39 /// Each table consists of sets of variable length entries. Each set describes
43 struct Set {
44 /// The total length of the entries for that set, not including the length
48 /// The DWARF format of the set.
56 /// compilation unit header referenced by the set.
67 std::vector<Set> Sets;
81 ArrayRef<Set> getData() { return Sets; }
  /src/external/apache2/llvm/dist/libcxx/benchmarks/
ordered_set.bench.cpp 13 #include <set>
45 std::vector<std::set<uint64_t> > Sets;
90 std::vector<std::set<uint64_t>> Sets(NumTables);
92 for (auto& Set : Sets) {
93 benchmark::DoNotOptimize(Set.insert(K));
113 for (auto& Set : Data.Sets) {
114 benchmark::DoNotOptimize(Set.find(K));
134 for (auto& Set : Data.Sets) {
135 benchmark::DoNotOptimize(Set.find(K) != Set.end())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
SetTheory.cpp 46 // (sub Add, Sub, ...) Set difference.
51 PrintFatalError(Loc, "Set difference needs at least two arguments: " +
62 // (and S1, S2) Set intersection.
67 PrintFatalError(Loc, "Set intersection requires two arguments: " +
80 virtual void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N,
86 PrintFatalError(Loc, "Operator requires (Op Set, Int) arguments: " +
88 RecSet Set;
89 ST.evaluate(Expr->arg_begin()[0], Set, Loc);
94 apply2(ST, Expr, Set, II->getValue(), Elts, Loc);
100 void apply2(SetTheory &ST, DagInit *Expr, RecSet &Set, int64_t N
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPContext.h 51 /// Parse \p Str and return the trait set it matches or TraitSet::invalid.
54 /// Return the trait set for which \p Selector is a selector.
57 /// Return the trait set for which \p Property is a property.
60 /// Return a textual representation of the trait set \p Kind.
63 /// Parse \p Str and return the trait set it matches or
73 /// Parse \p Str and return the trait property it matches in the set \p Set and
75 TraitProperty getOpenMPContextTraitPropertyKind(TraitSet Set,
89 /// and set name included.
95 /// Return a string listing all trait selectors for \p Set
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
SmallSet.h 24 #include <set>
31 /// delegating to the underlying SmallVector or Set iterators.
37 using SetIterTy = typename std::set<T, C>::const_iterator;
41 /// Iterators to the parts of the SmallSet containing the data. They are set
56 // MSVC STL, where set<T>::const_iterator is not trivially copy constructible.
129 /// SmallSet - This maintains a set of unique values, optimizing for the case
130 /// when the set is small (less than N). In this case, the set can be
131 /// maintained with no mallocs. If the set gets large, we expand to using an
132 /// std::set to maintain reasonable lookup times
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/testsuite/mips/
utils-dsp.inc 33 # Set dsp control register <= crin
49 # Set dsp control register <= crin
63 # Set dsp control register <= crin
75 # Set dsp control register <= crin
87 # Set dsp control register <= crin
101 # Set dsp control register <= crin
116 # Set dsp control register <= crin
131 # Set dsp control register <= crin
142 # Set dsp control register <= crin
143 # Set $ac3 <= {hiin, loin
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/mips/
utils-dsp.inc 33 # Set dsp control register <= crin
49 # Set dsp control register <= crin
63 # Set dsp control register <= crin
75 # Set dsp control register <= crin
87 # Set dsp control register <= crin
101 # Set dsp control register <= crin
116 # Set dsp control register <= crin
131 # Set dsp control register <= crin
142 # Set dsp control register <= crin
143 # Set $ac3 <= {hiin, loin
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_vector_clock.h 25 void Set(Sid sid, Epoch v);
44 ALWAYS_INLINE void VectorClock::Set(Sid sid, Epoch v) {
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_vector_clock.h 25 void Set(Sid sid, Epoch v);
44 ALWAYS_INLINE void VectorClock::Set(Sid sid, Epoch v) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
WasmEHFuncInfo.h 45 const auto &Set = UnwindDestToSrcs.lookup(BB);
47 for (const auto P : Set)
71 const auto &Set = UnwindDestToSrcs.lookup(MBB);
73 for (const auto P : Set)
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXString.cpp 114 CXStringSet *Set = new CXStringSet;
115 Set->Count = Strings.size();
116 Set->Strings = new CXString[Set->Count];
117 for (unsigned SI = 0, SE = Set->Count; SI < SE; ++SI)
118 Set->Strings[SI] = createDup(Strings[SI]);
119 return Set;
185 void clang_disposeStringSet(CXStringSet *set) {
186 for (unsigned SI = 0, SE = set->Count; SI < SE; ++SI)
187 clang_disposeString(set->Strings[SI])
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugAranges.cpp 17 #include <set>
27 DWARFDebugArangeSet Set;
31 Set.extract(DebugArangesData, &Offset, RecoverableErrorHandler)) {
35 uint64_t CUOffset = Set.getCompileUnitDIEOffset();
36 for (const auto &Desc : Set.descriptors()) {
88 std::multiset<uint64_t> ValidCUs; // Maintain the set of CUs describing
104 // Update the set of valid CUs.
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 54 // Except for Set methods, all methods are const or static, which provides an
72 Set(rhs);
76 void Set(const FilePath& rhs) {
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/
synth_access_traits.hpp 52 template<typename Type_Traits, bool Set, typename _ATraits>
55 synth_access_traits<Type_Traits, Set, _ATraits>
58 template<typename Type_Traits, bool Set, typename _ATraits>
100 static integral_constant<int, Set> s_set_ind;
104 integral_constant<int,Set>
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/
synth_access_traits.hpp 52 template<typename Type_Traits, bool Set, typename _ATraits>
55 synth_access_traits<Type_Traits, Set, _ATraits>
58 template<typename Type_Traits, bool Set, typename _ATraits>
100 static integral_constant<int, Set> s_set_ind;
104 integral_constant<int,Set>
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPContext.cpp 31 ActiveTraits.set(unsigned(IsDeviceCompilation
50 ActiveTraits.set(unsigned(TraitProperty::device_kind_cpu));
55 ActiveTraits.set(unsigned(TraitProperty::device_kind_gpu));
65 ActiveTraits.set(unsigned(TraitProperty::Enum)); \
68 ActiveTraits.set(unsigned(TraitProperty::Enum)); \
78 ActiveTraits.set(unsigned(TraitProperty::implementation_vendor_llvm));
81 ActiveTraits.set(unsigned(TraitProperty::user_condition_true));
84 ActiveTraits.set(unsigned(TraitProperty::device_kind_any));
303 llvm_unreachable("Unknown trait set is not to be used!");
404 llvm_unreachable("Unknown trait set!");
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/
TBEHandler.cpp 93 /// YAML traits for set of ELFSymbols.
94 template <> struct CustomMappingTraits<std::set<ELFSymbol>> {
95 static void inputOne(IO &IO, StringRef Key, std::set<ELFSymbol> &Set) {
98 Set.insert(Sym);
101 static void output(IO &IO, std::set<ELFSymbol> &Set) {
102 for (auto &Sym : Set)
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
ImmutableGraph.h 15 /// those sets in memory are compact. For instance, a set of edges is
121 V.set(Idx);
134 /// Return the number of elements in the set
136 /// Return the size of the set's domain
138 /// Set union
144 /// Set intersection
150 /// Set disjoint union
160 void set(size_type Idx) { V.set(Idx); } function in class:llvm::ImmutableGraph::NodeSet
164 const NodeSet &Set;
248 void set(size_type Idx) { V.set(Idx); } function in class:llvm::ImmutableGraph::EdgeSet
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/bfin/
cec-syscfg-ssstep.S 10 # Set up exception handler
29 # Single step and set a new bit every time
57 # Set a new bit in R6 every single step to match R7
  /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/
cec-syscfg-ssstep.S 10 # Set up exception handler
29 # Single step and set a new bit every time
57 # Set a new bit in R6 every single step to match R7
  /src/external/bsd/zstd/dist/build/single_file_libs/
combine.py 22 from typing import Any, List, Optional, Pattern, Set, TextIO
24 # Set of file roots when searching (equivalent to -I paths for the compiler).
25 roots: Set[Path] = set()
27 # Set of (canonical) file Path objects to exclude from inlining (and not only
29 excludes: Set[Path] = set()
31 # Set of (canonical) file Path objects to keep as include directives.
32 keeps: Set[Path] = set()
    [all...]

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 91011>>