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

1 2 3 4 5 6

  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
TypedConstant.java 36 public final int getBasicType() {
37 return getType().getBasicType();
Zeroes.java 39 switch (type.getBasicType()) {
  /dalvik/dx/src/com/android/dx/rop/cst/
TypedConstant.java 36 public final int getBasicType() {
37 return getType().getBasicType();
Zeroes.java 39 switch (type.getBasicType()) {
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
TypeBearer.java 50 public int getBasicType();
54 * is equivalent to {@code getFrameType().getBasicType()}, and
59 * @see #getBasicType
  /dalvik/dx/src/com/android/dx/rop/type/
TypeBearer.java 50 public int getBasicType();
54 * is equivalent to {@code getFrameType().getBasicType()}, and
59 * @see #getBasicType
  /dalvik/dx/src/com/android/dx/cf/code/
ReturnAddress.java 70 public int getBasicType() {
71 return Type.RETURN_ADDRESS.getBasicType();
Merger.java 229 int superBt = supertype.getBasicType();
230 int subBt = subtype.getBasicType();
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Intermediate.cpp 104 if (left->getType().getBasicType() == EbtBlock || right->getType().getBasicType() == EbtBlock)
167 if (left->getType().getBasicType() == EbtBlock || right->getType().getBasicType() == EbtBlock)
224 if (child->getType().getBasicType() == EbtBlock)
229 if (child->getType().getBasicType() != EbtBool || child->getType().isMatrix() || child->getType().isArray() || child->getType().isVector()) {
239 if (child->getType().getBasicType() == EbtStruct || child->getType().isArray())
334 if (profile == EEsProfile && returnType.getQualifier().precision == EpqNone && returnType.getBasicType() != EbtBool)
424 switch (node->getBasicType()) {
434 if (node->getBasicType() == EbtSampler && op == EOpAssign &&
    [all...]
Constant.cpp 172 returnType.shallowCopy(TType(getType().getBasicType(), EvqConst, 0, rightNode->getMatrixCols(), getMatrixRows()));
176 switch (getType().getBasicType()) {
228 returnType.shallowCopy(TType(getBasicType(), EvqConst, getMatrixRows()));
239 returnType.shallowCopy(TType(getBasicType(), EvqConst, rightNode->getMatrixCols()));
286 switch (getType().getBasicType()) {
451 switch (getType().getBasicType()) {
464 switch (getType().getBasicType()) {
690 bool isFloatingPoint = children[0]->getAsTyped()->getBasicType() == EbtFloat ||
691 children[0]->getAsTyped()->getBasicType() == EbtDouble;
692 bool isSigned = children[0]->getAsTyped()->getBasicType() == EbtInt |
    [all...]
reflection.cpp 193 if (baseType.getBasicType() != EbtBlock)
205 if (baseType.getBasicType() != EbtBlock)
305 bool block = base->getBasicType() == EbtBlock;
380 return type.getBasicType() != EbtBlock && type.getBasicType() != EbtStruct;
541 switch (type.getBasicType()) {
554 switch (type.getBasicType()) {
567 switch (type.getBasicType()) {
621 switch (type.getBasicType()) {
ParseHelper.cpp 465 if ((variable->getType().getBasicType() == EbtBlock ||
466 variable->getType().getBasicType() == EbtStruct) && variable->getType().getStruct() == nullptr) {
529 if (base->getBasicType() == EbtBlock) {
539 else if (base->getBasicType() == EbtSampler && version >= 130) {
600 if ((! limits.generalSamplerIndexing && base->getBasicType() == EbtSampler) ||
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
Intermediate.cpp 67 switch(type.getBasicType())
343 if (left->isMatrix() || left->isArray() || left->isVector() || left->getBasicType() == EbtStruct) {
350 if (left->getBasicType() != EbtBool || left->isMatrix() || left->isArray() || left->isVector()) {
357 if (!IsInteger(left->getBasicType()) || left->isMatrix() || left->isArray()) {
365 if (left->getBasicType() == EbtStruct || left->getBasicType() == EbtBool) {
371 if (left->getBasicType() == EbtStruct || left->getBasicType() == EbtBool || left->getBasicType() == EbtFloat) {
382 if(!IsInteger(left->getBasicType()) || !IsInteger(right->getBasicType())
    [all...]
SymbolTable.h 254 TBasicType basicType = type->getBasicType();
265 TBasicType basicType = type->getBasicType();
283 switch(type->getBasicType())
304 switch(type->getBasicType())
370 if(ptype1->getBasicType() == EbtGSampler2D)
373 bool gvec4 = (rvalue->getBasicType() == EbtGVec4);
378 else if(ptype1->getBasicType() == EbtGSampler3D)
381 bool gvec4 = (rvalue->getBasicType() == EbtGVec4);
386 else if(ptype1->getBasicType() == EbtGSamplerCube)
389 bool gvec4 = (rvalue->getBasicType() == EbtGVec4)
    [all...]
ParseHelper.cpp 414 if(IsSampler(node->getBasicType()))
418 else if(node->getBasicType() == EbtVoid)
627 if (op != EOpConstructStruct && IsSampler(typed->getBasicType())) {
631 if (typed->getBasicType() == EbtVoid) {
659 if (type->getBasicType() != EbtBool || type->isArray() || type->isMatrix() || type->isVector()) {
818 type.getBasicType() != EbtStruct && IsSampler(type.getBasicType())) {
828 if (IsSampler(type.getBasicType()))
831 if (type.getBasicType() == EbtStruct || type.isInterfaceBlock()) {
857 if (constant->getBasicType() == EbtUInt
    [all...]
ValidateSwitch.cpp 121 TBasicType conditionType = condition->getBasicType();
  /external/deqp/framework/opengl/
gluVarTypeUtil.cpp 140 else if (curType.isBasicType() && isDataTypeMatrix(curType.getBasicType()))
142 TCU_CHECK(de::inBounds(ndx, 0, getDataTypeMatrixNumColumns(curType.getBasicType())));
145 else if (curType.isBasicType() && isDataTypeVector(curType.getBasicType()))
147 TCU_CHECK(de::inBounds(ndx, 0, getDataTypeScalarSize(curType.getBasicType())));
gluVarTypeUtil.hpp 189 struct IsScalarType { bool operator() (const VarType& type) const { return type.isBasicType() && isDataTypeScalar(type.getBasicType()); } };
190 struct IsVectorOrScalarType { bool operator() (const VarType& type) const { return type.isBasicType() && isDataTypeScalarOrVector(type.getBasicType()); } };
247 DE_ASSERT(isDataTypeMatrix(parentType.getBasicType()));
248 if (curComp.index+1 < getDataTypeMatrixNumColumns(parentType.getBasicType()))
253 DE_ASSERT(isDataTypeVector(parentType.getBasicType()));
254 if (curComp.index+1 < getDataTypeScalarSize(parentType.getBasicType()))
294 DataType basicType = curType.getBasicType();
349 DataType basicType = curType->getBasicType();
396 DataType basicType = curType->getBasicType();
  /external/deqp/modules/gles31/functional/
es31fProgramInterfaceDefinition.cpp 61 if (varType.isBasicType() && predicate(varType.getBasicType()))
120 if (glu::isDataTypeBoolOrBVec(varType.getBasicType()))
131 const bool isOpaqueType = !glu::isDataTypeScalar(varType.getBasicType()) && !glu::isDataTypeVector(varType.getBasicType()) && !glu::isDataTypeMatrix(varType.getBasicType());
133 if (glu::isDataTypeBoolOrBVec(varType.getBasicType()))
177 const bool isOpaqueType = !glu::isDataTypeScalar(varType.getBasicType()) && !glu::isDataTypeVector(varType.getBasicType()) && !glu::isDataTypeMatrix(varType.getBasicType());
179 if (glu::isDataTypeBoolOrBVec(varType.getBasicType()) || isOpaqueType || glu::isDataTypeMatrix(varType.getBasicType())
    [all...]
es31fShaderCommonFunctionTests.cpp 368 const glu::DataType basicType = varValue.type.getBasicType();
524 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
536 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
606 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
629 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
706 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
736 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
818 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
827 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
881 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
    [all...]
es31fShaderIntegerFunctionTests.cpp 81 const glu::DataType basicType = varValue.type.getBasicType();
371 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
425 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
467 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
519 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
561 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
611 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
651 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
702 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
742 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
PhiTypeResolver.java 73 && (definsn.getResult().getBasicType() == Type.BT_VOID)) {
139 if (rs.getBasicType() != Type.BT_VOID) {
161 if (rs.getBasicType() == Type.BT_VOID){
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 117 if (glu::isDataTypeBoolOrBVec(output->varType.getBasicType()))
119 const int vecSize = glu::getDataTypeScalarSize(output->varType.getBasicType());
155 if (glu::isDataTypeBoolOrBVec(output->varType.getBasicType()))
157 const int vecSize = glu::getDataTypeScalarSize(output->varType.getBasicType());
196 if (glu::isDataTypeBoolOrBVec(output->varType.getBasicType()))
198 const int vecSize = glu::getDataTypeScalarSize(output->varType.getBasicType());
235 if (glu::isDataTypeBoolOrBVec(output->varType.getBasicType()))
237 const int vecSize = glu::getDataTypeScalarSize(output->varType.getBasicType());
311 if (useIntOutputs && glu::isDataTypeFloatOrVec(output.varType.getBasicType()))
313 const int vecSize = glu::getDataTypeScalarSize(output.varType.getBasicType());
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderIntegerFunctionTests.cpp 83 const glu::DataType basicType = varValue.type.getBasicType();
462 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
516 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
572 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
624 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
680 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
730 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
784 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
835 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
889 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 294 const glu::DataType basicType = varValue.type.getBasicType();
446 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
458 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
528 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
551 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
628 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
658 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
740 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
749 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
803 const glu::DataType type = m_spec.inputs[0].varType.getBasicType();
    [all...]

Completed in 459 milliseconds

1 2 3 4 5 6