Home
last modified time | relevance | path

Searched refs:TheVector (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DSmallBitVector.h58 SmallBitVector &TheVector; variable
62 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {} in reference()
71 TheVector.set(BitPos);
73 TheVector.reset(BitPos);
78 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
/external/llvm/include/llvm/ADT/
DSmallBitVector.h60 SmallBitVector &TheVector; variable
64 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {} in reference()
75 TheVector.set(BitPos);
77 TheVector.reset(BitPos);
82 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVModule.cpp1023 SPIRVModuleImpl::addVectorExtractDynamicInst(SPIRVValue *TheVector, in addVectorExtractDynamicInst() argument
1025 return addInstruction(new SPIRVVectorExtractDynamic(getId(), TheVector, in addVectorExtractDynamicInst()
1030 SPIRVModuleImpl::addVectorInsertDynamicInst(SPIRVValue *TheVector, in addVectorInsertDynamicInst() argument
1032 return addInstruction(new SPIRVVectorInsertDynamic(getId(), TheVector, in addVectorInsertDynamicInst()
1103 SPIRVModuleImpl::addCompositeExtractInst(SPIRVType *Type, SPIRVValue *TheVector, in addCompositeExtractInst() argument
1105 return addInstruction(new SPIRVCompositeExtract(Type, getId(), TheVector, in addCompositeExtractInst()
DSPIRVInstruction.h1503 SPIRVVectorExtractDynamic(SPIRVId TheId, SPIRVValue *TheVector,
1505 :SPIRVInstruction(5, OC, TheVector->getType()->getVectorComponentType(),
1506 TheId, TheBB), VectorId(TheVector->getId()),
1533 SPIRVVectorInsertDynamic(SPIRVId TheId, SPIRVValue *TheVector,
1535 :SPIRVInstruction(6, OC, TheVector->getType()->getVectorComponentType(),
1536 TheId, TheBB), VectorId(TheVector->getId()),