Searched refs:TheVector (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | SmallBitVector.h | 58 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/ |
D | SmallBitVector.h | 60 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | SmallBitVector.h | 68 SmallBitVector &TheVector; variable 72 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {} in reference() 83 TheVector.set(BitPos); 85 TheVector.reset(BitPos); 90 return const_cast<const SmallBitVector &>(TheVector).operator[](BitPos);
|
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVModule.cpp | 1023 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()
|
D | SPIRVInstruction.h | 1503 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()),
|