HomeSort by: relevance | last modified time | path
    Searched defs:Extra (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclFriend.cpp 56 std::size_t Extra =
59 auto *FD = new (C, DC, Extra) FriendDecl(DC, L, Friend, FriendL,
67 std::size_t Extra =
69 return new (C, ID, Extra) FriendDecl(EmptyShell(), FriendTypeNumTPLists);
Expr.cpp 3132 // FIXME: We should be able to return "true" here, but it can lead to extra
4441 unsigned Extra = sizeOfTrailingObjects(HasFPFeatures);
4443 C.Allocate(sizeof(BinaryOperator) + Extra, alignof(BinaryOperator));
4453 unsigned Extra = sizeOfTrailingObjects(HasFPFeatures);
4455 C.Allocate(sizeof(BinaryOperator) + Extra, alignof(BinaryOperator));
4462 unsigned Extra = sizeOfTrailingObjects(HasFPFeatures);
4463 void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra,
4475 unsigned Extra = sizeOfTrailingObjects(HasFPFeatures);
4476 void *Mem = C.Allocate(sizeof(CompoundAssignOperator) + Extra,
  /src/external/apache2/llvm/dist/llvm/lib/Support/
IntervalMap.cpp 130 const unsigned Extra = (Elements + Grow) % Nodes;
134 Sum += NewSize[n] = PerNode + (n < Extra);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 89 StringRef Extra = StringRef());
117 /// any \p Extra context specifiers in GNU line directives.
120 StringRef Extra) {
133 if (!Extra.empty())
134 OS << Extra;
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
GCNILPSched.cpp 63 unsigned Extra = 0;
70 Extra = 0;
73 ++Extra;
76 SethiUllmanNumber += Extra;
134 // been scheduled will induce a copy. Model this as an extra cycle of latency.
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
EarlyIfConversion.cpp 702 // Are there extra Tail predecessors?
924 unsigned Extra; // Count of extra cycles that the component adds.
940 unsigned Extra = CondDepth - MaxDepth;
941 LLVM_DEBUG(dbgs() << "Condition adds " << Extra << " cycles.\n");
942 if (Extra > Cond.Extra)
943 Cond = {Extra, CondDepth};
944 if (Extra > CritLimit) {
953 unsigned Extra = TDepth - MaxDepth
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 472 * Extra object is used as additional storage for types that
541 ACPI_OBJECT_EXTRA Extra;
aclocal.h 1080 UINT8 Extra;
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AsmWriter.cpp 1798 auto Extra = DINode::splitFlags(Flags, SplitFlags);
1806 if (Extra || SplitFlags.empty())
1807 Out << FlagsFS << Extra;
1822 auto Extra = DISubprogram::splitFlags(Flags, SplitFlags);
1830 if (Extra || SplitFlags.empty())
1831 Out << FlagsFS << Extra;
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 3456 // Add extra space for alignment if needed.
4615 // Add an extra undefined element to the shuffle.
4622 // Add an extra element to the shuffle, taking it from element Elem of Op.
5925 unsigned Extra = (VT.getSizeInBits() - N0.getValueSizeInBits());
5926 unsigned NewShlAmt = ShlAmt->getZExtValue() + Extra;
5927 unsigned NewSraAmt = SraAmt->getZExtValue() + Extra;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 484 /// Extra clause to be checked before the switch
485 Value *Extra = nullptr;
662 /// One "Extra" case is allowed to differ from the other.
698 // We allow only one "Extra" case to be checked before the switch
699 if (!Extra) {
700 Extra = V;
2888 // with PHI nodes. If there are other instructions, merging would cause extra
4205 Value *ExtraCase = ConstantCompare.Extra;
4222 // If Extra was used, we require at least two switch values to do the
4249 // If there are any extra values that couldn't be folded into the switc
    [all...]

Completed in 103 milliseconds