Searched refs:Hint (Results 1 - 25 of 74) sorted by relevance

123

/external/mesa3d/src/mesa/main/
H A Dhint.c56 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)
91 ctx->Hint
[all...]
/external/v8/src/compiler/
H A Dtype-hints.h18 enum Hint { enum in class:v8::internal::compiler::final
28 BinaryOperationHints(Hint left, Hint right, Hint result)
36 Hint left() const { return LeftField::decode(bit_field_); }
37 Hint right() const { return RightField::decode(bit_field_); }
38 Hint result() const { return ResultField::decode(bit_field_); }
39 Hint combined() const { return Combine(Combine(left(), right()), result()); }
41 // Hint 'subtyping' and generalization.
42 static bool Is(Hint h
70 enum Hint { enum in class:v8::internal::compiler::final
[all...]
H A Dtype-hints.cc11 std::ostream& operator<<(std::ostream& os, BinaryOperationHints::Hint hint) {
34 std::ostream& operator<<(std::ostream& os, CompareOperationHints::Hint hint) {
109 bool BinaryOperationHints::Is(Hint h1, Hint h2) {
130 BinaryOperationHints::Hint BinaryOperationHints::Combine(Hint h1, Hint h2) {
H A Dsimplified-operator.h130 BinaryOperationHints::Hint BinaryOperationHintOf(const Operator* op);
132 CompareOperationHints::Hint CompareOperationHintOf(const Operator* op);
204 const Operator* SpeculativeNumberAdd(BinaryOperationHints::Hint hint);
205 const Operator* SpeculativeNumberSubtract(BinaryOperationHints::Hint hint);
206 const Operator* SpeculativeNumberMultiply(BinaryOperationHints::Hint hint);
207 const Operator* SpeculativeNumberDivide(BinaryOperationHints::Hint hint);
208 const Operator* SpeculativeNumberModulus(BinaryOperationHints::Hint hint);
210 const Operator* SpeculativeNumberLessThan(CompareOperationHints::Hint hint);
212 CompareOperationHints::Hint hint);
213 const Operator* SpeculativeNumberEqual(CompareOperationHints::Hint hin
[all...]
H A Dsimplified-operator.cc220 BinaryOperationHints::Hint BinaryOperationHintOf(const Operator* op) {
226 return OpParameter<BinaryOperationHints::Hint>(op);
229 CompareOperationHints::Hint CompareOperationHintOf(const Operator* op) {
233 return OpParameter<CompareOperationHints::Hint>(op);
516 BinaryOperationHints::Hint hint) { \
517 return new (zone()) Operator1<BinaryOperationHints::Hint>( \
525 CompareOperationHints::Hint hint) {
526 return new (zone()) Operator1<CompareOperationHints::Hint>(
533 CompareOperationHints::Hint hint) {
534 return new (zone()) Operator1<CompareOperationHints::Hint>(
[all...]
H A Dtype-hint-analyzer.cc19 BinaryOperationHints::Hint ToBinaryOperationHint(Type* type) {
28 CompareOperationHints::Hint ToCompareOperationHint(
/external/clang/lib/Frontend/Rewrite/
H A DFixItRewriter.cpp151 const FixItHint &Hint = Info.getFixItHint(Idx); local
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
[all...]
/external/clang/tools/libclang/
H A DCXStoredDiagnostic.cpp105 const FixItHint &Hint = Diag.fixit_begin()[FixIt]; local
111 LangOpts, Hint.RemoveRange);
113 return cxstring::createDup(Hint.CodeToInsert);
/external/clang/include/clang/Basic/
H A DDiagnostic.h81 FixItHint Hint; local
82 Hint.RemoveRange =
84 Hint.CodeToInsert = Code;
85 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
86 return Hint;
94 FixItHint Hint; local
95 Hint.RemoveRange =
97 Hint.InsertFromRange = FromRange;
98 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
99 return Hint;
105 FixItHint Hint; local
117 FixItHint Hint; local
[all...]
H A DPartialDiagnostic.h167 void AddFixItHint(const FixItHint &Hint) const {
168 if (Hint.isNull())
174 DiagStorage->FixItHints.push_back(Hint);
392 const FixItHint &Hint) {
393 PD.AddFixItHint(Hint);
391 operator <<(const PartialDiagnostic &PD, const FixItHint &Hint) argument
/external/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp98 const FixItHint &Hint = *I; local
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
[all...]
/external/llvm/lib/CodeGen/
H A DVirtRegMap.cpp85 unsigned Hint = MRI->getSimpleHint(VirtReg); local
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); local
95 if (TargetRegisterInfo::isPhysicalRegister(Hint.second))
97 if (TargetRegisterInfo::isVirtualRegister(Hint.second))
98 return hasPhys(Hint
[all...]
H A DRegAllocFast.cpp188 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;
531 if (Hint) {
515 allocVirtReg(MachineInstr *MI, LiveRegMap::iterator LRI, unsigned Hint) argument
590 defineVirtReg(MachineInstr *MI, unsigned OpNum, unsigned VirtReg, unsigned Hint) argument
623 reloadVirtReg(MachineInstr *MI, unsigned OpNum, unsigned VirtReg, unsigned Hint) argument
[all...]
H A DTargetRegisterInfo.cpp344 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
349 assert(Hint.first == 0 && "Target must implement TRI::getRegAllocationHints");
352 unsigned Phys = Hint.second;
H A DCalcSpillWeights.cpp193 volatile float hweight = Hint[hint] += weight;
203 Hint.clear();
/external/llvm/include/llvm/CodeGen/
H A DCalcSpillWeights.h58 DenseMap<unsigned, float> Hint; member in class:llvm::VirtRegAuxInfo
H A DMachineRegisterInfo.h67 /// pair making up the allocation hint. Hint type is target specific except
623 std::pair<unsigned, unsigned> Hint = getRegAllocationHint(VReg); local
624 return Hint.first ? 0 : Hint.second;
/external/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp231 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg); local
234 switch (Hint.first) {
249 unsigned Paired = Hint.second;
282 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg); local
283 if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
284 Hint.first == (unsigned)ARMRI::RegPairEven) &&
285 TargetRegisterInfo::isVirtualRegister(Hint.second)) {
290 unsigned OtherReg = Hint.second;
291 Hint = MRI->getRegAllocationHint(OtherReg);
293 if (Hint
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_context.c134 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/
H A Dllvm-profdata.cpp40 StringRef Hint = "") {
45 if (!Hint.empty())
46 errs() << Hint << "\n";
55 // Hint for common error of forgetting -sample for sample profiles.
78 StringRef Hint = ""; local
85 Hint = "Make sure that all profile data to be merged is generated "
93 if (!Hint.empty())
94 errs() << Hint << "\n";
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv10_state_polygon.c64 ctx->Hint.LineSmooth == GL_NICEST;
/external/llvm/include/llvm/Support/
H A DSourceMgr.h271 void addFixIt(const SMFixIt &Hint) { argument
272 FixIts.push_back(Hint);
/external/v8/src/arm/
H A Dconstants-arm.h430 enum Hint { no_hint }; enum in namespace:v8::internal
433 inline Hint NegateHint(Hint ignored) { return no_hint; }
/external/clang/lib/Parse/
H A DParseStmt.cpp1872 LoopHint Hint; local
1873 if (!HandlePragmaLoopHint(Hint))
1876 ArgsUnion ArgHints[] = {Hint.PragmaNameLoc, Hint.OptionLoc, Hint.StateLoc,
1877 ArgsUnion(Hint.ValueExpr)};
1878 TempAttrs.addNew(Hint.PragmaNameLoc->Ident, Hint.Range, nullptr,
1879 Hint.PragmaNameLoc->Loc, ArgHints, 4,
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp318 outs() << " Hint/Ord Name\n";
327 uint16_t Hint; local
329 if (Obj->getHintName(entry->getHintNameRVA(), Hint, Name))
331 outs() << format(" % 6d ", Hint) << Name << "\n";

Completed in 421 milliseconds

123