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

1 2 3 4

  /external/chromium_org/third_party/mesa/src/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/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/clang/lib/Rewrite/Frontend/
FixItRewriter.cpp 146 const FixItHint &Hint = Info.getFixItHint(Idx);
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.RemoveRange.getEnd()
    [all...]
  /external/clang/tools/libclang/
CXStoredDiagnostic.cpp 103 const FixItHint &Hint = Diag.fixit_begin()[FixIt];
109 LangOpts, Hint.RemoveRange);
111 return cxstring::createDup(Hint.CodeToInsert);
  /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 81 unsigned Hint = MRI->getSimpleHint(VirtReg);
82 if (!Hint)
84 if (TargetRegisterInfo::isVirtualRegister(Hint))
85 Hint = getPhys(Hint);
86 return getPhys(VirtReg) == Hint;
90 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(VirtReg);
91 if (TargetRegisterInfo::isPhysicalRegister(Hint.second))
93 if (TargetRegisterInfo::isVirtualRegister(Hint.second))
94 return hasPhys(Hint.second)
    [all...]
RegAllocFast.cpp 188 unsigned Hint);
190 unsigned VirtReg, unsigned Hint);
192 unsigned VirtReg, unsigned Hint);
509 unsigned Hint) {
518 if (Hint && (!TargetRegisterInfo::isPhysicalRegister(Hint) ||
519 !RC->contains(Hint) || !MRI->isAllocatable(Hint)))
520 Hint = 0;
522 // Take hint when possible
    [all...]
TargetRegisterInfo.cpp 262 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
266 // TRI::getRegAllocationHints to interpret those hint types.
267 assert(Hint.first == 0 && "Target must implement TRI::getRegAllocationHints");
270 unsigned Phys = Hint.second;
274 // Check that Phys is a valid hint in VirtReg's register class.
CalcSpillWeights.cpp 123 // Find the best physreg hint and the best virtreg hint.
127 // Don't recompute a target specific hint.
165 unsigned hint = copyHint(mi, li.reg, tri, mri); local
166 if (!hint)
168 float hweight = Hint[hint] += weight;
169 if (TargetRegisterInfo::isPhysicalRegister(hint)) {
170 if (hweight > bestPhys && mri.isAllocatable(hint))
171 bestPhys = hweight, hintPhys = hint;
    [all...]
  /external/llvm/include/llvm/CodeGen/
CalcSpillWeights.h 42 /// register such as its spill weight and allocation hint.
48 DenseMap<unsigned, float> Hint;
56 /// hint.
MachineRegisterInfo.h 49 /// registers. For each virtual register, it keeps a register and hint type
50 /// pair making up the allocation hint. Hint type is target specific except
52 /// register for allocation. For example, if the hint is <0, 1024>, it means
54 /// register of the hint.
349 /// setRegAllocationHint - Specify a register allocation hint for the
356 /// getRegAllocationHint - Return the register allocation hint for the
363 /// getSimpleHint - Return the preferred register allocation hint, or 0 if a
364 /// standard simple hint (Type == 0) is not set.
366 std::pair<unsigned, unsigned> Hint = getRegAllocationHint(Reg)
    [all...]
  /external/clang/include/clang/Basic/
Diagnostic.h 43 /// This kind of hint should be used when we are certain that the
52 /// insertion hint.
65 /// \brief Empty code modification hint, indicating that no code
73 /// \brief Create a code modification hint that inserts the given
78 FixItHint Hint;
79 Hint.RemoveRange =
81 Hint.CodeToInsert = Code;
82 Hint.BeforePreviousInsertions = BeforePreviousInsertions;
83 return Hint;
86 /// \brief Create a code modification hint that inserts the give
    [all...]
PartialDiagnostic.h 76 /// \brief If valid, provides a hint with some code to insert, remove, or
175 void AddFixItHint(const FixItHint &Hint) const {
176 if (Hint.isNull())
182 DiagStorage->FixItHints.push_back(Hint);
383 const FixItHint &Hint) {
384 PD.AddFixItHint(Hint);
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 202 std::pair<unsigned, unsigned> Hint = MRI.getRegAllocationHint(VirtReg);
205 switch (Hint.first) {
219 // the paired register as the first hint.
221 if (VRM && VRM->hasPhys(Hint.second)) {
222 PairedPhys = getPairedGPR(VRM->getPhys(Hint.second), Odd, this);
249 std::pair<unsigned, unsigned> Hint = MRI->getRegAllocationHint(Reg);
250 if ((Hint.first == (unsigned)ARMRI::RegPairOdd ||
251 Hint.first == (unsigned)ARMRI::RegPairEven) &&
252 TargetRegisterInfo::isVirtualRegister(Hint.second)) {
255 // pair allocation hint must be updated to reflect the relationshi
    [all...]
  /external/chromium_org/third_party/mesa/src/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/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/v8/src/arm/
constants-arm.h 433 enum Hint { no_hint };
436 inline Hint NegateHint(Hint ignored) { return no_hint; }
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_0_autogen.h 62 EXPECT_CALL(*gl_, Hint(GL_GENERATE_MIPMAP_HINT, GL_DONT_CARE))
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv10_state_polygon.c 64 ctx->Hint.LineSmooth == GL_NICEST;
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_polygon.c 64 ctx->Hint.LineSmooth == GL_NICEST;
  /external/llvm/include/llvm/Support/
SourceMgr.h 244 void addFixIt(const SMFixIt &Hint) {
245 FixIts.push_back(Hint);
  /external/chromium_org/v8/src/arm/
constants-arm.h 420 enum Hint { no_hint };
423 inline Hint NegateHint(Hint ignored) { return no_hint; }
  /external/chromium_org/v8/src/mips/
constants-mips.h 564 enum Hint {
569 inline Hint NegateHint(Hint hint) {
  /external/v8/src/mips/
constants-mips.h 553 enum Hint {
558 inline Hint NegateHint(Hint hint) {
  /external/chromium/base/win/
pe_image.cc 281 UINT hint; local
282 for (hint = 0; hint < num_names; hint++) {
283 if (ordinals[hint] == count) {
284 name = reinterpret_cast<LPCSTR>(RVAToAddr(names[hint]));
290 hint = 0;
301 if (!callback(*this, ordinal_base + count, hint, name, func, forward,
370 WORD hint = 0; local
378 hint = import->Hint
463 WORD hint = 0; local
    [all...]

Completed in 317 milliseconds

1 2 3 4