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

1 2 3 4 5

  /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...]
  /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* rowId, IndexType* colId) 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/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
IndexBuffer.h 27 virtual gl::Error initialize(unsigned int bufferSize, GLenum indexType, bool dynamic) = 0;
36 virtual gl::Error setSize(unsigned int bufferSize, GLenum indexType) = 0;
56 virtual gl::Error reserveBufferSpace(unsigned int size, GLenum indexType) = 0;
74 gl::Error setBufferSize(unsigned int bufferSize, GLenum indexType);
93 virtual gl::Error reserveBufferSpace(unsigned int size, GLenum indexType);
102 virtual gl::Error reserveBufferSpace(unsigned int size, GLenum indexType);
IndexBuffer.cpp 121 gl::Error IndexBufferInterface::setBufferSize(unsigned int bufferSize, GLenum indexType)
125 return mIndexBuffer->initialize(bufferSize, indexType, mDynamic);
129 return mIndexBuffer->setSize(bufferSize, indexType);
141 gl::Error StreamingIndexBufferInterface::reserveBufferSpace(unsigned int size, GLenum indexType)
147 gl::Error error = setBufferSize(std::max(size, 2 * curBufferSize), indexType);
176 gl::Error StaticIndexBufferInterface::reserveBufferSpace(unsigned int size, GLenum indexType)
181 return setBufferSize(size, indexType);
183 else if (curSize >= size && indexType == getIndexType())
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
IndexBuffer9.cpp 28 gl::Error IndexBuffer9::initialize(unsigned int bufferSize, GLenum indexType, bool dynamic)
37 if (indexType == GL_UNSIGNED_SHORT || indexType == GL_UNSIGNED_BYTE)
41 else if (indexType == GL_UNSIGNED_INT)
62 mIndexType = indexType;
120 gl::Error IndexBuffer9::setSize(unsigned int bufferSize, GLenum indexType)
122 if (bufferSize > mBufferSize || indexType != mIndexType)
124 return initialize(bufferSize, indexType, mDynamic);
IndexBuffer9.h 24 virtual gl::Error initialize(unsigned int bufferSize, GLenum indexType, bool dynamic);
33 virtual gl::Error setSize(unsigned int bufferSize, GLenum indexType);
  /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...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
IndexBuffer11.h 24 virtual gl::Error initialize(unsigned int bufferSize, GLenum indexType, bool dynamic);
33 virtual gl::Error setSize(unsigned int bufferSize, GLenum indexType);
IndexBuffer11.cpp 27 gl::Error IndexBuffer11::initialize(unsigned int bufferSize, GLenum indexType, bool dynamic)
53 mIndexType = indexType;
113 gl::Error IndexBuffer11::setSize(unsigned int bufferSize, GLenum indexType)
115 if (bufferSize > mBufferSize || indexType != mIndexType)
117 return initialize(bufferSize, indexType, mDynamicUsage);

Completed in 5429 milliseconds

1 2 3 4 5