HomeSort by relevance Sort by last modified time
    Searched full:structtypes (Results 1 - 12 of 12) sorted by null

  /external/llvm/include/llvm/IR/
TypeFinder.h 36 std::vector<StructType*> StructTypes;
48 iterator begin() { return StructTypes.begin(); }
49 iterator end() { return StructTypes.end(); }
51 const_iterator begin() const { return StructTypes.begin(); }
52 const_iterator end() const { return StructTypes.end(); }
54 bool empty() const { return StructTypes.empty(); }
55 size_t size() const { return StructTypes.size(); }
56 iterator erase(iterator I, iterator E) { return StructTypes.erase(I, E); }
58 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
  /external/llvm/lib/Transforms/Utils/
MetaRenamer.cpp 94 TypeFinder StructTypes;
95 StructTypes.run(M, true);
96 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) {
97 StructType *STy = StructTypes[i];
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 209 llvm::SmallVector<llvm::Type*, 16> StructTypes;
210 StructTypes.push_back(VoidPtrTy); // const void *in
211 StructTypes.push_back(VoidPtrTy); // void *out
212 StructTypes.push_back(VoidPtrTy); // const void *usr
213 StructTypes.push_back(Int32Ty); // uint32_t usr_len
214 StructTypes.push_back(Int32Ty); // uint32_t x
215 StructTypes.push_back(Int32Ty); // uint32_t y
216 StructTypes.push_back(Int32Ty); // uint32_t z
217 StructTypes.push_back(Int32Ty); // uint32_t lod
218 StructTypes.push_back(Int32Ty); // enum RsAllocationCubemapFac
    [all...]
  /external/deqp/modules/gles31/functional/
es31fUniformLocationTests.hpp 55 StructList structTypes;
es31fProgramInterfaceDefinition.cpp 318 std::set<const glu::StructType*> structTypes;
323 collectStructPtrs(structTypes, m_shaders[shaderNdx]->m_defaultBlock.variables[varNdx].varType);
327 collectStructPtrs(structTypes, m_shaders[shaderNdx]->m_defaultBlock.interfaceBlocks[interfaceNdx].variables[varNdx].varType);
330 for (std::set<const glu::StructType*>::iterator it = structTypes.begin(); it != structTypes.end(); ++it)
es31fUniformLocationTests.cpp 689 for (int i = 0; i < int(structTypes.size()); i++)
690 delete structTypes[i];
853 structTypes.push_back(structProto);
930 structTypes.push_back(testTypes[0]);
931 structTypes.push_back(testTypes[1]);
932 structTypes.push_back(testTypes[2]);
933 structTypes.push_back(testTypes[3]);
    [all...]
es31fProgramUniformTests.cpp 498 // would mean that we'd need to update pointers from uniforms to point to the new structTypes.
    [all...]
  /external/llvm/lib/IR/
TypeFinder.cpp 91 StructTypes.clear();
109 StructTypes.push_back(STy);
  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 178 TypeFinder StructTypes;
179 StructTypes.run(M, false);
181 for (unsigned i = 0, e = StructTypes.size(); i != e; ++i) {
182 StructType *STy = StructTypes[i];
  /external/deqp/modules/gles2/functional/
es2fUniformApiTests.cpp 459 vector<const StructType*> structTypes;
465 for (int j = 0; j < (int)structTypes.size(); j++)
466 delete structTypes[j];
467 structTypes.clear();
468 uniform.type = (("u_var" + de::toString(i)).c_str(), generateRandomType(3, structIdx, structTypes, rnd));
472 for (int j = 0; j < (int)structTypes.size(); j++)
473 res->addStructType(structTypes[j]);
481 // would mean that we'd need to update pointers from uniforms to point to the new structTypes.
    [all...]
  /external/deqp/modules/gles3/functional/
es3fUniformApiTests.cpp 525 vector<const StructType*> structTypes;
531 for (int j = 0; j < (int)structTypes.size(); j++)
532 delete structTypes[j];
533 structTypes.clear();
534 uniform.type = (("u_var" + de::toString(i)).c_str(), generateRandomType(3, structIdx, structTypes, rnd));
538 for (int j = 0; j < (int)structTypes.size(); j++)
539 res->addStructType(structTypes[j]);
547 // would mean that we'd need to update pointers from uniforms to point to the new structTypes.
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]

Completed in 1177 milliseconds