/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;
|
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/ |
glslang.y | 850 if ($1.basicType == EbtVoid) { [all...] |
localintermediate.h | 84 TIoRange(TRange location, TRange component, TBasicType basicType, int index) 85 : location(location), component(component), basicType(basicType), index(index) { } 92 TBasicType 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 | 289 private final int basicType; 465 * @param basicType basic type corresponding to this type; one of the 469 private Type(String descriptor, int basicType, int newAt) { 474 if ((basicType < 0) || (basicType >= BT_COUNT)) { 475 throw new IllegalArgumentException("bad basicType"); 483 this.basicType = basicType; 496 * @param basicType basic type corresponding to this type; one of the 499 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...] |
/libcore/ojluni/src/main/java/java/lang/invoke/ |
MethodTypeForm.java | 50 final MethodType basicType; // the canonical erasure, with primitives simplified 79 public MethodType basicType() { 80 return basicType; 85 assert(erasedType == basicType) 86 : "erasedType: " + erasedType + " != basicType: " + basicType; 147 this.basicType = erasedType; 149 this.basicType = MethodType.makeImpl(bt, bpts, true); 151 MethodTypeForm that = this.basicType.form(); 203 assert(basicType == erasedType) [all...] |
/dalvik/tools/hprof-conv/ |
HprofConv.c | 322 static int computeBasicLen(HprofBasicType basicType) 327 assert(basicType >= 0); 328 if (basicType >= maxSize) 330 return sizes[basicType]; 354 HprofBasicType basicType; 357 basicType = buf[2]; 358 basicLen = computeBasicLen(basicType); 360 DBUG("ERROR: invalid basicType %d\n", basicType); 375 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...] |
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/ |
Types.h | 979 TBasicType basicType; 992 basicType = EbtVoid; 1036 bool isImage() const { return basicType == EbtSampler && sampler.isImage(); } 1037 bool isSubpass() const { return basicType == EbtSampler && sampler.isSubpass(); } 1050 basicType(t), vectorSize(vs), matrixCols(mc), matrixRows(mr), vector1(isVector && vs == 1), 1060 basicType(t), vectorSize(vs), matrixCols(mc), matrixRows(mr), vector1(isVector && vs == 1), 1071 basicType(p.basicType), 1075 if (basicType == EbtSampler) [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::getDataTypeScalarType(DataType(basicType)) == glu::TYPE_DOUBLE [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/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/swiftshader/src/OpenGL/compiler/ |
parseConst.cpp | 168 TBasicType basicType = type.getBasicType(); 180 leftUnionArray[index].cast(basicType, rightUnionArray[i]); 193 leftUnionArray[i].cast(basicType, rightUnionArray[count]); 207 leftUnionArray[i].cast(basicType, rightUnionArray[0]);
|
SymbolTable.h | 254 TBasicType basicType = type->getBasicType(); 255 return basicType == EbtGenType || basicType == EbtGenIType || basicType == EbtGenUType || basicType == EbtGenBType; 265 TBasicType basicType = type->getBasicType(); 266 return basicType == EbtVec || basicType == EbtIVec || basicType == EbtUVec || basicType == EbtBVec [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;
|
/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 | 527 int basicType = ref.getBasicType(); 528 switch (basicType) { 540 int basicType = ref.getBasicType(); 541 switch (basicType) { 553 int basicType = ref.getBasicType(); 554 switch (basicType) { 566 int basicType = ref.getBasicType(); 567 switch (basicType) {
|
/external/deqp/external/vulkancts/modules/vulkan/ubo/ |
vktUniformBlockCase.hpp | 78 VarType (glu::DataType basicType, deUint32 flags); 88 glu::DataType getBasicType (void) const { return m_data.basicType; } 111 glu::DataType basicType;
|
/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...] |
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/hlsl/ |
hlslGrammar.cpp | 505 bool HlslGrammar::acceptTemplateType(TBasicType& basicType) 509 basicType = EbtFloat; 512 basicType = EbtDouble; 516 basicType = EbtInt; 519 basicType = EbtUint; 522 basicType = EbtBool; 548 TBasicType basicType; 549 if (! acceptTemplateType(basicType)) { 572 new(&type) TType(basicType, EvqTemporary, vecSizeI); 600 TBasicType basicType; [all...] |