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

1 2 3

  /frameworks/rs/
spec.h 20 } VarType;
22 extern VarType *currType;
31 VarType ret;
32 VarType params[16];
rsg_generator.c 24 void printVarType(FILE *f, const VarType *vt) {
59 void printVarTypeAndName(FILE *f, const VarType *vt) {
168 const VarType *vt = &api->params[ct];
222 const VarType *vt = &api->params[ct2];
236 const VarType *vt = &api->params[ct2];
256 const VarType *vt = &api->params[ct2];
273 const VarType *vt = &api->params[ct2];
294 const VarType *vt = &api->params[ct2];
347 const VarType *vt = &api->params[ct2];
355 const VarType *vt = &api->params[ct2]
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
spec.h 20 } VarType;
22 extern VarType *currType;
31 VarType ret;
32 VarType params[16];
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
spec.h 20 } VarType;
22 extern VarType *currType;
31 VarType ret;
32 VarType params[16];
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
spec.h 20 } VarType;
22 extern VarType *currType;
31 VarType ret;
32 VarType params[16];
  /external/chromium_org/third_party/npapi/npspy/extern/java/
jni_md.h 87 # define JNI_PUBLIC_VAR(VarType) VarType
92 # define JNI_PUBLIC_VAR(VarType) VarType
102 # define JNI_PUBLIC_VAR(VarType) VarType
108 # define JNI_PUBLIC_VAR(VarType) VarType
113 # define JNI_PUBLIC_VAR(VarType) VarType
    [all...]
jri_md.h 75 # define JRI_PUBLIC_VAR(VarType) VarType
79 # define JRI_PUBLIC_VAR(VarType) VarType
87 # define JRI_PUBLIC_VAR(VarType) VarType
88 # define JRI_PUBLIC_VAR_EXP(VarType) __declspec(dllexport) VarType
89 # define JRI_PUBLIC_VAR_IMP(VarType) __declspec(dllimport) VarType
    [all...]
  /external/deqp/framework/opengl/
