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

1234

/external/chromium_org/third_party/mesa/src/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/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/clang/lib/Rewrite/Frontend/
H A DFixItRewriter.cpp146 const FixItHint &Hint = Info.getFixItHint(Idx); local
148 if (Hint.CodeToInsert.empty()) {
149 if (Hint.InsertFromRange.isValid())
150 commit.insertFromRange(Hint.RemoveRange.getBegin(),
151 Hint.InsertFromRange, /*afterToken=*/false,
152 Hint.BeforePreviousInsertions);
154 commit.remove(Hint.RemoveRange);
156 if (Hint.RemoveRange.isTokenRange() ||
157 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/llvm/include/llvm/CodeGen/
H A DCalcSpillWeights.h54 DenseMap<unsigned, float> Hint; member in class:llvm::VirtRegAuxInfo
H A DMachineRegisterInfo.h63 /// pair making up the allocation hint. Hint type is target specific except
614 std::pair<unsigned, unsigned> Hint = getRegAllocationHint(Reg); local
615 return Hint.first ? 0 : Hint.second;
/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.cpp84 unsigned Hint = MRI->getSimpleHint(VirtReg); local
85 if (!Hint)
87 if (TargetRegisterInfo::isVirtualRegister(Hint))
88 Hint = getPhys(Hint);
89 return getPhys(VirtReg) == Hint;
93 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(VirtReg); local
94 if (TargetRegisterInfo::isPhysicalRegister(Hint.second))
96 if (TargetRegisterInfo::isVirtualRegister(Hint.second))
97 return hasPhys(Hint
[all...]
H A DRegAllocFast.cpp189 unsigned Hint);
191 unsigned VirtReg, unsigned Hint);
193 unsigned VirtReg, unsigned Hint);
510 unsigned Hint) {
519 if (Hint && (!TargetRegisterInfo::isPhysicalRegister(Hint) ||
520 !RC->contains(Hint) || !MRI->isAllocatable(Hint)))
521 Hint = 0;
524 if (Hint) {
508 allocVirtReg(MachineInstr *MI, LiveRegMap::iterator LRI, unsigned Hint) argument
583 defineVirtReg(MachineInstr *MI, unsigned OpNum, unsigned VirtReg, unsigned Hint) argument
616 reloadVirtReg(MachineInstr *MI, unsigned OpNum, unsigned VirtReg, unsigned Hint) argument
[all...]
H A DCalcSpillWeights.cpp156 volatile float hweight = Hint[hint] += weight;
166 Hint.clear();
H A DTargetRegisterInfo.cpp270 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg); local
275 assert(Hint.first == 0 && "Target must implement TRI::getRegAllocationHints");
278 unsigned Phys = Hint.second;
/external/clang/include/clang/Basic/
H A DDiagnostic.h80 FixItHint Hint; local
81 Hint.RemoveRange =
83 Hint.CodeToInsert = Code;
84 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
85 return Hint;
93 FixItHint Hint; local
94 Hint.RemoveRange =
96 Hint.InsertFromRange = FromRange;
97 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
98 return Hint;
104 FixItHint Hint; local
116 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/llvm/lib/Target/ARM/
H A DARMBaseRegisterInfo.cpp223 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg); local
226 switch (Hint.first) {
242 if (VRM && VRM->hasPhys(Hint.second)) {
243 PairedPhys = getPairedGPR(VRM->getPhys(Hint.second), Odd, this);
270 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg); local
271 if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
272 Hint.first == (unsigned)ARMRI::RegPairEven) &&
273 TargetRegisterInfo::isVirtualRegister(Hint.second)) {
278 unsigned OtherReg = Hint.second;
279 Hint
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest_0_autogen.h50 EXPECT_CALL(*gl_, Hint(GL_GENERATE_MIPMAP_HINT, GL_DONT_CARE))
55 Hint(GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES, GL_DONT_CARE))
/external/chromium_org/third_party/mesa/src/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/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/chromium_org/v8/src/arm/
H A Dconstants-arm.h402 enum Hint { no_hint }; enum in namespace:v8::internal
405 inline Hint NegateHint(Hint ignored) { return no_hint; }
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnv10_state_polygon.c64 ctx->Hint.LineSmooth == GL_NICEST;
/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.h265 void addFixIt(const SMFixIt &Hint) { argument
266 FixIts.push_back(Hint);
/external/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp324 outs() << " Hint/Ord Name\n";
333 uint16_t Hint; local
335 if (Obj->getHintName(entry->getHintNameRVA(), Hint, Name))
337 outs() << format(" % 6d ", Hint) << Name << "\n";
/external/clang/lib/Parse/
H A DParseStmt.cpp1825 LoopHint Hint = HandlePragmaLoopHint(); local
1828 if (!Hint.LoopLoc || !Hint.OptionLoc || !Hint.ValueLoc)
1831 ArgsUnion ArgHints[] = {Hint.OptionLoc, Hint.ValueLoc,
1832 ArgsUnion(Hint.ValueExpr)};
1833 TempAttrs.addNew(Hint.LoopLoc->Ident, Hint.Range, nullptr,
1834 Hint
[all...]
/external/chromium_org/v8/src/mips/
H A Dconstants-mips.h690 enum Hint {
695 inline Hint NegateHint(Hint hint) {
/external/chromium_org/v8/src/mips64/
H A Dconstants-mips64.h704 enum Hint {
709 inline Hint NegateHint(Hint hint) {

Completed in 1803 milliseconds

1234