/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/ |
MirrorModifier.java | 113 IntBuffer cloneIndexes = (IntBuffer) clone.getBuffer(Type.Index).getData();
135 int index = cloneIndexes.get(vertexIndex + 2);
local 137 cloneIndexes.put(vertexIndex + 1, index);
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Dome.java | 276 setBuffer(Type.Index, 3, ib); 279 int index = 0; local 284 for (int sample = 0; sample < radialSamples; sample++, index += 6) { 305 for (int samples = 0; samples < radialSamples; samples++, index += 3) {
|
PQTorus.java | 224 setBuffer(Type.Index, 3, sib);
|
Surface.java | 136 this.setBuffer(VertexBuffer.Type.Index, 3, indices);
|
Torus.java | 187 setBuffer(Type.Index, 3, sib); 192 int index = 0; local 199 for (i = 0; i < radialSamples; i++, index += 6) {
|
/external/llvm/include/llvm/Object/ |
MachOFormat.h | 287 uint32_t Index;
|
/frameworks/compile/slang/ |
slang_rs_reflection.cpp | 99 static const char *GetVectorAccessor(unsigned Index) { 107 slangAssert((Index < (sizeof(VectorAccessorMap) / sizeof(const char*))) && 108 "Out-of-bound index to access vector member"); 110 return VectorAccessorMap[Index]; [all...] |
slang_rs_reflection.h | 76 // A mapping from a field in a record type to its index in the rsType 81 // Field index of current processing TypeClass. 308 void genNewItemBufferIfNull(Context &C, const char *Index);
|
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/ |
OGLESShaderRenderer.java | 240 logger.log(Level.FINER, "Preferred Batch Index Count: {0}", maxTriCount); [all...] |
/external/clang/lib/AST/ |
Expr.cpp | [all...] |
/external/llvm/lib/VMCore/ |
Verifier.cpp | 577 if (Attr.Index == 0) 579 else if (Attr.Index-1 < FT->getNumParams()) 580 Ty = FT->getParamType(Attr.Index-1); 584 VerifyParameterAttrs(Attr.Attrs, Ty, Attr.Index == 0, V); 592 Assert1(Attr.Index == 1, "Attribute sret not on first parameter!", V); 613 unsigned LastIndex = Attrs.getSlot(LastSlot).Index; 616 && (LastSlot == 0 || Attrs.getSlot(LastSlot - 1).Index <= Params))) [all...] |
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.Tree.pas | 276 /// Get the token start index for this subtree; return -1 if no such index 281 /// Get the token stop index for this subtree; return -1 if no such index 310 /// What index is this node in the child list? Range: 0..n-1 317 procedure SetChildIdex(const T: IANTLRInterface; const Index: Integer); 320 /// Replace from start to stop child index of parent with t, which might 342 /// <summary>Get a tree node at an absolute index i; 0..n-1.</summary> 354 /// Return null for LT(0) and any index that results in an absolute address 375 /// Replace from start to stop child index of parent with t, which migh [all...] |
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/scene/plugins/ |
OBJLoader.java | 96 int index; field in class:OBJLoader.Vertex 180 Integer index = vertIndexMap.get(vert); local 181 if (index != null){ 182 vert.index = index.intValue(); 184 vert.index = curIndex++; 185 vertIndexMap.put(vert, vert.index); 186 indexVertMap.put(vert.index, vert); 468 m.setBuffer(VertexBuffer.Type.Index, 3, ib); 472 m.setBuffer(VertexBuffer.Type.Index, 3, sb) 515 int index = i * 3; \/\/ current face * 3 = current index local [all...] |
/external/llvm/lib/Target/PTX/ |
PTXISelLowering.cpp | 273 // Use a unique index in the instruction to prevent instruction folding. 275 SDValue Index = DAG.getTargetConstant(i, MVT::i32); 278 Index); 465 // copy the address of the local frame index to get the address in non-local space
|
/external/mesa3d/docs/OLD/ |
MESA_packed_depth_stencil.spec | 84 COLOR_INDEX Color Color index 85 STENCIL_INDEX Stencil Stencil index 99 DEPTH_STENCIL Depth, Depth component, stencil index. 190 the GL is in color index mode, then the color index is obtained." 192 The new format is added to the discussion of Index Lookup. It should 194 ABGR_EXT, LUMINANCE, or LUMINANCE_ALPHA, then the index is used to
|
/external/clang/include/clang/AST/ |
DeclObjC.h | 297 SourceLocation getSelectorLoc(unsigned Index) const { 298 assert(Index < getNumSelectorLocs() && "Index out of range!"); 300 return getStandardSelectorLoc(Index, getSelector(), 305 return getStoredSelLocs()[Index]; [all...] |
/external/clang/include/clang/Basic/ |
TargetInfo.h | 462 unsigned NumOutputs, unsigned &Index) const;
|
/external/clang/lib/Sema/ |
SemaPseudoObject.cpp | 308 // set ResultIndex to its index. 309 unsigned index = 0; local 310 for (;; ++index) { 311 assert(index < Semantics.size() && 313 if (e == Semantics[index]) break; 315 ResultIndex = index; 824 // There must be a method to do the Index'ed assignment. 836 // Various warnings about objc Index'ed assignments in ARC. 845 /// Capture the base object of an Objective-C Index'ed expression. [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/ |
GeoMap.java | 108 * Returns the height value at the given index. 110 * zero index is top left of map, 111 * getWidth()*getHeight() index is lower right 113 * @param i The index 335 m.setBuffer(Type.Index, 3, ib);
|
/external/llvm/lib/Target/PowerPC/ |
PPCISelDAGToDAG.cpp | 121 bool SelectAddrIdx(SDValue N, SDValue &Base, SDValue &Index) { 122 return PPCLowering.SelectAddressRegReg(N, Base, Index, *CurDAG); 127 bool SelectAddrIdxOnly(SDValue N, SDValue &Base, SDValue &Index) { 128 return PPCLowering.SelectAddressRegRegOnly(N, Base, Index, *CurDAG); 571 /// getCRIdxForSetCC - Return the index of the condition register field [all...] |
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
genlingware.pl | 31 C) Index
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
MemRegion.h | 933 NonLoc Index; 937 ElementType(elementType), Index(Idx) { 940 "The index must be signed"); 948 NonLoc getIndex() const { return Index; } [all...] |
/external/clang/include/clang-c/ |
Index.h | 1 /*===-- clang-c/Index.h - Indexing Public C Interface -------------*- C -*-===*\ 68 * \brief An "index" that consists of a set of translation units that would 74 * \brief A single translation unit, which resides in an index. 210 * \brief Destroy the given index. 212 * The index must not be destroyed until all of the translation units created 213 * within that index have been destroyed. 215 CINDEX_LINKAGE void clang_disposeIndex(CXIndex index); 603 * \param Index the zero-based diagnostic number to retrieve. 609 unsigned Index); 679 * \param Index the zero-based diagnostic number to retrieve [all...] |
/external/clang/lib/CodeGen/ |
CGCleanup.cpp | 662 // destination index. For fall-throughs this is always zero. [all...] |
CGRecordLayoutBuilder.cpp | [all...] |