HomeSort by relevance Sort by last modified time
    Searched refs:Hint (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/mesa3d/src/mesa/main/
hint.c 30 #include "hint.h"
56 if (ctx->Hint.Fog == mode)
59 ctx->Hint.Fog = mode;
64 if (ctx->Hint.LineSmooth == mode)
67 ctx->Hint.LineSmooth = mode;
72 if (ctx->Hint.PerspectiveCorrection == mode)
75 ctx->Hint.PerspectiveCorrection = mode;
80 if (ctx->Hint.PointSmooth == mode)
83 ctx->Hint.PointSmooth = mode;
88 if (ctx->Hint.PolygonSmooth == mode
    [all...]
  /external/v8/src/compiler/
type-hints.h 18 enum Hint { kNone, kSignedSmall, kSigned32, kNumber, kString, kAny };
21 BinaryOperationHints(Hint left, Hint right, Hint result)
29 Hint left() const { return LeftField::decode(bit_field_); }
30 Hint right() const { return RightField::decode(bit_field_); }
31 Hint result() const { return ResultField::decode(bit_field_); }
45 typedef BitField<Hint, 0, 3> LeftField;
46 typedef BitField<Hint, 3, 3> RightField;
47 typedef BitField<Hint, 6, 3> ResultField
    [all...]
type-hints.cc 11 std::ostream& operator<<(std::ostream& os, BinaryOperationHints::Hint hint) {
12 switch (hint) {
36 std::ostream& operator<<(std::ostream& os, ToBooleanHint hint) {
37 switch (hint) {
71 ToBooleanHint const hint = static_cast<ToBooleanHint>(1u << i); local
72 if (hints & hint) {
75 os << hint; local
type-hint-analyzer.cc 5 #include "src/compiler/type-hint-analyzer.h"
19 BinaryOperationHints::Hint ToHint(Type* type) {
  /external/clang/lib/Frontend/Rewrite/
FixItRewriter.cpp 151 const FixItHint &Hint = Info.getFixItHint(Idx);
153 if (Hint.CodeToInsert.empty()) {
154 if (Hint.InsertFromRange.isValid())
155 commit.insertFromRange(Hint.RemoveRange.getBegin(),
156 Hint.InsertFromRange, /*afterToken=*/false,
157 Hint.BeforePreviousInsertions);
159 commit.remove(Hint.RemoveRange);
161 if (Hint.RemoveRange.isTokenRange() ||
162 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd()
    [all...]
  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 105 const FixItHint &Hint = Diag.fixit_begin()[FixIt];
111 LangOpts, Hint.RemoveRange);
113 return cxstring::createDup(Hint.CodeToInsert);
  /external/llvm/include/llvm/CodeGen/
CalcSpillWeights.h 47 /// spill weight and allocation hint.
58 DenseMap<unsigned, float> Hint;
68 /// \brief (re)compute li's spill weight and allocation hint.
MachineRegisterInfo.h 66 /// registers. For each virtual register, it keeps a register and hint type
67 /// pair making up the allocation hint. Hint type is target specific except
69 /// register for allocation. For example, if the hint is <0, 1024>, it means
71 /// register of the hint.
597 /// setRegAllocationHint - Specify a register allocation hint for the
605 /// Specify the preferred register allocation hint for the specified virtual
611 /// getRegAllocationHint - Return the register allocation hint for the
619 /// getSimpleHint - Return the preferred register allocation hint, or 0 if a
620 /// standard simple hint (Type == 0) is not set
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 46 /// This kind of hint should be used when we are certain that the
55 /// insertion hint.
68 /// \brief Empty code modification hint, indicating that no code
76 /// \brief Create a code modification hint that inserts the given
81 FixItHint Hint;
82 Hint.RemoveRange =
84 Hint.CodeToInsert = Code;
85 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
86 return Hint;
89 /// \brief Create a code modification hint that inserts the give
    [all...]
PartialDiagnostic.h 71 /// \brief If valid, provides a hint with some code to insert, remove, or
167 void AddFixItHint(const FixItHint &Hint) const {
168 if (Hint.isNull())
174 DiagStorage->FixItHints.push_back(Hint);
392 const FixItHint &Hint) {
393 PD.AddFixItHint(Hint);
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 98 const FixItHint &Hint = *I;
99 if (Hint.CodeToInsert.empty()) {
100 if (Hint.InsertFromRange.isValid())
101 commit.insertFromRange(Hint.RemoveRange.getBegin(),
102 Hint.InsertFromRange, /*afterToken=*/false,
103 Hint.BeforePreviousInsertions);
105 commit.remove(Hint.RemoveRange);
107 if (Hint.RemoveRange.isTokenRange() ||
108 Hint.RemoveRange.getBegin() != Hint.RemoveRange.getEnd()
    [all...]
  /external/llvm/lib/CodeGen/
VirtRegMap.cpp 85 unsigned Hint = MRI->getSimpleHint(VirtReg);
86 if (!Hint)
88 if (TargetRegisterInfo::isVirtualRegister(Hint))
89 Hint = getPhys(Hint);
90 return getPhys(VirtReg) == Hint;
94 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(VirtReg);
95 if (TargetRegisterInfo::isPhysicalRegister(Hint.second))
97 if (TargetRegisterInfo::isVirtualRegister(Hint.second))
98 return hasPhys(Hint.second)
    [all...]
RegAllocFast.cpp 188 unsigned Hint);
190 unsigned VirtReg, unsigned Hint);
192 unsigned VirtReg, unsigned Hint);
517 unsigned Hint) {
526 if (Hint && (!TargetRegisterInfo::isPhysicalRegister(Hint) ||
527 !RC->contains(Hint) || !MRI->isAllocatable(Hint)))
528 Hint = 0;
530 // Take hint when possible
    [all...]
TargetRegisterInfo.cpp 344 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
348 // TRI::getRegAllocationHints to interpret those hint types.
349 assert(Hint.first == 0 && "Target must implement TRI::getRegAllocationHints");
352 unsigned Phys = Hint.second;
356 // Check that Phys is a valid hint in VirtReg's register class.
CalcSpillWeights.cpp 141 // Find the best physreg hint and the best virtreg hint.
145 // Don't recompute a target specific hint.
186 unsigned hint = copyHint(mi, li.reg, tri, mri); local
187 if (!hint)
193 volatile float hweight = Hint[hint] += weight;
194 if (TargetRegisterInfo::isPhysicalRegister(hint)) {
195 if (hweight > bestPhys && mri.isAllocatable(hint))
196 bestPhys = hweight, hintPhys = hint;
    [all...]
  /system/extras/mmap-perf/
mmapPerf.cpp 52 enum Hint {
57 FileMap(const string &name, size_t size, Hint hint = FILE_MAP_HINT_NONE) : m_name{name}, m_size{size} {
71 switch (hint) {
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 231 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
234 switch (Hint.first) {
248 // the paired register as the first hint.
249 unsigned Paired = Hint.second;
282 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
283 if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
284 Hint.first == (unsigned)ARMRI::RegPairEven) &&
285 TargetRegisterInfo::isVirtualRegister(Hint.second)) {
288 // pair allocation hint must be updated to reflect the relationship
290 unsigned OtherReg = Hint.second
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_context.c 134 tnl->_DoVertexFog = ((tnl->AllowVertexFog && (ctx->Hint.Fog != GL_NICEST))
223 tnl->_DoVertexFog = ((tnl->AllowVertexFog && (ctx->Hint.Fog != GL_NICEST))
233 tnl->_DoVertexFog = ((tnl->AllowVertexFog && (ctx->Hint.Fog != GL_NICEST))
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 40 StringRef Hint = "") {
45 if (!Hint.empty())
46 errs() << Hint << "\n";
55 // Hint for common error of forgetting -sample for sample profiles.
78 StringRef Hint = "";
85 Hint = "Make sure that all profile data to be merged is generated "
93 if (!Hint.empty())
94 errs() << Hint << "\n";
132 // Only show hint the first time an error occurs.
  /external/v8/src/arm/
constants-arm.h 414 enum Hint { no_hint };
417 inline Hint NegateHint(Hint ignored) { return no_hint; }
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_polygon.c 64 ctx->Hint.LineSmooth == GL_NICEST;
  /external/llvm/include/llvm/Support/
SourceMgr.h 271 void addFixIt(const SMFixIt &Hint) {
272 FixIts.push_back(Hint);
  /external/clang/lib/Parse/
ParseStmt.cpp     [all...]
  /external/llvm/tools/llvm-objdump/
COFFDump.cpp 318 outs() << " Hint/Ord Name\n";
327 uint16_t Hint;
329 if (Obj->getHintName(entry->getHintNameRVA(), Hint, Name))
331 outs() << format(" % 6d ", Hint) << Name << "\n";
  /external/clang/include/clang/AST/
OpenMPClause.h     [all...]

Completed in 349 milliseconds

1 2 3 4