HomeSort by relevance Sort by last modified time
    Searched defs:basicType (Results 1 - 23 of 23) sorted by null

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 353 int basicType = ref.getBasicType();
354 switch (basicType) {
366 int basicType = ref.getBasicType();
367 switch (basicType) {
379 int basicType = ref.getBasicType();
380 switch (basicType) {
392 int basicType = ref.getBasicType();
393 switch (basicType) {
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 524 int basicType = ref.getBasicType();
525 switch (basicType) {
537 int basicType = ref.getBasicType();
538 switch (basicType) {
550 int basicType = ref.getBasicType();
551 switch (basicType) {
563 int basicType = ref.getBasicType();
564 switch (basicType) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopToDop.java 525 int basicType = ref.getBasicType();
526 switch (basicType) {
538 int basicType = ref.getBasicType();
539 switch (basicType) {
551 int basicType = ref.getBasicType();
552 switch (basicType) {
564 int basicType = ref.getBasicType();
565 switch (basicType) {
  /external/chromium_org/third_party/angle/src/compiler/translator/
IntermNode.cpp 450 TBasicType basicType = mLeft->getBasicType();
459 setType(TType(basicType, higherPrecision, EvqTemporary,
465 setType(TType(basicType, higherPrecision, EvqTemporary,
474 setType(TType(basicType, higherPrecision, EvqTemporary,
485 setType(TType(basicType, higherPrecision, EvqTemporary,
497 setType(TType(basicType, higherPrecision, EvqTemporary,
540 setType(TType(basicType, higherPrecision, EvqTemporary,
554 setType(TType(basicType, higherPrecision, EvqTemporary,
602 setType(TType(basicType, higherPrecision, EvqTemporary,
    [all...]
parseConst.cpp 172 TBasicType basicType = mType.getBasicType();
185 leftUnionArray[mIndex].cast(basicType, rightUnionArray[i]);
200 leftUnionArray[i].cast(basicType, rightUnionArray[count]);
215 leftUnionArray[i].cast(basicType, rightUnionArray[0]);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
uniform_query.cpp 385 log_uniform(const void *values, enum glsl_base_type basicType,
405 switch (basicType) {
583 enum glsl_base_type basicType;
598 basicType = GLSL_TYPE_FLOAT;
602 basicType = GLSL_TYPE_FLOAT;
606 basicType = GLSL_TYPE_FLOAT;
610 basicType = GLSL_TYPE_FLOAT;
614 basicType = GLSL_TYPE_UINT;
618 basicType = GLSL_TYPE_UINT;
622 basicType = GLSL_TYPE_UINT
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSeparateShaderTests.cpp 203 const DataType basicType = input.varType.getBasicType();
206 switch (getDataTypeScalarType(basicType))
214 DataType floatType = getDataTypeFloatScalars(basicType);
223 if (isDataTypeScalarOrVector(basicType))
225 switch (getDataTypeScalarSize(basicType))
243 else if (isDataTypeMatrix(basicType))
245 int rows = getDataTypeMatrixNumRows(basicType);
246 int columns = getDataTypeMatrixNumColumns(basicType);
    [all...]
es31fShaderCommonFunctionTests.cpp 321 const glu::DataType basicType = varValue.type.getBasicType();
322 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
323 const int numComponents = glu::getDataTypeScalarSize(basicType);
326 str << glu::getDataTypeName(basicType) << "(";
    [all...]
es31fShaderIntegerFunctionTests.cpp 81 const glu::DataType basicType = varValue.type.getBasicType();
82 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
83 const int numComponents = glu::getDataTypeScalarSize(basicType);
86 str << glu::getDataTypeName(basicType) << "(";
    [all...]
es31fProgramUniformTests.cpp 239 const glu::DataType basicType = type.getBasicType();
240 if (glu::isDataTypeSampler(basicType) && std::find(dst.begin(), dst.end(), basicType) == dst.end())
241 dst.push_back(basicType);
    [all...]
es31fSSBOLayoutCase.cpp 377 glu::DataType basicType = type.getBasicType();
379 if (glu::isDataTypeMatrix(basicType))
382 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
383 : glu::getDataTypeMatrixNumRows(basicType);
389 return getDataTypeByteAlignment(basicType);
418 glu::DataType basicType = type.getBasicType();
420 if (glu::isDataTypeMatrix(basicType))
423 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
424 : glu::getDataTypeMatrixNumRows(basicType);
430 return getDataTypeByteAlignment(basicType);
    [all...]
  /external/mesa3d/src/mesa/main/
uniform_query.cpp 385 log_uniform(const void *values, enum glsl_base_type basicType,
405 switch (basicType) {
583 enum glsl_base_type basicType;
598 basicType = GLSL_TYPE_FLOAT;
602 basicType = GLSL_TYPE_FLOAT;
606 basicType = GLSL_TYPE_FLOAT;
610 basicType = GLSL_TYPE_FLOAT;
614 basicType = GLSL_TYPE_UINT;
618 basicType = GLSL_TYPE_UINT;
622 basicType = GLSL_TYPE_UINT
    [all...]
  /external/deqp/framework/opengl/
gluVarTypeUtil.hpp 294 DataType basicType = curType.getBasicType();
296 if (isDataTypeMatrix(basicType))
298 else if (isDataTypeVector(basicType))
349 DataType basicType = curType->getBasicType();
353 if (!isDataTypeMatrix(basicType))
356 basicType = getDataTypeFloatVec(getDataTypeMatrixNumRows(basicType));
362 if (!isDataTypeVector(basicType))
365 basicType = getDataTypeScalarType(basicType);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
Type.java 262 private final int basicType;
491 * @param basicType basic type corresponding to this type; one of the
495 private Type(String descriptor, int basicType, int newAt) {
500 if ((basicType < 0) || (basicType >= BT_COUNT)) {
501 throw new IllegalArgumentException("bad basicType");
509 this.basicType = basicType;
522 * @param basicType basic type corresponding to this type; one of the
525 private Type(String descriptor, int basicType) {
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
Type.java 246 private final int basicType;
424 * @param basicType basic type corresponding to this type; one of the
428 private Type(String descriptor, int basicType, int newAt) {
433 if ((basicType < 0) || (basicType >= BT_COUNT)) {
434 throw new IllegalArgumentException("bad basicType");
442 this.basicType = basicType;
455 * @param basicType basic type corresponding to this type; one of the
458 private Type(String descriptor, int basicType) {
    [all...]
  /dalvik/tools/hprof-conv/
HprofConv.c 317 static int computeBasicLen(HprofBasicType basicType)
322 assert(basicType >= 0);
323 if (basicType >= maxSize)
325 return sizes[basicType];
349 HprofBasicType basicType;
352 basicType = buf[2];
353 basicLen = computeBasicLen(basicType);
355 DBUG("ERROR: invalid basicType %d\n", basicType);
370 HprofBasicType basicType;
    [all...]
  /external/deqp/modules/glshared/
glsUniformBlockCase.hpp 76 VarType (glu::DataType basicType, deUint32 flags);
86 glu::DataType getBasicType (void) const { return m_data.basicType; }
109 glu::DataType basicType;
glsShaderExecUtil.cpp 480 const glu::DataType basicType = symbol.varType.getBasicType();
481 const int vecSize = glu::getDataTypeScalarSize(basicType);
483 if (glu::isDataTypeFloatOrVec(basicType))
485 else if (glu::isDataTypeIntOrIVec(basicType))
487 else if (glu::isDataTypeUintOrUVec(basicType))
489 else if (glu::isDataTypeMatrix(basicType))
491 int numRows = glu::getDataTypeMatrixNumRows(basicType);
492 int numCols = glu::getDataTypeMatrixNumColumns(basicType);
670 const glu::DataType basicType = outputType.getBasicType();
671 const int numComps = glu::getDataTypeNumComponents(basicType);
    [all...]
glsUniformBlockCase.cpp 128 VarType::VarType (glu::DataType basicType, deUint32 flags)
132 m_data.basicType = basicType;
420 glu::DataType basicType = type.getBasicType();
422 if (glu::isDataTypeMatrix(basicType))
425 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
426 : glu::getDataTypeMatrixNumRows(basicType);
431 return getDataTypeByteAlignment(basicType);
474 glu::DataType basicType = type.getBasicType();
478 entry.type = basicType;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Type.java 247 private final int basicType;
425 * @param basicType basic type corresponding to this type; one of the
429 private Type(String descriptor, int basicType, int newAt) {
434 if ((basicType < 0) || (basicType >= BT_COUNT)) {
435 throw new IllegalArgumentException("bad basicType");
443 this.basicType = basicType;
456 * @param basicType basic type corresponding to this type; one of the
459 private Type(String descriptor, int basicType) {
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 294 const glu::DataType basicType = varValue.type.getBasicType();
295 const glu::DataType scalarType = glu::getDataTypeScalarType(basicType);
296 const int numComponents = glu::getDataTypeScalarSize(basicType);
299 str << glu::getDataTypeName(basicType) << "(";
    [all...]
es3fUniformApiTests.cpp 235 const glu::DataType basicType = type.getBasicType();
236 if (glu::isDataTypeSampler(basicType) && std::find(dst.begin(), dst.end(), basicType) == dst.end())
237 dst.push_back(basicType);
285 const glu::DataType basicType = (glu::DataType)s_testDataTypes[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testDataTypes)-1)];
286 const glu::Precision precision = glu::isDataTypeBoolOrBVec(basicType) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
287 return isArray ? glu::VarType(glu::VarType(basicType, precision), rnd.getInt(1, 5)) : glu::VarType(basicType, precision);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fUniformApiTests.cpp 175 const glu::DataType basicType = type.getBasicType();
176 if (glu::isDataTypeSampler(basicType) && std::find(dst.begin(), dst.end(), basicType) == dst.end())
177 dst.push_back(basicType);
225 const glu::DataType basicType = (glu::DataType)s_testDataTypes[rnd.getInt(0, DE_LENGTH_OF_ARRAY(s_testDataTypes)-1)];
226 const glu::Precision precision = glu::isDataTypeBoolOrBVec(basicType) ? glu::PRECISION_LAST : glu::PRECISION_MEDIUMP;
227 return isArray ? glu::VarType(glu::VarType(basicType, precision), rnd.getInt(1, 5)) : glu::VarType(basicType, precision);
    [all...]

Completed in 1452 milliseconds