HomeSort by relevance Sort by last modified time
    Searched refs:indexType (Results 1 - 25 of 206) sorted by null

1 2 3 4 5 6 7 8 9

  /dalvik/dx/src/com/android/dx/io/instructions/
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);
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);
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);
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);
InvokePolymorphicDecodedInstruction.java 19 import com.android.dx.io.IndexType;
31 IndexType indexType,
34 super(format, opcode, methodIndex, indexType, 0, 0);
InvokePolymorphicRangeDecodedInstruction.java 19 import com.android.dx.io.IndexType;
32 IndexType indexType,
36 super(format, opcode, methodIndex, indexType, 0, 0);
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);
DecodedInstruction.java 20 import com.android.dx.io.IndexType;
50 private final IndexType indexType;
102 int index, IndexType indexType, int target, long literal) {
114 this.indexType = indexType;
145 public final IndexType getIndexType() {
146 return indexType;
InstructionCodec.java 20 import com.android.dx.io.IndexType;
160 this, opcode, index, IndexType.VARIES,
264 IndexType indexType = OpcodeInfo.getIndexType(opcode);
266 this, opcode, index, indexType,
372 IndexType indexType = OpcodeInfo.getIndexType(opcode);
374 this, opcode, index, indexType,
395 this, opcode, index, IndexType.FIELD_OFFSET,
507 IndexType indexType = OpcodeInfo.getIndexType(opcode)
    [all...]
  /external/skia/src/gpu/
GrPathRange.cpp 27 void GrPathRange::loadPathsIfNeeded(const void* indices, PathIndexType indexType, int count) const {
28 switch (indexType) {
42 void GrPathRange::assertPathsLoaded(const void* indices, PathIndexType indexType, int count) const {
43 switch (indexType) {
GrPathRendering.cpp 132 PathIndexType indexType,
141 pathRange->assertPathsLoaded(indices, indexType, count);
143 this->onDrawPaths(pipeline, primProc, stencilPassSettings, pathRange, indices, indexType,
GrPathRendering.h 164 PathIndexType 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...]
  /frameworks/base/rs/java/android/renderscript/
Mesh.java 292 Entry indexType = new Entry();
293 indexType.t = t;
294 indexType.e = null;
295 indexType.size = 0;
296 indexType.prim = p;
297 mIndexTypes.addElement(indexType);
310 Entry indexType = new Entry();
311 indexType.t = null;
312 indexType.e = null;
313 indexType.size = 0
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
fetch_jit.h 99 SWR_FORMAT indexType;
114 if (indexType != other.indexType) return false;
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineInputAssemblyTests.cpp 71 VkIndexType indexType);
75 static bool isRestartIndex (VkIndexType indexType, deUint32 indexValue);
76 static deUint32 getRestartIndex (VkIndexType indexType);
81 VkIndexType indexType,
104 VkIndexType indexType,
118 VkIndexType indexType);
124 VkIndexType indexType,
140 VkIndexType indexType,
210 VkIndexType indexType)
216 , m_indexType (indexType)
    [all...]
  /external/deqp/framework/opengl/
gluDrawUtil.hpp 67 enum IndexType
163 IndexType indexType; //!< Index type or INDEXTYPE_LAST if not used
169 , indexType (INDEXTYPE_LAST)
174 PrimitiveList (PrimitiveType type_, int numElements_, IndexType indexType_, const void* indices_)
177 , indexType (indexType_)
185 , indexType (INDEXTYPE_LAST)
gluDrawUtil.cpp 128 IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indices);
174 static deUint32 getIndexGLType (IndexType type)
187 static int getIndexSize (IndexType type)
373 IndexBuffer::IndexBuffer (const RenderContext& context, IndexType indexType, int numIndices, const void* indices)
380 gl.bufferData(GL_ELEMENT_ARRAY_BUFFER, numIndices*getIndexSize(indexType), indices, usage);
459 if ((primitives.indexType == INDEXTYPE_LAST) != (primitives.indices == 0))
485 static inline void drawIndexed (const glw::Functions& gl, PrimitiveType type, int numElements, IndexType indexType, const void* indexPtr
    [all...]
  /external/deqp/modules/gles3/functional/
es3fPrimitiveRestartTests.cpp 73 enum IndexType
91 PrimitiveRestartCase (Context& context, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Function function, bool beginWithRestart, bool endWithRestart, bool duplicateRestarts);
121 IndexType m_indexType;
131 PrimitiveRestartCase::PrimitiveRestartCase (Context& context, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Function function, bool beginWithRestart, bool endWithRestart, bool duplicateRestarts)
134 , m_indexType (indexType)
674 for (int indexType = 0; indexType < (int)PrimitiveRestartCase::INDEX_LAST; indexType++
    [all...]
es3fVertexArrayObjectTests.cpp 121 GLenum indexType;
135 , indexType (GL_NONE)
270 switch (m_spec.indexType)
285 switch (m_spec.indexType)
577 GLU_CHECK_CALL(glDrawElements(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices));
579 GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices, m_spec.instances));
584 GLU_CHECK_CALL(glDrawElements(GL_TRIANGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GLintptr)m_spec.indexOffset)));
586 GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, (GLvoid*)((GLintptr)m_spec.indexOffset), m_spec.instances));
749 m_spec.indexType = GL_NONE;
846 switch (m_spec.indexType)
    [all...]
  /dalvik/opcode-gen/
opcode-gen.awk 112 itype = toupper(indexType[i]);
117 " InstructionCodec.FORMAT_%s, IndexType.%s);\n\n", \
298 indexType[idx] = parts[5];
325 if (indexTypeValues[indexType[idx]] == "") {
326 printf("unknown index type: %s\n", indexType[idx]) >"/dev/stderr";
418 packedIndexType[i] = indexType[op];
  /external/lzma/CPP/7zip/UI/Common/
UpdateCallback.cpp 567 STDMETHODIMP CArchiveUpdateCallback::ReportOperation(UInt32 indexType, UInt32 index, UInt32 op)
573 if (indexType == NArchive::NEventIndexType::kOutArcIndex)
592 if (indexType == NArchive::NEventIndexType::kInArcIndex)
610 else if (indexType == NArchive::NEventIndexType::kBlockIndex)
625 STDMETHODIMP CArchiveUpdateCallback::ReportExtractResult(UInt32 indexType, UInt32 index, Int32 opRes)
634 if (indexType == NArchive::NEventIndexType::kOutArcIndex)
651 if (indexType == NArchive::NEventIndexType::kInArcIndex)
668 else if (indexType == NArchive::NEventIndexType::kBlockIndex)
  /dalvik/libdex/
InstrUtils.h 140 InstructionIndexType indexType;

Completed in 366 milliseconds

1 2 3 4 5 6 7 8 9