/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/ |
D | btGImpactQuantizedBvh.h | 159 SIMD_FORCE_INLINE bool isLeafNode(int nodeindex) const in isLeafNode() argument 161 return m_node_array[nodeindex].isLeafNode(); in isLeafNode() 164 SIMD_FORCE_INLINE int getNodeData(int nodeindex) const in getNodeData() argument 166 return m_node_array[nodeindex].getDataIndex(); in getNodeData() 169 SIMD_FORCE_INLINE void getNodeBound(int nodeindex, btAABB & bound) const in getNodeBound() argument 172 m_node_array[nodeindex].m_quantizedAabbMin, in getNodeBound() 176 m_node_array[nodeindex].m_quantizedAabbMax, in getNodeBound() 180 SIMD_FORCE_INLINE void setNodeBound(int nodeindex, const btAABB & bound) in setNodeBound() argument 182 bt_quantize_clamp( m_node_array[nodeindex].m_quantizedAabbMin, in setNodeBound() 188 bt_quantize_clamp( m_node_array[nodeindex].m_quantizedAabbMax, in setNodeBound() [all …]
|
D | btGImpactBvh.h | 179 SIMD_FORCE_INLINE bool isLeafNode(int nodeindex) const in isLeafNode() argument 181 return m_node_array[nodeindex].isLeafNode(); in isLeafNode() 184 SIMD_FORCE_INLINE int getNodeData(int nodeindex) const in getNodeData() argument 186 return m_node_array[nodeindex].getDataIndex(); in getNodeData() 189 SIMD_FORCE_INLINE void getNodeBound(int nodeindex, btAABB & bound) const in getNodeBound() argument 191 bound = m_node_array[nodeindex].m_bound; in getNodeBound() 194 SIMD_FORCE_INLINE void setNodeBound(int nodeindex, const btAABB & bound) in setNodeBound() argument 196 m_node_array[nodeindex].m_bound = bound; in setNodeBound() 199 SIMD_FORCE_INLINE int getLeftNode(int nodeindex) const in getLeftNode() argument 201 return nodeindex+1; in getLeftNode() [all …]
|
D | gim_box_set.h | 169 SIMD_FORCE_INLINE bool isLeafNode(GUINT nodeindex) const in isLeafNode() argument 171 return m_node_array[nodeindex].is_leaf_node(); in isLeafNode() 174 SIMD_FORCE_INLINE GUINT getNodeData(GUINT nodeindex) const in getNodeData() argument 176 return m_node_array[nodeindex].m_data; in getNodeData() 179 SIMD_FORCE_INLINE void getNodeBound(GUINT nodeindex, GIM_AABB & bound) const in getNodeBound() argument 181 bound = m_node_array[nodeindex].m_bound; in getNodeBound() 184 SIMD_FORCE_INLINE void setNodeBound(GUINT nodeindex, const GIM_AABB & bound) in setNodeBound() argument 186 m_node_array[nodeindex].m_bound = bound; in setNodeBound() 189 SIMD_FORCE_INLINE GUINT getLeftNodeIndex(GUINT nodeindex) const in getLeftNodeIndex() argument 191 return m_node_array[nodeindex].m_left; in getLeftNodeIndex() [all …]
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/ |
D | btBvhTree.java | 77 public boolean isLeafNode(int nodeindex) { in isLeafNode() argument 78 return CollisionJNI.btBvhTree_isLeafNode(swigCPtr, this, nodeindex); in isLeafNode() 81 public int getNodeData(int nodeindex) { in getNodeData() argument 82 return CollisionJNI.btBvhTree_getNodeData(swigCPtr, this, nodeindex); in getNodeData() 85 public void getNodeBound(int nodeindex, btAABB bound) { in getNodeBound() argument 86 CollisionJNI.btBvhTree_getNodeBound(swigCPtr, this, nodeindex, btAABB.getCPtr(bound), bound); in getNodeBound() 89 public void setNodeBound(int nodeindex, btAABB bound) { in setNodeBound() argument 90 CollisionJNI.btBvhTree_setNodeBound(swigCPtr, this, nodeindex, btAABB.getCPtr(bound), bound); in setNodeBound() 93 public int getLeftNode(int nodeindex) { in getLeftNode() argument 94 return CollisionJNI.btBvhTree_getLeftNode(swigCPtr, this, nodeindex); in getLeftNode() [all …]
|
D | btQuantizedBvhTree.java | 92 public boolean isLeafNode(int nodeindex) { in isLeafNode() argument 93 return CollisionJNI.btQuantizedBvhTree_isLeafNode(swigCPtr, this, nodeindex); in isLeafNode() 96 public int getNodeData(int nodeindex) { in getNodeData() argument 97 return CollisionJNI.btQuantizedBvhTree_getNodeData(swigCPtr, this, nodeindex); in getNodeData() 100 public void getNodeBound(int nodeindex, btAABB bound) { in getNodeBound() argument 101 …CollisionJNI.btQuantizedBvhTree_getNodeBound(swigCPtr, this, nodeindex, btAABB.getCPtr(bound), bou… in getNodeBound() 104 public void setNodeBound(int nodeindex, btAABB bound) { in setNodeBound() argument 105 …CollisionJNI.btQuantizedBvhTree_setNodeBound(swigCPtr, this, nodeindex, btAABB.getCPtr(bound), bou… in setNodeBound() 108 public int getLeftNode(int nodeindex) { in getLeftNode() argument 109 return CollisionJNI.btQuantizedBvhTree_getLeftNode(swigCPtr, this, nodeindex); in getLeftNode() [all …]
|
D | btGImpactBvh.java | 114 public boolean isLeafNode(int nodeindex) { in isLeafNode() argument 115 return CollisionJNI.btGImpactBvh_isLeafNode(swigCPtr, this, nodeindex); in isLeafNode() 118 public int getNodeData(int nodeindex) { in getNodeData() argument 119 return CollisionJNI.btGImpactBvh_getNodeData(swigCPtr, this, nodeindex); in getNodeData() 122 public void getNodeBound(int nodeindex, btAABB bound) { in getNodeBound() argument 123 CollisionJNI.btGImpactBvh_getNodeBound(swigCPtr, this, nodeindex, btAABB.getCPtr(bound), bound); in getNodeBound() 126 public void setNodeBound(int nodeindex, btAABB bound) { in setNodeBound() argument 127 CollisionJNI.btGImpactBvh_setNodeBound(swigCPtr, this, nodeindex, btAABB.getCPtr(bound), bound); in setNodeBound() 130 public int getLeftNode(int nodeindex) { in getLeftNode() argument 131 return CollisionJNI.btGImpactBvh_getLeftNode(swigCPtr, this, nodeindex); in getLeftNode() [all …]
|
D | btGImpactQuantizedBvh.java | 114 public boolean isLeafNode(int nodeindex) { in isLeafNode() argument 115 return CollisionJNI.btGImpactQuantizedBvh_isLeafNode(swigCPtr, this, nodeindex); in isLeafNode() 118 public int getNodeData(int nodeindex) { in getNodeData() argument 119 return CollisionJNI.btGImpactQuantizedBvh_getNodeData(swigCPtr, this, nodeindex); in getNodeData() 122 public void getNodeBound(int nodeindex, btAABB bound) { in getNodeBound() argument 123 …CollisionJNI.btGImpactQuantizedBvh_getNodeBound(swigCPtr, this, nodeindex, btAABB.getCPtr(bound), … in getNodeBound() 126 public void setNodeBound(int nodeindex, btAABB bound) { in setNodeBound() argument 127 …CollisionJNI.btGImpactQuantizedBvh_setNodeBound(swigCPtr, this, nodeindex, btAABB.getCPtr(bound), … in setNodeBound() 130 public int getLeftNode(int nodeindex) { in getLeftNode() argument 131 return CollisionJNI.btGImpactQuantizedBvh_getLeftNode(swigCPtr, this, nodeindex); in getLeftNode() [all …]
|
/external/regex-re2/re2/ |
D | onepass.cc | 202 int nodeindex) { in IndexToNode() argument 204 const_cast<uint8*>(nodes + statesize*nodeindex)); in IndexToNode() 414 int nodeindex = nodebyid[id]; in IsOnePass() local 415 OneState* node = IndexToNode(nodes, statesize, nodeindex); in IsOnePass() 573 int nodeindex = nodebyid[id]; in IsOnePass() local 574 if (nodeindex == -1) in IsOnePass() 576 OneState* node = IndexToNode(nodes, statesize, nodeindex); in IsOnePass() 579 nodeindex, id, node->matchcond); in IsOnePass()
|