HomeSort by relevance Sort by last modified time
    Searched full:indextype (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/dexmaker/src/dx/java/com/android/dx/io/
OpcodeInfo.java 42 InstructionCodec.FORMAT_00X, IndexType.NONE);
49 IndexType.NONE);
54 IndexType.NONE);
59 IndexType.NONE);
64 InstructionCodec.FORMAT_10X, IndexType.NONE);
68 InstructionCodec.FORMAT_12X, IndexType.NONE);
72 InstructionCodec.FORMAT_22X, IndexType.NONE);
76 InstructionCodec.FORMAT_32X, IndexType.NONE);
80 InstructionCodec.FORMAT_12X, IndexType.NONE);
84 InstructionCodec.FORMAT_22X, IndexType.NONE)
    [all...]
  /dalvik/dx/src/com/android/dx/io/
OpcodeInfo.java 42 InstructionCodec.FORMAT_00X, IndexType.NONE);
49 IndexType.NONE);
54 IndexType.NONE);
59 IndexType.NONE);
64 InstructionCodec.FORMAT_10X, IndexType.NONE);
68 InstructionCodec.FORMAT_12X, IndexType.NONE);
72 InstructionCodec.FORMAT_22X, IndexType.NONE);
76 InstructionCodec.FORMAT_32X, IndexType.NONE);
80 InstructionCodec.FORMAT_12X, IndexType.NONE);
84 InstructionCodec.FORMAT_22X, IndexType.NONE)
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
IndexBuffer.h 26 virtual bool initialize(unsigned int bufferSize, GLenum indexType, bool dynamic) = 0;
35 virtual bool setSize(unsigned int bufferSize, GLenum indexType) = 0;
55 virtual bool reserveBufferSpace(unsigned int size, GLenum indexType) = 0;
73 bool setBufferSize(unsigned int bufferSize, GLenum indexType);
92 virtual bool reserveBufferSpace(unsigned int size, GLenum indexType);
101 virtual bool reserveBufferSpace(unsigned int size, GLenum indexType);
IndexBuffer.cpp 109 bool IndexBufferInterface::setBufferSize(unsigned int bufferSize, GLenum indexType)
113 return mIndexBuffer->initialize(bufferSize, indexType, mDynamic);
117 return mIndexBuffer->setSize(bufferSize, indexType);
129 bool StreamingIndexBufferInterface::reserveBufferSpace(unsigned int size, GLenum indexType)
136 result = setBufferSize(std::max(size, 2 * curBufferSize), indexType);
160 bool StaticIndexBufferInterface::reserveBufferSpace(unsigned int size, GLenum indexType)
165 return setBufferSize(size, indexType);
167 else if (curSize >= size && indexType == getIndexType())
IndexBuffer9.cpp 33 bool IndexBuffer9::initialize(unsigned int bufferSize, GLenum indexType, bool dynamic)
46 if (indexType == GL_UNSIGNED_SHORT || indexType == GL_UNSIGNED_BYTE)
50 else if (indexType == GL_UNSIGNED_INT)
64 ERR("Invalid index type %u.", indexType);
83 mIndexType = indexType;
149 bool IndexBuffer9::setSize(unsigned int bufferSize, GLenum indexType)
151 if (bufferSize > mBufferSize || indexType != mIndexType)
153 return initialize(bufferSize, indexType, mDynamic);
IndexBuffer11.h 24 virtual bool initialize(unsigned int bufferSize, GLenum indexType, bool dynamic);
33 virtual bool setSize(unsigned int bufferSize, GLenum indexType);
IndexBuffer9.h 24 virtual bool initialize(unsigned int bufferSize, GLenum indexType, bool dynamic);
33 virtual bool setSize(unsigned int bufferSize, GLenum indexType);
IndexBuffer11.cpp 32 bool IndexBuffer11::initialize(unsigned int bufferSize, GLenum indexType, bool dynamic)
62 mIndexType = indexType;
129 bool IndexBuffer11::setSize(unsigned int bufferSize, GLenum indexType)
131 if (bufferSize > mBufferSize || indexType != mIndexType)
133 return initialize(bufferSize, indexType, mDynamicUsage);
  /dalvik/dx/src/com/android/dx/io/instructions/
OneRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
32 int index, IndexType indexType, int target, long literal,
34 super(format, opcode, index, indexType, target, literal);
RegisterRangeDecodedInstruction.java 19 import com.android.dx.io.IndexType;
36 int index, IndexType indexType, int target, long literal,
38 super(format, opcode, index, indexType, target, literal);
ThreeRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
38 int index, IndexType indexType, int target, long literal,
40 super(format, opcode, index, indexType, target, literal);
TwoRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
35 int index, IndexType indexType, int target, long literal,
37 super(format, opcode, index, indexType, target, literal);
ZeroRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
29 int index, IndexType indexType, int target, long literal) {
30 super(format, opcode, index, indexType, target, literal);
FiveRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
44 int index, IndexType indexType, int target, long literal,
46 super(format, opcode, index, indexType, target, literal);
FourRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
41 int index, IndexType indexType, int target, long literal,
43 super(format, opcode, index, indexType, target, literal);
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
OneRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
32 int index, IndexType indexType, int target, long literal,
34 super(format, opcode, index, indexType, target, literal);
RegisterRangeDecodedInstruction.java 19 import com.android.dx.io.IndexType;
36 int index, IndexType indexType, int target, long literal,
38 super(format, opcode, index, indexType, target, literal);
ThreeRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
38 int index, IndexType indexType, int target, long literal,
40 super(format, opcode, index, indexType, target, literal);
TwoRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
35 int index, IndexType indexType, int target, long literal,
37 super(format, opcode, index, indexType, target, literal);
ZeroRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
29 int index, IndexType indexType, int target, long literal) {
30 super(format, opcode, index, indexType, target, literal);
FiveRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
44 int index, IndexType indexType, int target, long literal,
46 super(format, opcode, index, indexType, target, literal);
FourRegisterDecodedInstruction.java 19 import com.android.dx.io.IndexType;
41 int index, IndexType indexType, int target, long literal,
43 super(format, opcode, index, indexType, target, literal);
InstructionCodec.java 19 import com.android.dx.io.IndexType;
157 this, opcode, index, IndexType.VARIES,
261 IndexType indexType = OpcodeInfo.getIndexType(opcode);
263 this, opcode, index, indexType,
369 IndexType indexType = OpcodeInfo.getIndexType(opcode);
371 this, opcode, index, indexType,
392 this, opcode, index, IndexType.FIELD_OFFSET,
503 IndexType indexType = OpcodeInfo.getIndexType(opcode)
    [all...]
  /external/eigen/Eigen/src/Core/
Visitor.h 173 template<typename IndexType>
175 DenseBase<Derived>::minCoeff(IndexType* row, IndexType* col) const
187 * \sa DenseBase::minCoeff(IndexType*,IndexType*), DenseBase::maxCoeff(IndexType*,IndexType*), DenseBase::visitor(), DenseBase::minCoeff()
190 template<typename IndexType>
192 DenseBase<Derived>::minCoeff(IndexType* index) const
204 * \sa DenseBase::minCoeff(IndexType*,IndexType*), DenseBase::visitor(), DenseBase::maxCoeff(
    [all...]
  /external/jdiff/src/jdiff/
HTMLIndexes.java 32 // indexType values: 0 = removals only, 1 = additions only,
45 for (int indexType = 0; indexType < 3; indexType++) {
46 emitBottomLeftFile(packagesIndexName, apiDiff, indexType, "Package");
47 emitBottomLeftFile(classesIndexName, apiDiff, indexType, "Class");
48 emitBottomLeftFile(constructorsIndexName, apiDiff, indexType, "Constructor");
49 emitBottomLeftFile(methodsIndexName, apiDiff, indexType, "Method");
50 emitBottomLeftFile(fieldsIndexName, apiDiff, indexType, "Field");
51 emitBottomLeftFile(allDiffsIndexName, apiDiff, indexType, "All")
    [all...]

Completed in 1585 milliseconds

1 2 3