HomeSort by relevance Sort by last modified time
    Searched defs:Values (Results 26 - 50 of 54) sorted by null

12 3

  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 48 typedef SetVector<Value*> Values;
74 /// These values must be passed in as live-ins to the function.
85 void findInputsOutputs(Values &inputs, Values &outputs);
87 Function *constructFunction(const Values &inputs,
88 const Values &outputs,
97 Values &inputs,
98 Values &outputs);
129 // containing PHI nodes merging values from outside of the region, and a
131 // incoming values from inside of the region
    [all...]
PromoteMemoryToRegister.cpp 134 RenamePassData() : BB(NULL), Pred(NULL), Values() {}
136 const ValVector &V) : BB(B), Pred(P), Values(V) {}
139 ValVector Values;
144 Values.swap(RHS.Values);
328 // Remember the basic blocks which define new values for the alloca
541 // Set the incoming values for the basic block to be null values for all of
545 RenamePassData::ValVector Values(Allocas.size());
547 Values[i] = UndefValue::get(Allocas[i]->getAllocatedType())
    [all...]
SimplifyCFG.cpp 92 // conflicting incoming values from the two switch blocks.
111 /// now be entries in it from the 'NewPred' block. The values that will be
352 /// Values vector.
378 // If there are a ton of values, we don't want to make a ginormous switch.
621 // which value (or set of values) this is.
627 return false; // Cannot handle multiple values coming to this block.
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 11 // engine, which structurally compares global values within a module.
120 /// The current mapping from old local values to new local values.
121 DenseMap<Value*, Value*> Values;
184 Values[L] = R;
376 // Ask the engine about global values.
432 // Fall out if the values have different kind.
444 return Values[L] == R || TentativeValues.count(std::make_pair(L, R));
447 return Values[L] == R;
472 Values[&*LI] = &*RI
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 31 // runEnums - Print out enum values for all of the registers.
41 EmitSourceFileHeader("Target Register Enum Values", OS);
421 BitVector Values;
424 if (v >= Values.size())
425 Values.resize(((v/8)+1)*8); // Round up to the next byte.
426 Values[v] = true;
430 printBitVectorAsHex(OS, Values, 8);
572 // Asserts to make sure values will fit in table assuming types from
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
NewXmlFileWizard.java 79 private Values mValues;
87 mValues = new Values();
105 protected NewXmlFileCreationPage createMainPage(NewXmlFileWizard.Values values) {
106 return new NewXmlFileCreationPage(MAIN_PAGE_NAME, values);
375 * Specific New XML File wizard tied to the {@link ResourceFolderType#VALUES} type
385 setWindowTitle("New Android Values XML File");
386 super.mMainPage.setTitle("New Android Values XML File");
387 super.mMainPage.setDescription("Creates a new Android Values XML file.");
388 super.mMainPage.setInitialFolderType(ResourceFolderType.VALUES);
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 249 std::vector<char*> Values;
256 for (size_t I = 0, E = Values.size(); I != E; ++I) {
257 delete[] Values[I];
259 Values.clear();
279 Values.push_back(Dest);
531 /// ConstantExpr values.
    [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 454 llvm::Constant *Values[2] = { Zero, Zero };
455 return llvm::ConstantStruct::getAnon(Values);
    [all...]
CGObjCMac.cpp 100 /// The messenger used when the return value is returned in two values on the
5870 llvm::Constant *values[] = { fn, GetMethodVarName(selector) }; local
    [all...]
  /external/llvm/include/llvm/Support/
CommandLine.h 72 // PrintOptionValues - Print option values.
73 // With -print-options print the difference between option values and defaults.
74 // With -print-all-options print all option values.
380 // Non-class option values.
445 // values - For custom data types, allow specifying a group of values together
446 // as the values that go into the mapping that the option handler uses. Note
447 // that the values list must always have a 0 at the end of the list to indicate
455 SmallVector<std::pair<const char *, std::pair<int, const char *> >,4> Values;
461 Values.push_back(std::make_pair(EnumName, std::make_pair(Val, Desc)))
482 ValuesClass<DataType> END_WITH_NULL values(const char *Arg, DataType Val, function in namespace:llvm::cl
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 11 // types, values, and high-level data structures.
79 /// typeIsConvertibleTo - Return true if all values of 'this' type can be
115 // all values of type 'RHS' can be converted to the 'this' type.
296 // ListRecTy - 'list<Ty>' - Represent a list of values, all of which must be of
298 /// ListRecTy - 'list&lt;Ty&gt;' - Represent a list of values, all of which must
444 /// isComplete - This virtual method should be overridden by values that may
733 std::vector<Init*> Values;
739 : TypedInit(ListRecTy::get(EltTy)), Values(Range.begin(), Range.end()) {}
749 unsigned getSize() const { return Values.size(); }
751 assert(i < Values.size() && "List element index out of range!")
    [all...]
  /libcore/luni/src/main/java/java/util/
HashMap.java 31 * <p>All elements are permitted as keys or values, including null.
51 * @param <V> the type of mapped values
119 private transient Collection<V> values; field in class:HashMap
246 result.values = null;
686 * Returns a collection of the values contained in this map. The collection
704 * @return a collection of the values contained in this map.
706 @Override public Collection<V> values() { method in class:HashMap
707 Collection<V> vs = values;
708 return (vs != null) ? vs : (values = new Values());
    [all...]
Hashtable.java 30 * <p>Neither keys nor values can be null. (Use {@code HashMap} or {@code LinkedHashMap} if you
31 * need null keys or values.)
34 * @param <V> the type of mapped values
98 private transient Collection<V> values; field in class:Hashtable
223 result.values = null;
601 * Returns a collection of the values contained in this {@code Hashtable}.
605 * @return a collection of the values.
607 public synchronized Collection<V> values() { method in class:Hashtable
608 Collection<V> vs = values;
609 return (vs != null) ? vs : (values = new Values())
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 71 * @param <V> the type of mapped values
144 transient Collection<V> values; field in class:ConcurrentHashMap
1008 public Collection<V> values() { method in class:ConcurrentHashMap
    [all...]
ConcurrentSkipListMap.java 50 * <em>not</em> permit the use of <tt>null</tt> keys or values because some
51 * null return values cannot be reliably distinguished from the absence of
60 * @param <V> the type of mapped values
111 * using otherwise impossible field values). Using plain nodes
289 * Values: v, value
328 /** Lazily initialized values collection */
329 private transient Values values; field in class:ConcurrentSkipListMap
341 values = null;
358 * Nodes hold keys and values, and are singly linked in sorte
1734 public Collection<V> values() { method in class:ConcurrentSkipListMap
2920 public Collection<V> values() { method in class:ConcurrentSkipListMap.SubMap
    [all...]
  /external/llvm/include/llvm/
Instructions.h 719 unsigned Values, const Twine &NameStr,
722 unsigned Values, const Twine &NameStr,
730 unsigned Values = 1 + unsigned(IdxList.size());
731 return new(Values)
732 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertBefore);
737 unsigned Values = 1 + unsigned(IdxList.size());
738 return new(Values)
739 GetElementPtrInst(Ptr, IdxList, Values, NameStr, InsertAtEnd);
866 unsigned Values,
871 OperandTraits<GetElementPtrInst>::op_end(this) - Values
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 68 /// Configuration values for initial hash set sizes (log2).
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 120 /// The values from the last parsed cpp hash file line comment if any.
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 46 // Floating point values have an explicit -0.0 value.
76 // Check for constant vectors which are splats of -1 values.
81 // Check for constant vectors which are splats of -1 values.
267 /// so. The return values are:
496 /// specified type. This should only be used for simple constant values like
847 SmallVector<Constant*, 8> Values;
850 Values.push_back(Val);
852 return get(T, Values);
    [all...]
Verifier.cpp 537 " does not apply to return values!", V);
639 "Functions cannot return aggregate values!", &F);
672 // Check that the argument values match the function type for this function...
730 SmallVector<std::pair<BasicBlock*, Value*>, 8> Values;
742 // Get and sort all incoming values in the PHI node...
743 Values.clear();
744 Values.reserve(PN->getNumIncomingValues());
746 Values.push_back(std::make_pair(PN->getIncomingBlock(i),
748 std::sort(Values.begin(), Values.end())
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
cu_cmd.c     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /frameworks/compile/mclinker/utils/gtest/include/
gtest.h     [all...]
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 2045 milliseconds

12 3