HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 426 - 450 of 983) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_emit.c 83 static void use_temporary(struct r300_fragment_program_code *code, unsigned int index)
85 if (index > code->pixsize)
86 code->pixsize = index;
95 return src.Index | (1 << 5);
97 use_temporary(code, src.Index);
98 return src.Index & 0x1f;
171 if (inst->RGB.Src[j].Index >= R300_PFS_NUM_TEMP_REGS)
178 if (inst->Alpha.Src[j].Index >= R300_PFS_NUM_TEMP_REGS)
196 switch(inst->RGB.Src[RC_PAIR_PRESUB_SRC].Index) {
219 switch(inst->Alpha.Src[RC_PAIR_PRESUB_SRC].Index) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_fragprog.c 91 if (source->Index >= I915_MAX_TEMPORARY) {
93 source->Index, I915_MAX_TEMPORARY);
96 src = UREG(REG_TYPE_R, source->Index);
99 switch (source->Index) {
123 T_TEX0 + (source->Index - FRAG_ATTRIB_TEX0),
136 T_TEX0 + (source->Index - FRAG_ATTRIB_VAR0),
141 i915_program_error(p, "Bad source->Index: %d", source->Index);
147 switch (source->Index) {
155 i915_program_error(p, "Bad source->Index: %d", source->Index)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_fragprog.c 91 if (source->Index >= I915_MAX_TEMPORARY) {
93 source->Index, I915_MAX_TEMPORARY);
96 src = UREG(REG_TYPE_R, source->Index);
99 switch (source->Index) {
123 T_TEX0 + (source->Index - FRAG_ATTRIB_TEX0),
136 T_TEX0 + (source->Index - FRAG_ATTRIB_VAR0),
141 i915_program_error(p, "Bad source->Index: %d", source->Index);
147 switch (source->Index) {
155 i915_program_error(p, "Bad source->Index: %d", source->Index)
    [all...]
  /build/tools/droiddoc/templates-pdk/
customizations.cs 51 <div id="index-links"><nobr>
52 <a href="<?cs var:toroot ?>reference/packages.html" <?cs if:(page.title == "Package Index") ?>class="selected"<?cs /if ?> >Package Index</a> |
53 <a href="<?cs var:toroot ?>reference/classes.html" <?cs if:(page.title == "Class Index") ?>class="selected"<?cs /if ?>>Class Index</a></nobr>
86 <div id="index-links"><nobr>
87 <a href="<?cs var:toroot ?>reference/packages.html" <?cs if:(page.title == "Package Index") ?>class="selected"<?cs /if ?> >Package Index</a> |
88 <a href="<?cs var:toroot ?>reference/classes.html" <?cs if:(page.title == "Class Index") ?>class="selected"<?cs /if ?>>Class Index</a></nobr
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Lexer.cs 114 state.tokenStartCharIndex = input.Index;
119 IToken eof = new CommonToken((ICharStream)input, CharStreamConstants.EndOfFile, TokenChannels.Default, input.Index, input.Index);
258 /** <summary>What is the index of the current character of lookahead?</summary> */
261 return input.Index;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Lexer.cs 134 state.tokenStartCharIndex = input.Index;
140 IToken eof = new CommonToken((ICharStream)input, CharStreamConstants.EndOfFile, TokenChannels.Default, input.Index, input.Index);
311 /** <summary>What is the index of the current character of lookahead?</summary> */
316 return input.Index;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_program_pair.h 61 unsigned int Index:RC_REGISTER_INDEX_BITS;
104 rc_register_file file, unsigned int index);
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 187 ValueHandle Index) {
192 Value IndexVal(Data->IndexType, Index);
193 Diag(Loc, DL_Error, "index %0 out of bounds for type %1")
197 ValueHandle Index) {
198 __ubsan_handle_out_of_bounds(Data, Index);
  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 133 typedef typename Derived::Index Index;
138 Index maxi = 0;
139 Index sndi = 0;
  /external/eigen/Eigen/src/SparseCore/
SparseRedux.h 21 for (Index j=0; j<outerSize(); ++j)
  /external/eigen/test/
eigensolver_selfadjoint.cpp 17 typedef typename MatrixType::Index Index;
21 Index rows = m.rows();
22 Index cols = m.cols();
product_symm.cpp 21 typedef typename MatrixType::Index Index;
23 Index rows = size;
24 Index cols = size;
product_trmv.cpp 14 typedef typename MatrixType::Index Index;
21 Index rows = m.rows();
22 Index cols = m.cols();
qr.cpp 15 typedef typename MatrixType::Index Index;
17 Index rows = m.rows();
18 Index cols = m.cols();
qtvector.cpp 21 typedef typename MatrixType::Index Index;
23 Index rows = m.rows();
24 Index cols = m.cols();
stable_norm.cpp 35 typedef typename MatrixType::Index Index;
53 Index rows = m.rows();
54 Index cols = m.cols();
stddeque.cpp 18 typedef typename MatrixType::Index Index;
20 Index rows = m.rows();
21 Index cols = m.cols();
stdlist.cpp 18 typedef typename MatrixType::Index Index;
20 Index rows = m.rows();
21 Index cols = m.cols();
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 76 typedef int Index;
127 /** \returns the index of the root of the hierarchy */
128 inline Index getRootIndex() const { return (int)boxes.size() - 1; }
130 /** Given an \a index of a node, on exit, \a outVBegin and \a outVEnd range over the indices of the volume children of the node
132 EIGEN_STRONG_INLINE void getChildren(Index index, VolumeIterator &outVBegin, VolumeIterator &outVEnd,
135 if(index < 0) {
145 int idx = index * 2;
146 if(children[idx + 1] < numBoxes) { //second index is always bigger
163 /** \returns the bounding box of the node at \a index */
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
Grid.java 97 setBuffer(Type.Index, 2, sib);
WireFrustum.java 48 setBuffer(Type.Index, 2,
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Curve.java 137 this.setBuffer(VertexBuffer.Type.Index, 2, indices);//(spline.getControlPoints().size() - 1) * nbSubSegments * 2
189 this.setBuffer(VertexBuffer.Type.Index, 2, indices);
226 this.setBuffer(VertexBuffer.Type.Index, 2, indices);
259 this.setBuffer(VertexBuffer.Type.Index, 2, indices);
  /external/jmonkeyengine/engine/src/test/jme3test/collision/
TestRayCasting.java 69 q.setBuffer(Type.Index, 3, new int[]{ 0, 1, 2 });
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TriangleCollector.java 130 out.setBuffer(Type.Index, 3, ib);
136 if (vb.getBufferType() == Type.Index)
196 if (vb.getBufferType() == Type.Index)
211 // write the indices onto the output index buffer
224 if (vb.getBufferType() == Type.Index)
  /external/llvm/include/llvm/Option/
OptTable.h 58 /// The index of the first option which can be parsed (i.e., is not a
115 /// updating Index.
117 /// \param [in,out] Index - The current parsing position in the argument
118 /// string list; on return this will be the index of the next argument
126 /// (in which case Index still points at the conceptual next argument string
128 Arg *ParseOneArg(const ArgList &Args, unsigned &Index,
143 /// \param MissingArgIndex - On error, the index of the option which could

Completed in 455 milliseconds

<<11121314151617181920>>