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

1 2 3

  /frameworks/compile/slang/tests/P_reduce_general_input/
gen-input.pl 34 foreach my $basicType (@basicTypes) {
38 next if ($vecLen > 1) && (($basicType eq "bool") || ($basicType eq "MyStruct"));
41 next if ($vecLen > 1) && (substr($basicType, 0, 3) eq "rs_");
43 my $eltName = $basicType;
  /frameworks/compile/slang/tests/P_reduce_general_result/
gen-result.pl 27 foreach my $basicType (@basicTypes) {
32 next if ($vecLen > 1) && (($basicType eq "bool") || ($basicType eq "MyStruct"));
34 my $eltName = $basicType;
  /frameworks/compile/slang/tests/P_reduce_general_accumulator/
gen-accumulator.pl 45 foreach my $basicType (@basicTypes) {
49 next if ($vecLen > 1) && !grep(/^${basicType}$/, @basicTypesVectorable);
51 my $eltName = $basicType;
  /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...]
  /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/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...]
gluVarType.cpp 42 VarType::VarType (DataType basicType, Precision precision)
45 m_data.basic.type = basicType;
  /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/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/modules/gles31/functional/
es31fShaderSharedVarTests.cpp 74 SharedBasicVarCase (Context& context, const char* name, DataType basicType, Precision precision, const tcu::UVec3& workGroupSize);
92 static std::string getBasicCaseDescription (DataType basicType, Precision precision, const tcu::UVec3& workGroupSize)
97 str << getDataTypeName(basicType) << ", work group size = " << workGroupSize;
101 SharedBasicVarCase::SharedBasicVarCase (Context& context, const char* name, DataType basicType, Precision precision, const tcu::UVec3& workGroupSize)
102 : TestCase (context, name, getBasicCaseDescription(basicType, precision, workGroupSize).c_str())
103 , m_basicType (basicType)
368 for (int basicType = TYPE_FLOAT; basicType <= TYPE_BOOL_VEC4; basicType++)
370 if (glu::isDataTypeBoolOrBVec(DataType(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...]
es31fSeparateShaderTests.cpp 204 const DataType basicType = input.varType.getBasicType();
207 switch (getDataTypeScalarType(basicType))
215 DataType floatType = getDataTypeFloatScalars(basicType);
224 if (isDataTypeScalarOrVector(basicType))
226 switch (getDataTypeScalarSize(basicType))
244 else if (isDataTypeMatrix(basicType))
246 int rows = getDataTypeMatrixNumRows(basicType);
247 int columns = getDataTypeMatrixNumColumns(basicType);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp 292 glu::DataType basicType = type.getBasicType();
294 if (glu::isDataTypeMatrix(basicType))
297 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
298 : glu::getDataTypeMatrixNumRows(basicType);
304 return getDataTypeByteAlignment(basicType);
333 glu::DataType basicType = type.getBasicType();
335 if (glu::isDataTypeMatrix(basicType))
338 const int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
339 : glu::getDataTypeMatrixNumRows(basicType);
345 return getDataTypeByteAlignment(basicType);
    [all...]
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 547 const glu::DataType basicType = outputType.getBasicType();
548 const int numComps = glu::getDataTypeNumComponents(basicType);
551 switch (glu::getDataTypeScalarType(basicType))
602 const glu::DataType basicType = symbol.varType.getBasicType();
603 const int vecSize = glu::getDataTypeScalarSize(basicType);
605 if (glu::isDataTypeFloatOrVec(basicType))
607 else if (glu::isDataTypeIntOrIVec(basicType))
609 else if (glu::isDataTypeUintOrUVec(basicType))
611 else if (glu::isDataTypeMatrix(basicType))
613 int numRows = glu::getDataTypeMatrixNumRows(basicType);
    [all...]
glsShaderLibraryCase.cpp 154 const DataType basicType = val.type.getBasicType();
155 const DataType floatType = getDataTypeFloatScalars(basicType);
160 if (getDataTypeScalarType(basicType) == TYPE_FLOAT)
254 const DataType basicType = val.type.getBasicType();
255 const DataType floatType = getDataTypeFloatScalars(basicType);
257 const char* const refTypeStr = getDataTypeName(basicType);
259 if (getDataTypeScalarType(basicType) == TYPE_FLOAT)
300 const DataType basicType = val.type.getBasicType();
301 const DataType floatType = getDataTypeFloatScalars(basicType);
303 const char* const refTypeStr = getDataTypeName(basicType);
    [all...]
glsUniformBlockCase.hpp 76 VarType (glu::DataType basicType, deUint32 flags);
86 glu::DataType getBasicType (void) const { return m_data.basicType; }
109 glu::DataType basicType;
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...]
  /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/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.hpp 71 VarType (glu::DataType basicType, deUint32 flags);
81 glu::DataType getBasicType (void) const { return m_data.basicType; }
104 glu::DataType basicType;
vktUniformBlockCase.cpp 71 VarType::VarType (glu::DataType basicType, deUint32 flags)
75 m_data.basicType = basicType;
366 glu::DataType basicType = type.getBasicType();
368 if (glu::isDataTypeMatrix(basicType))
371 int vecSize = isRowMajor ? glu::getDataTypeMatrixNumColumns(basicType)
372 : glu::getDataTypeMatrixNumRows(basicType);
377 return getDataTypeByteAlignment(basicType);
420 glu::DataType basicType = type.getBasicType();
424 entry.type = basicType;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktShaderLibrary.cpp 411 const DataType basicType = val.type.getBasicType();
412 const char* const refTypeStr = getDataTypeName(basicType);
622 const DataType basicType = values[ndx].type.getBasicType();
623 const bool isMatrix = isDataTypeMatrix(basicType);
624 const int numVecs = isMatrix ? getDataTypeMatrixNumColumns(basicType) : 1;
625 const DataType vecType = isMatrix ? glu::getDataTypeFloatVec(getDataTypeMatrixNumRows(basicType)) : basicType;
645 const DataType basicType = values[ndx].type.getBasicType();
646 const int numVecs = isDataTypeMatrix(basicType) ? getDataTypeMatrixNumColumns(basicType) : 1
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp 541 const glu::DataType basicType = outputType.getBasicType();
542 const int numComps = glu::getDataTypeNumComponents(basicType);
545 switch (glu::getDataTypeScalarType(basicType))
654 const glu::DataType basicType = symbol.varType.getBasicType();
655 const int vecSize = glu::getDataTypeScalarSize(basicType);
656 const VkFormat format = getAttributeFormat(basicType);
660 if (glu::isDataTypeFloatOrVec(basicType))
662 else if (glu::isDataTypeIntOrIVec(basicType))
664 else if (glu::isDataTypeUintOrUVec(basicType))
666 else if (glu::isDataTypeMatrix(basicType))
    [all...]

Completed in 2852 milliseconds

1 2 3