/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64A57FPLoadBalancing.cpp | 101 enum class Color { Even, Odd }; 139 bool colorChain(Chain *G, Color C, MachineBasicBlock &MBB); 140 int scavengeRegister(Chain *G, Color C, MachineBasicBlock &MBB); 146 Color getColor(unsigned Register); 147 Chain *getAndEraseNext(Color PreferredColor, std::vector<Chain*> &L); 200 Color LastColor; 202 Chain(MachineInstr *MI, unsigned Idx, Color C) 211 void add(MachineInstr *MI, unsigned Idx, Color C) { 258 Color getPreferredColor() { 260 return OverrideBalance == 1 ? Color in getPreferredColor() 102 enum class Color { Even, Odd }; global() enum [all...] |
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | StackSlotColoring.cpp | 302 int Color = -1; in ColorSlot() local 310 Color = UsedColors[StackID].find_first(); in ColorSlot() 311 while (Color != -1) { in ColorSlot() 312 if (!Assignments[Color].overlaps(li)) { in ColorSlot() 317 Color = UsedColors[StackID].find_next(Color); in ColorSlot() 321 if (Color != -1 && MFI->getStackID(Color) != MFI->getStackID(FI)) { in ColorSlot() 330 Color = NextColors[StackID]; in ColorSlot() 331 UsedColors[StackID].set(Color); in ColorSlot() 335 assert(MFI->getStackID(Color) == MFI->getStackID(FI)); in ColorSlot() 338 Assignments[Color].add(li, LIUAlloc); in ColorSlot() [all …]
|
H A D | MachineFunctionPass.cpp | 144 bool Color = llvm::is_contained( in runOnFunction() local 147 StringRef Removed = Color ? "\033[31m-%l\033[0m\n" : "-%l\n"; in runOnFunction() 148 StringRef Added = Color ? "\033[32m+%l\033[0m\n" : "+%l\n"; in runOnFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | EHPersonalities.cpp | 127 BasicBlock *Color; in colorEHFunclets() local 128 std::tie(Visiting, Color) = Worklist.pop_back_val(); in colorEHFunclets() 131 << Color->getName() << "\n"); in colorEHFunclets() 135 Color = Visiting; in colorEHFunclets() 139 if (!is_contained(Colors, Color)) in colorEHFunclets() 140 Colors.push_back(Color); in colorEHFunclets() 145 dbgs() << " Assigned color \'" << Color->getName() in colorEHFunclets() 149 BasicBlock *SuccColor = Color; in colorEHFunclets()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTDumperUtils.h | 30 llvm::raw_ostream::Colors Color; member 91 ColorScope(llvm::raw_ostream &OS, bool ShowColors, TerminalColor Color) in ColorScope() argument 94 OS.changeColor(Color.Color, Color.Bold); in ColorScope()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGPrinter.cpp | 221 void SelectionDAG::setGraphColor(const SDNode *N, const char *Color) { in setGraphColor() argument 223 NodeGraphAttrs[N] = std::string("color=") + Color; in setGraphColor() 233 bool SelectionDAG::setSubgraphColorHelper(SDNode *N, const char *Color, DenseSet<SDNode *> &visited, in setSubgraphColorHelper() argument 249 setGraphColor(N, Color); in setSubgraphColorHelper() 253 hit_limit = setSubgraphColorHelper(*i, Color, visited, level+1, printed) || hit_limit; in setSubgraphColorHelper() 265 void SelectionDAG::setSubgraphColor(SDNode *N, const char *Color) { in setSubgraphColor() argument 269 if (setSubgraphColorHelper(N, Color, visited, 0, printed)) { in setSubgraphColor() 271 if (strcmp(Color, "red") == 0) { in setSubgraphColor() 273 } else if (strcmp(Color, "yellow") == 0) { in setSubgraphColor()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | TextNodeDumper.cpp | 75 ColorScope Color(OS, ShowColors, NullColor); in Visit() local 81 ColorScope Color(OS, ShowColors, CommentColor); in Visit() local 93 ColorScope Color(OS, ShowColors, AttrColor); in Visit() local 128 ColorScope Color(OS, ShowColors, NullColor); in Visit() local 133 ColorScope Color(OS, ShowColors, StmtColor); in Visit() local 143 ColorScope Color(OS, ShowColors, ErrorsColor); in Visit() local 148 ColorScope Color(OS, ShowColors, ValueKindColor); in Visit() local 162 ColorScope Color(OS, ShowColors, ObjectKindColor); in Visit() local 190 ColorScope Color(OS, ShowColors, NullColor); in Visit() local 196 ColorScope Color(OS, ShowColors, TypeColor); in Visit() local [all …]
|
H A D | ASTDumper.cpp | 29 ColorScope Color(OS, ShowColors, NullColor); in dumpInvalidDeclContext() local 40 ColorScope Color(OS, ShowColors, DeclKindNameColor); in dumpInvalidDeclContext() local 46 ColorScope Color(OS, ShowColors, DeclNameColor); in dumpInvalidDeclContext() local 76 ColorScope Color(OS, ShowColors, DeclNameColor); in dumpLookups() local 105 ColorScope Color(OS, ShowColors, UndeserializedColor); in dumpLookups() local
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
H A D | xray-color-helper.cpp | 84 convertToHSV(const std::tuple<uint8_t, uint8_t, uint8_t> &Color) { in convertToHSV() argument 85 double Scaled[3] = {std::get<0>(Color) / 255.0, std::get<1>(Color) / 255.0, in convertToHSV() 86 std::get<2>(Color) / 255.0}; in convertToHSV() 121 convertToRGB(const std::tuple<double, double, double> &Color) { in convertToRGB() argument 122 const double &H = std::get<0>(Color); in convertToRGB() 123 const double &S = std::get<1>(Color); in convertToRGB() 124 const double &V = std::get<2>(Color); in convertToRGB()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | WithColor.cpp | 44 WithColor::WithColor(raw_ostream &OS, HighlightColor Color, ColorMode Mode) in WithColor() argument 48 switch (Color) { in WithColor() 143 WithColor &WithColor::changeColor(raw_ostream::Colors Color, bool Bold, in changeColor() argument 146 OS.changeColor(Color, Bold, BG); in changeColor()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | WithColor.h | 66 /// @param Color ANSI color to use, the special SAVEDCOLOR can be used to 72 raw_ostream &OS, raw_ostream::Colors Color = raw_ostream::SAVEDCOLOR, 75 changeColor(Color, Bold, BG); in OS() 116 /// @param Color ANSI color to use, the special SAVEDCOLOR can be used to 120 WithColor &changeColor(raw_ostream::Colors Color, bool Bold = false,
|
H A D | FormattedStream.h | 182 raw_ostream &changeColor(enum Colors Color, bool Bold, bool BG) override { 185 raw_ostream::changeColor(Color, Bold, BG); 148 changeColor(enum Colors Color,bool Bold,bool BG) changeColor() argument
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyRegColoring.cpp | 290 size_t Color = I; in runOnMachineFunction() local 301 Color = C; in runOnMachineFunction() 306 Register New = SortedIntervals[Color]->reg(); in runOnMachineFunction() 309 UsedColors.set(Color); in runOnMachineFunction() 310 Assignments[Color].push_back(LI); in runOnMachineFunction()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
H A D | RenderingSupport.h | 50 raw_ostream::Colors Color, 54 OS.changeColor(Color, Bold, BG);
|
H A D | CoverageViewOptions.h | 62 raw_ostream::Colors Color) const { 63 return llvm::colored_ostream(OS, Color, Colors);
|
H A D | SourceCoverageViewHTML.cpp | 970 std::optional<StringRef> Color; in renderLine() local 976 return tag("span", Snippet, std::string(*Color)); in renderLine() 978 return tag("span", Snippet, "region " + std::string(*Color)); in renderLine() 982 return S && (!S->IsGapRegion || (Color && *Color == "red")) && in renderLine() 987 Color = "red"; in renderLine() 995 Color = "red"; in renderLine() 997 Color = "cyan"; in renderLine() 999 Color = std::nullopt; in renderLine() 1001 if (Color) in renderLine() 1006 if (Color && Segments.empty()) in renderLine()
|
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/ |
H A D | TextDiagnostic.h | 48 enum llvm::raw_ostream::Colors Color; member 50 : Start(S), End(E), Color(C){}; in StyleRange()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | MarkupFilter.cpp | 422 Color = *SGRColor; in trySGR() 424 OS.changeColor(*Color); in trySGR() 436 OS.changeColor(Color == raw_ostream::Colors::BLUE ? raw_ostream::Colors::CYAN in highlight() 453 if (Color) { in restoreColor() 454 OS.changeColor(*Color, Bold); in restoreColor() 464 if (!Color && !Bold) in resetColor() 466 Color.reset(); in resetColor()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/ |
H A D | TimelineView.cpp | 126 raw_ostream::Colors Color = chooseColor(Cycles, Executions, BufferSize); in tryChangeColor() local 127 if (Color == raw_ostream::SAVEDCOLOR) { in tryChangeColor() 131 OS.changeColor(Color, /* bold */ true, /* BG */ false); in tryChangeColor()
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | gimp | 36 >22 belong 0 RGB Color 38 >22 belong 2 Indexed Color
|
H A D | icc | 4 # icc: file(1) magic for International Color Consortium file formats 7 # Color profiles as per the ICC's "Image technology colour management - 32 # to be for "ColorSync ICC Color Profile" rather than "Kodak Color
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIMachineScheduler.cpp | 655 int Color = NextReservedID; in colorHighLatenciesGroups() local 679 int ProposedColor = Color; in colorHighLatenciesGroups() 756 Color = ++NextReservedID; in colorHighLatenciesGroups() 757 ProposedColor = Color; in colorHighLatenciesGroups() 763 Color = ++NextReservedID; in colorHighLatenciesGroups() 764 ProposedColor = Color; in colorHighLatenciesGroups() 1182 unsigned Color = CurrentColoring[SU->NodeNum]; in createBlocksForVariant() local 1183 if (RealID.find(Color) == RealID.end()) { in createBlocksForVariant() 1187 RealID[Color] = ID; in createBlocksForVariant() 1189 CurrentBlocks[RealID[Color]]->addUnit(SU); in createBlocksForVariant() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/iio/light/ |
H A D | cm36651.txt | 1 * Capella CM36651 I2C Proximity and Color Light sensor
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | CFGPrinter.h | 326 std::string Color = getHeatColor(Freq, CFGInfo->getMaxFreq()); 332 " fillcolor=\"" + Color + "70\"" +
|
/freebsd/contrib/libxo/doc/ |
H A D | field-roles.rst | 45 .. index:: Field Roles; Color 48 The Color Role ({C:}) 77 Color names are prefixed with either "fg-" or "bg-" to change the 122 good idea. Color should enhance output, but should not be used as the
|