gluVarType.hpp 47 class VarType
50 VarType (void);
51 VarType (const VarType& other);
53 VarType (DataType basicType, Precision precision); //!< Basic type constructor.
54 VarType (const VarType& elementType, int arraySize); //!< Array type constructor.
55 explicit VarType (const StructType* structPtr); //!< Struct type constructor.
56 ~VarType (void);
65 const VarType& getElementType (void) const { DE_ASSERT(isArrayType()); return *m_data.array.elementType;
    [all...]
gluVarType.cpp 30 VarType::VarType (void)
35 VarType::VarType (const VarType& other)
41 VarType::VarType (DataType basicType, Precision precision)
48 VarType::VarType (const VarType& elementType, int arraySize
    [all...]
gluVarTypeUtil.hpp 71 // VarType subtype path utilities.
100 bool isValidTypePath (const VarType& type, Iterator begin, Iterator end);
103 VarType getVarType (const VarType& type, Iterator begin, Iterator end);
105 inline bool isValidTypePath (const VarType& type, const TypeComponentVector& path) { return isValidTypePath(type, path.begin(), path.end()); }
106 inline VarType getVarType (const VarType& type, const TypeComponentVector& path) { return getVarType(type, path.begin(), path.end()); }
109 void parseTypePath (const char* nameWithPath, const VarType& type, TypeComponentVector& path);
115 TypeAccessFormat (const VarType& type_, const TypeComponentVector& path_) : type(type_), path(path_) {}
117 const VarType& type
    [all...]
gluVarTypeUtil.cpp 85 SubTypeAccess::SubTypeAccess (const VarType& type)
97 void parseTypePath (const char* nameWithPath, const VarType& type, TypeComponentVector& path)
107 VarType curType = getVarType(type, path);
164 const VarType* curType = &format.type;
  /external/deqp/modules/glshared/
glsUniformBlockCase.hpp 67 // \todo [2012-07-25 pyry] Use glu::VarType.
71 class VarType
74 VarType (void);
75 VarType (const VarType& other);
76 VarType (glu::DataType basicType, deUint32 flags);
77 VarType (const VarType& elementType, int arraySize);
78 explicit VarType (const StructType* structPtr);
79 ~VarType (void)
    [all...]
glsShaderExecUtil.hpp 51 glu::VarType varType; //!< Symbol type.
54 Symbol (const std::string& name_, const glu::VarType& varType_) : name(name_), varType(varType_) {}
glsRandomUniformBlockCase.hpp 82 ub::VarType generateType (de::Random& rnd, int typeDepth, bool arrayOk);
glsRandomUniformBlockCase.cpp 146 VarType type = generateType(rnd, 0, true);
156 VarType RandomUniformBlockCase::generateType (de::Random& rnd, int typeDepth, bool arrayOk)
166 vector<VarType> memberTypes;
187 return VarType(&structType);
193 VarType elementType = generateType(rnd, typeDepth, arraysOfArraysOk);
194 return VarType(elementType, arrayLength);
243 return VarType(type, flags);
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutTests.cpp 42 using glu::VarType;
78 glu::VarType generateType (de::Random& rnd, int typeDepth, bool arrayOk, bool unusedArrayOk);
161 const glu::VarType& lastType = lastVar.getType();
162 const bool isUnsizedArr = lastType.isArrayType() && (lastType.getArraySize() == glu::VarType::UNSIZED_ARRAY);
200 const glu::VarType type = generateType(rnd, 0, true, isLastMember && (m_features & FEATURE_UNSIZED_ARRAYS));
211 glu::VarType RandomSSBOLayoutCase::generateType (de::Random& rnd, int typeDepth, bool arrayOk, bool unsizedArrayOk)
222 const glu::VarType elementType = generateType(rnd, typeDepth, childArrayOk, false);
223 return glu::VarType(elementType, glu::VarType::UNSIZED_ARRAY);
229 vector<glu::VarType> memberTypes
    [all...]
es31fUniformBlockTests.cpp 62 BlockBasicTypeCase (Context& context, const char* name, const char* description, const VarType& type, deUint32 layoutFlags, int numInstances)
77 static void createBlockBasicTypeCases (tcu::TestCaseGroup* group, Context& context, const char* name, const VarType& type, deUint32 layoutFlags, int numInstances = 0)
99 typeS.addMember("a", VarType(glu::TYPE_UINT_VEC3, PRECISION_HIGH), UNUSED_BOTH);
100 typeS.addMember("b", VarType(VarType(glu::TYPE_FLOAT_MAT2, PRECISION_MEDIUM), 4));
101 typeS.addMember("c", VarType(glu::TYPE_UINT, PRECISION_LOW));
104 block.addUniform(Uniform("u", VarType(glu::TYPE_INT, PRECISION_MEDIUM)));
105 block.addUniform(Uniform("s", VarType(VarType(VarType(&typeS), 3), 2)))
    [all...]
es31fProgramInterfaceDefinitionUtil.hpp 46 VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; }
57 const glu::VarType* getVariableType (void) const { DE_ASSERT(isVariableType()); return m_data.type; }
73 const glu::VarType* type;
168 void generateVariableTypeResourceNames (std::vector<std::string>& resources, const std::string& name, const glu::VarType& type, deUint32 resourceNameGenerationFlags);
es31fShaderIntegerFunctionTests.cpp 71 const glu::VarType& type;
74 VarValue (const glu::VarType& type_, const void* value_) : type(type_), value(value_) {}
224 sizes[ndx] = symbols[ndx].varType.getScalarSize();
232 totalSize += sym->varType.getScalarSize();
244 const int scalarSize = var.varType.getScalarSize();
298 << VarValue(m_spec.inputs[inNdx].varType, curInputPtr[inNdx])
304 << VarValue(m_spec.outputs[outNdx].varType, curOutputPtr[outNdx])
361 m_spec.inputs.push_back(Symbol("x", glu::VarType(baseType, precision)));
362 m_spec.inputs.push_back(Symbol("y", glu::VarType(baseType, precision)));
363 m_spec.outputs.push_back(Symbol("sum", glu::VarType(baseType, precision)))
    [all...]
  /external/deqp/modules/gles3/functional/
es3fUniformBlockTests.cpp 60 BlockBasicTypeCase (Context& context, const char* name, const char* description, const VarType& type, deUint32 layoutFlags, int numInstances)
75 static void createBlockBasicTypeCases (tcu::TestCaseGroup* group, Context& context, const char* name, const VarType& type, deUint32 layoutFlags, int numInstances = 0)
97 typeS.addMember("a", VarType(glu::TYPE_INT_VEC3, PRECISION_HIGH), UNUSED_BOTH); // First member is unused.
98 typeS.addMember("b", VarType(VarType(glu::TYPE_FLOAT_MAT3, PRECISION_MEDIUM), 4));
99 typeS.addMember("c", VarType(glu::TYPE_FLOAT_VEC4, PRECISION_HIGH));
102 block.addUniform(Uniform("s", VarType(&typeS), 0));
130 typeS.addMember("a", VarType(glu::TYPE_INT_VEC3, PRECISION_HIGH), UNUSED_BOTH);
131 typeS.addMember("b", VarType(VarType(glu::TYPE_FLOAT_MAT3, PRECISION_MEDIUM), 4))
    [all...]
  /sdk/emulator/opengl/host/tools/emugen/
TypeFactory.h 20 #include "VarType.h"
30 const VarType * getVarTypeByName(const std::string &type);
VarType.h 50 class VarType {
52 VarType() :
57 VarType(size_t id, const std::string & name, const VarConverter * converter, const std::string & printFormat , const bool isPointer) :
62 ~VarType()
TypeFactory.cpp 17 #include "VarType.h"
32 typedef std::map<std::string, VarType> TypeMap;
52 g_varMap.insert(std::pair<std::string, VarType>(name, VarType(g_typeId++, name, &g_var##size , printformat , ispointer)));
136 g_varMap.insert(std::pair<std::string, VarType>(name, VarType(g_typeId++, name, v ,printString,isPointer)));
138 g_varMap.insert(std::pair<std::string, VarType>(constName, VarType(g_typeId++, constName, v ,printString,isPointer))); //add a const type
145 const VarType * TypeFactory::getVarTypeByName(const std::string & type)
Var.h 19 #include "VarType.h"
42 const VarType * vartype,
48 m_type(const_cast<VarType *>(vartype)),
59 void init(const std::string name, const VarType * vartype,
65 m_type = vartype;
76 const VarType * type() const { return m_type; }
98 const VarType * m_type
    [all...]
  /external/clang/test/SemaCXX/
return.cpp 89 template <class VarType>
90 void Test(const VarType& value) {

Completed in 243 milliseconds

1 2 3