HomeSort by relevance Sort by last modified time
    Searched refs:StructType (Results 76 - 100 of 176) sorted by null

1 2 34 5 6 7 8

  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 406 StructType *ST = NULL;
409 ST = dyn_cast<StructType>(PT->getElementType());
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutCase.cpp 58 using glu::StructType;
244 for (std::vector<StructType*>::iterator i = m_structs.begin(); i != m_structs.end(); i++)
251 StructType& ShaderInterface::allocStruct (const char* name)
254 m_structs.push_back(new StructType(name));
264 bool operator() (const StructType* type) const
270 const StructType* ShaderInterface::findStruct (const char* name) const
272 std::vector<StructType*>::const_iterator pos = std::find_if(m_structs.begin(), m_structs.end(), StructNameEquals(name));
276 void ShaderInterface::getNamedStructs (std::vector<const StructType*>& structs) const
278 for (std::vector<StructType*>::const_iterator i = m_structs.begin(); i != m_structs.end(); i++)
404 for (StructType::ConstIterator memberIter = type.getStructPtr()->begin(); memberIter != type.getStructPtr()->end() (…)
    [all...]
es31fUniformBlockTests.cpp 98 StructType& typeS = m_interface.allocStruct("S");
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 133 StructType *STy = cast<StructType>(Ty);
135 for (StructType::element_iterator I = STy->element_begin(),
489 if (StructType *STy = dyn_cast<StructType>(Ty)) {
    [all...]
StripSymbols.cpp 181 StructType *STy = StructTypes[i];
  /external/clang/lib/CodeGen/
CGObjCRuntime.h 29 class StructType;
TargetInfo.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 60 class StructType;
  /external/llvm/lib/Transforms/Utils/
CodeExtractor.cpp 335 StructType *StructTy;
337 StructTy = StructType::get(M->getContext(), paramTy);
450 StructType *StructArgTy = nullptr;
459 StructArgTy = StructType::get(newFunction->getContext(), ArgTypes);
  /frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp 244 llvm::StructType *RsLaunchDimensionsTy =
245 llvm::StructType::create(RsLaunchDimensionsTypes, "RsLaunchDimensions");
285 llvm::StructType *RsExpandKernelDriverInfoPfxTy =
286 llvm::StructType::create(RsExpandKernelDriverInfoPfxTypes, "RsExpandKernelDriverInfoPfx");
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 713 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
    [all...]
SeparateConstOffsetFromGEP.cpp 712 StructType *StTy = cast<StructType>(*GTI);
    [all...]
StraightLineStrengthReduce.cpp 261 StructType *STy = cast<StructType>(*GTI);
  /external/llvm/lib/IR/
AsmWriter.cpp 402 DenseMap<StructType*, unsigned> NumberedTypes;
410 void printStructBody(StructType *Ty, raw_ostream &OS);
421 std::vector<StructType*>::iterator NextToUse = NamedTypes.begin(), I, E;
423 StructType *STy = *I;
475 StructType *STy = cast<StructType>(Ty);
483 DenseMap<StructType*, unsigned>::iterator I = NumberedTypes.find(STy);
516 void TypePrinting::printStructBody(StructType *STy, raw_ostream &OS) {
528 StructType::element_iterator I = STy->element_begin();
531 for (StructType::element_iterator E = STy->element_end(); I != E; ++I)
    [all...]
Core.cpp 419 return wrap(StructType::get(*unwrap(C), Tys, Packed != 0));
430 return wrap(StructType::create(*unwrap(C), Name));
435 StructType *Type = unwrap<StructType>(Ty);
444 unwrap<StructType>(StructTy)->setBody(Tys, Packed != 0);
448 return unwrap<StructType>(StructTy)->getNumElements();
452 StructType *Ty = unwrap<StructType>(StructTy);
453 for (StructType::element_iterator I = Ty->element_begin(),
459 return unwrap<StructType>(StructTy)->isPacked()
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTransformFeedbackTests.cpp 184 glu::StructType* createStruct (const char* name);
188 const vector<glu::StructType*>& getStructs (void) const { return m_structs; }
197 vector<glu::StructType*> m_structs;
210 for (vector<glu::StructType*>::iterator i = m_structs.begin(); i != m_structs.end(); i++)
214 glu::StructType* ProgramSpec::createStruct (const char* name)
217 m_structs.push_back(new glu::StructType(name));
363 for (vector<glu::StructType*>::const_iterator structIter = spec.getStructs().begin(); structIter != spec.getStructs().end(); structIter++)
365 const glu::StructType* structPtr = *structIter;
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 452 StructType *ST = dyn_cast<StructType>(ExpectedType);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineInternal.h 444 StructType *ST = cast<StructType>(II->getType());
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.cpp 372 if (StructType *STy = dyn_cast<StructType>(Ty))
  /frameworks/compile/slang/BitWriter_2_9_func/
ValueEnumerator.cpp 372 if (StructType *STy = dyn_cast<StructType>(Ty))
  /frameworks/compile/slang/BitWriter_3_2/
ValueEnumerator.cpp 372 if (StructType *STy = dyn_cast<StructType>(Ty))
  /external/deqp/modules/glshared/
glsRandomUniformBlockCase.cpp 173 StructType& structType = m_interface.allocStruct((string("s") + genName('A', 'Z', m_structNdx)).c_str());
184 structType.addMember((string("m") + (char)('A' + ndx)).c_str(), memberTypes[ndx], flags);
187 return VarType(&structType);
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 351 if (StructType *STy = dyn_cast<StructType>(*GTI++)) {
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 244 std::vector<StructType *> getIdentifiedStructTypes() const override;
264 std::vector<StructType *> IdentifiedStructTypes;
265 StructType *createIdentifiedStructType(LLVMContext &Context, StringRef Name);
266 StructType *createIdentifiedStructType(LLVMContext &Context);
    [all...]

Completed in 2528 milliseconds

1 2 34 5 6 7 8