HomeSort by relevance Sort by last modified time
    Searched defs:Parts (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/ui/gfx/animation/
multi_animation.h 16 // To create a MultiAnimation pass in the parts, invoke Start() and the delegate
46 typedef std::vector<Part> Parts;
48 MultiAnimation(const Parts& parts, base::TimeDelta timer_interval);
76 // The parts that make up the animation.
77 const Parts parts_;
79 // Total time of all the parts.
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 94 const SDValue *Parts, unsigned NumParts,
97 /// getCopyFromParts - Create a value that contains the specified legal parts
98 /// combined into the value they represent. If the parts combine to a type
103 const SDValue *Parts,
108 return getCopyFromPartsVector(DAG, DL, Parts, NumParts,
111 assert(NumParts > 0 && "No parts to assemble!");
113 SDValue Val = Parts[0];
116 // Assemble the value from multiple parts.
132 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2,
134 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2
    [all...]
LegalizeTypesGeneric.cpp 320 SDValue Parts[2];
324 SplitInteger(Op, Parts[0], Parts[1]);
326 std::swap(Parts[0], Parts[1]);
327 IntegerToVector(Parts[0], NumElements, Ops, EltVT);
328 IntegerToVector(Parts[1], NumElements, Ops, EltVT);
338 // Make a two element vector out of the expanded parts and convert that
LegalizeFloatTypes.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 324 unsigned Parts = ArgsParts[i];
326 if (!UseStack && Parts <= RegsLeft) {
328 for (unsigned j = 0; j < Parts; j++) {
337 std::reverse(B, B + Parts);
340 for (unsigned j = 0; j < Parts; j++)
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 72 std::vector<Record*> Parts =
74 if (!Parts.empty()) {
75 if (Parts.size() < 2)
79 for (unsigned i = 0, e = Parts.size(); i != e; ++i)
80 IdxParts.push_back(RegBank.getSubRegIdx(Parts[i]));
350 SmallVector<CodeGenSubRegIndex*, 8> Parts;
352 Parts.push_back(getSubRegIndex(SR->ExplicitSubRegs[j]));
354 // Offer this as an existing spelling for the concatenation of Parts.
355 RegBank.addConcatSubRegIndex(Parts, ExplicitSubRegIndices[i]);
439 SmallVector<CodeGenSubRegIndex*, 8> Parts(1, I->first)
    [all...]

Completed in 928 milliseconds