HomeSort by relevance Sort by last modified time
    Searched defs:ValueSet (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /external/llvm/include/llvm/Transforms/Utils/
CodeExtractor.h 45 typedef SetVector<Value *> ValueSet;
105 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs) const;
111 Function *constructFunction(const ValueSet &inputs,
112 const ValueSet &outputs,
121 ValueSet &inputs,
122 ValueSet &outputs);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CodeExtractor.h 48 typedef SetVector<Value *> ValueSet;
122 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs) const;
128 Function *constructFunction(const ValueSet &inputs,
129 const ValueSet &outputs,
143 ValueSet &inputs,
144 ValueSet &outputs);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Utils/
CodeExtractor.h 49 typedef SetVector<Value *> ValueSet;
107 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs,
108 const ValueSet &Allocas) const;
123 void findAllocas(ValueSet &SinkCands, ValueSet &HoistCands,
140 Function *constructFunction(const ValueSet &inputs,
141 const ValueSet &outputs,
155 ValueSet &inputs,
156 ValueSet &outputs)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Utils/
CodeExtractor.h 49 typedef SetVector<Value *> ValueSet;
107 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs,
108 const ValueSet &Allocas) const;
123 void findAllocas(ValueSet &SinkCands, ValueSet &HoistCands,
140 Function *constructFunction(const ValueSet &inputs,
141 const ValueSet &outputs,
155 ValueSet &inputs,
156 ValueSet &outputs)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
CodeExtractor.h 48 typedef SetVector<Value *> ValueSet;
122 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs) const;
128 Function *constructFunction(const ValueSet &inputs,
129 const ValueSet &outputs,
143 ValueSet &inputs,
144 ValueSet &outputs);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/Utils/
CodeExtractor.h 49 typedef SetVector<Value *> ValueSet;
107 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs,
108 const ValueSet &Allocas) const;
123 void findAllocas(ValueSet &SinkCands, ValueSet &HoistCands,
140 Function *constructFunction(const ValueSet &inputs,
141 const ValueSet &outputs,
155 ValueSet &inputs,
156 ValueSet &outputs)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/Utils/
CodeExtractor.h 49 typedef SetVector<Value *> ValueSet;
107 void findInputsOutputs(ValueSet &Inputs, ValueSet &Outputs,
108 const ValueSet &Allocas) const;
123 void findAllocas(ValueSet &SinkCands, ValueSet &HoistCands,
140 Function *constructFunction(const ValueSet &inputs,
141 const ValueSet &outputs,
155 ValueSet &inputs,
156 ValueSet &outputs)
    [all...]
  /art/compiler/optimizing/
gvn.cc 29 * A ValueSet holds instructions that can replace other instructions. It is updated
37 class ValueSet : public ArenaObject<kArenaAllocGvn> {
39 // Constructs an empty ValueSet which owns all its buckets.
40 explicit ValueSet(ScopedArenaAllocator* allocator)
54 ValueSet(ScopedArenaAllocator* allocator, const ValueSet& other)
67 void PopulateFrom(const ValueSet& other) {
78 bool CanHoldCopyOf(const ValueSet& other, bool exact_match) {
145 void IntersectWith(ValueSet* predecessor) {
164 void PopulateFromInternal(const ValueSet& other)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractBiMap.java 215 private transient Set<V> valueSet;
222 Set<V> result = valueSet;
223 return (result == null) ? valueSet = new ValueSet() : result;
226 private class ValueSet extends ForwardingSet<V> {
LinkedHashMultimap.java 259 return new ValueSet(key, valueSetCapacity);
303 final class ValueSet extends Sets.ImprovedAbstractSet<V> implements ValueSetLink<K, V> {
319 ValueSet(K key, int expectedValues) {
371 return nextEntry != ValueSet.this;
390 ValueSet.this.remove(toRemove.getValue());
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractBiMap.java 211 private transient Set<V> valueSet;
218 Set<V> result = valueSet;
219 return (result == null) ? valueSet = new ValueSet() : result;
222 private class ValueSet extends ForwardingSet<V> {
LinkedHashMultimap.java 255 return new ValueSet(key, valueSetCapacity);
299 final class ValueSet extends Sets.ImprovedAbstractSet<V> implements ValueSetLink<K, V> {
315 ValueSet(K key, int expectedValues) {
367 return nextEntry != ValueSet.this;
386 ValueSet.this.remove(toRemove.getValue());
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 134 static bool ValueSet(bit_value_t V) {
414 return ValueSet(FilterBitValues[i]);
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 538 SmallPtrSetImpl<Value *> &ValueSet = I.second;
539 if (ValueSet.count(getValPtr()))
540 ValueSet.erase(getValPtr());
541 if (ValueSet.empty())
    [all...]
LoopAccessAnalysis.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
CPPBackend.cpp 86 typedef std::set<const Value*> ValueSet;
99 ValueSet DefinedValues;
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
ARMDecoderEmitter.cpp 178 static bool ValueSet(bit_value_t V) {
470 return ValueSet(FilterBitValues[i]);
    [all...]
FixedLenDecoderEmitter.cpp 42 static bool ValueSet(bit_value_t V) {
322 return ValueSet(FilterBitValues[i]);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 300 typedef SmallPtrSet<Value *, 16> ValueSet;
490 ValueSet MustGather;
    [all...]
  /prebuilts/misc/common/robolectric/3.1.1/lib/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/backport-util-concurrent/backport-util-concurrent/3.1/
backport-util-concurrent-3.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/23.6-android/
guava-23.6-android.jar 
  /external/dagger2/lib/
auto-value-1.4.1.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 

Completed in 432 milliseconds

1 2 3 4 5 6