Home
last modified time | relevance | path

Searched refs:funcTypes (Results 1 – 3 of 3) sorted by relevance

/external/deqp/modules/gles3/performance/
Des3pShaderOperatorTests.cpp2178 const ValueType* const funcTypes = functionCaseGroups[funcNdx].types; in init() local
2212 switch (funcTypes[i]) in init()
2247 if (funcTypes[i] == VALUE_NONE) in init()
2251 int isFloat = funcTypes[i] & VALUE_ANY_FLOAT; in init()
2252 int isBool = funcTypes[i] & VALUE_ANY_BOOL; in init()
2253 int isInt = funcTypes[i] & VALUE_ANY_INT; in init()
2254 int isMat = funcTypes[i] == VALUE_MATRIX; in init()
2255 int inSize = (funcTypes[i] & VALUE_ANY_GENTYPE) ? curSize in init()
2256 : funcTypes[i] == VALUE_VEC3 ? 3 in init()
2257 : funcTypes[i] == VALUE_VEC4 ? 4 in init()
[all …]
/external/deqp/modules/gles2/performance/
Des2pShaderOperatorTests.cpp2135 const ValueType* const funcTypes = functionCaseGroups[funcNdx].types; in init() local
2169 switch (funcTypes[i]) in init()
2204 if (funcTypes[i] == VALUE_NONE) in init()
2208 int isFloat = funcTypes[i] & VALUE_ANY_FLOAT; in init()
2209 int isBool = funcTypes[i] & VALUE_ANY_BOOL; in init()
2210 int isInt = funcTypes[i] & VALUE_ANY_INT; in init()
2211 int isMat = funcTypes[i] == VALUE_MATRIX; in init()
2212 int inSize = (funcTypes[i] & VALUE_ANY_GENTYPE) ? curSize in init()
2213 : funcTypes[i] == VALUE_VEC3 ? 3 in init()
2214 : funcTypes[i] == VALUE_VEC4 ? 4 in init()
/external/llvm-project/lld/wasm/
DInputFiles.cpp393 ArrayRef<uint32_t> funcTypes = wasmObj->functionTypes(); in parse() local
398 auto* func = make<InputFunction>(types[funcTypes[i]], &funcs[i], this); in parse()