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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
FormatCommon.h 21 AlignStyle Where;
25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount,
27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {}
49 switch (Where) {
FormatAdapters.h 28 AlignStyle Where;
33 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill)
34 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount),
39 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style);
86 detail::AlignAdapter<T> fmt_align(T &&Item, AlignStyle Where, size_t Amount,
88 return detail::AlignAdapter<T>(std::forward<T>(Item), Where, Amount, Fill);
FormatVariadic.h 51 ReplacementItem(StringRef Spec, size_t Index, size_t Align, AlignStyle Where,
54 Where(Where), Pad(Pad), Options(Options) {}
60 AlignStyle Where = AlignStyle::Right;
70 static bool consumeFieldLayout(StringRef &Spec, AlignStyle &Where,
99 FmtAlign Align(*W, R.Where, R.Align, R.Pad);
191 // loc - Where to print the formatted text within the field. Only valid if
  /src/external/apache2/llvm/dist/llvm/lib/Support/
FormatVariadic.cpp 27 bool formatv_object_base::consumeFieldLayout(StringRef &Spec, AlignStyle &Where,
29 Where = AlignStyle::Right;
45 Where = *Loc;
48 Where = *Loc;
65 AlignStyle Where = AlignStyle::Right;
76 if (!consumeFieldLayout(RepString, Where, Align, Pad))
89 return ReplacementItem{Spec, Index, Align, Where, Pad, Options};
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyMemIntrinsicResults.cpp 15 /// where %dst and %dst_new registers contain the same value.
102 MachineInstr *Where = O.getParent();
105 if (&MI == Where || !MDT.dominates(&MI, Where))
109 SlotIndex WhereIdx = LIS.getInstructionIndex(*Where);
120 LLVM_DEBUG(dbgs() << "Setting operand " << O << " in " << *Where << " from "
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
GlobalDCE.cpp 111 auto Where = ConstantDependenciesCache.find(CE);
112 if (Where != ConstantDependenciesCache.end()) {
113 auto const &K = Where->second;
295 // directed graph where nodes are global variables, and an edge from A to B
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProfWriter.cpp 39 uint64_t Pos; // Where to patch.
208 ProfilingData::iterator Where;
209 std::tie(Where, NewFunc) =
215 InstrProfRecord &Dest = Where->second;
231 ProfilingData::iterator Where;
232 std::tie(Where, NewFunc) =
234 InstrProfRecord &Dest = Where->second;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ValueMapper.cpp 263 /// (referencing new operands) where necessary.
308 /// where to continue the loop through the operands.
615 auto Where = Info.find(&Op);
616 assert(Where != Info.end() && "Expected a valid reference");
618 auto &OpD = Where->second;
722 auto Where = Info.find(Op);
723 return Where != Info.end() && Where->second.HasChanged;
  /src/sys/arch/emips/ebus/
flash_ebus.c 383 volatile uint8_t * Where = Offset;
384 *Where = Value;
389 volatile uint8_t * Where = Offset;
390 *Value = *Where;
395 volatile uint16_t * Where = Offset;
396 *Where = Value;
401 volatile uint16_t * Where = Offset;
402 *Value = *Where;
410 volatile uint32_t * Where = Offset;
411 *Where = Value
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 448 union acpi_operand_object **Where; /* Target of Index */
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonVectorCombine.cpp 92 int Length, int Where) const;
652 Instruction *Where = Move.Main.front();
655 // Move all deps to before Where, keeping order.
657 D->moveBefore(Where);
658 // Move all main instructions to after Where, keeping order.
661 M->moveAfter(Where);
662 Where = M;
668 // Move all main instructions to before Where, inverting order.
671 M->moveBefore(Where);
672 Where = M
    [all...]

Completed in 47 milliseconds