/external/llvm/lib/Analysis/ |
D | TypeMetadataUtils.cpp | 103 if (EVI->getNumIndices() == 1 && EVI->getIndices()[0] == 0) { in findDevirtualizableCallsForTypeCheckedLoad() 107 if (EVI->getNumIndices() == 1 && EVI->getIndices()[0] == 1) { in findDevirtualizableCallsForTypeCheckedLoad()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | Select.java | 267 public int[] getIndices() { in getIndices() method in Select 292 final int getIndices(final int index) { in getIndices() method in Select
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | TypeMetadataUtils.cpp | 114 if (EVI->getNumIndices() == 1 && EVI->getIndices()[0] == 0) { in findDevirtualizableCallsForTypeCheckedLoad() 118 if (EVI->getNumIndices() == 1 && EVI->getIndices()[0] == 1) { in findDevirtualizableCallsForTypeCheckedLoad()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | TypeMetadataUtils.cpp | 115 if (EVI->getNumIndices() == 1 && EVI->getIndices()[0] == 0) { in findDevirtualizableCallsForTypeCheckedLoad() 119 if (EVI->getNumIndices() == 1 && EVI->getIndices()[0] == 1) { in findDevirtualizableCallsForTypeCheckedLoad()
|
/external/llvm/lib/IR/ |
D | Instruction.cpp | 374 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices(); in haveSameSpecialState() 376 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices(); in haveSameSpecialState()
|
D | ConstantsContext.h | 460 Indexes(CE->hasIndices() ? CE->getIndices() : ArrayRef<unsigned>()) {} 466 Indexes(CE->hasIndices() ? CE->getIndices() : ArrayRef<unsigned>()) { 491 if (Indexes != (CE->hasIndices() ? CE->getIndices() : ArrayRef<unsigned>()))
|
/external/fonttools/Lib/fontTools/ttLib/ |
D | macUtils.py | 10 indices = reader.getIndices('sfnt')
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXGenericToNVVM.cpp | 279 return Builder.CreateExtractValue(NewOperands[0], C->getIndices()); in remapConstantExpr() 283 C->getIndices()); in remapConstantExpr()
|
/external/llvm-project/llvm/lib/Target/NVPTX/ |
D | NVPTXGenericToNVVM.cpp | 279 return Builder.CreateExtractValue(NewOperands[0], C->getIndices()); in remapConstantExpr() 283 C->getIndices()); in remapConstantExpr()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instruction.cpp | 417 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices(); in haveSameSpecialState() 419 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices(); in haveSameSpecialState()
|
D | ConstantsContext.h | 483 Indexes(CE->hasIndices() ? CE->getIndices() : ArrayRef<unsigned>()), 491 Indexes(CE->hasIndices() ? CE->getIndices() : ArrayRef<unsigned>()), 517 if (Indexes != (CE->hasIndices() ? CE->getIndices() : ArrayRef<unsigned>()))
|
/external/llvm-project/llvm/lib/IR/ |
D | Instruction.cpp | 441 return IVI->getIndices() == cast<InsertValueInst>(I2)->getIndices(); in haveSameSpecialState() 443 return EVI->getIndices() == cast<ExtractValueInst>(I2)->getIndices(); in haveSameSpecialState()
|
/external/llvm-project/llvm/lib/Transforms/InstCombine/ |
D | InstCombinePHI.cpp | 312 if (!I || !I->hasOneUser() || I->getIndices() != FirstIVI->getIndices()) in foldPHIArgInsertValueInstructionIntoPHI() 335 FirstIVI->getIndices(), PN.getName()); in foldPHIArgInsertValueInstructionIntoPHI() 352 if (!I || !I->hasOneUser() || I->getIndices() != FirstEVI->getIndices() || in foldPHIArgExtractValueInstructionIntoPHI() 372 FirstEVI->getIndices(), PN.getName()); in foldPHIArgExtractValueInstructionIntoPHI()
|
/external/llvm-project/mlir/lib/Dialect/Quant/Utils/ |
D | QuantizeUtils.cpp | 92 return SparseElementsAttr::get(newSparseType, realSparseAttr.getIndices(), in convertSparseElementsAttr()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | RecordName.cpp | 76 auto Indices = Args.getIndices(); in visitKnownRecord() 92 auto Indices = Strings.getIndices(); in visitKnownRecord()
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeTableBuilder.cpp | 64 Builder.writeUInt32(Record.getIndices().size()); in writeArgList() 65 for (TypeIndex TI : Record.getIndices()) { in writeArgList()
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | RecordName.cpp | 77 auto Indices = Args.getIndices(); in visitKnownRecord() 94 auto Indices = Strings.getIndices(); in visitKnownRecord()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXGenericToNVVM.cpp | 330 return Builder.CreateExtractValue(NewOperands[0], C->getIndices()); in remapConstantExpr() 334 C->getIndices()); in remapConstantExpr()
|
/external/tensorflow/tensorflow/compiler/xla/service/mlir_gpu/ |
D | passes.cc | 138 auto storeIndices = storeOp.getIndices(); in runOnFunction() 139 auto loadIndices = loadOp.getIndices(); in runOnFunction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | FunctionComparator.cpp | 588 ArrayRef<unsigned> LIndices = IVI->getIndices(); in cmpOperations() 589 ArrayRef<unsigned> RIndices = cast<InsertValueInst>(R)->getIndices(); in cmpOperations() 599 ArrayRef<unsigned> LIndices = EVI->getIndices(); in cmpOperations() 600 ArrayRef<unsigned> RIndices = cast<ExtractValueInst>(R)->getIndices(); in cmpOperations()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | FunctionComparator.cpp | 608 ArrayRef<unsigned> LIndices = IVI->getIndices(); in cmpOperations() 609 ArrayRef<unsigned> RIndices = cast<InsertValueInst>(R)->getIndices(); in cmpOperations() 619 ArrayRef<unsigned> LIndices = EVI->getIndices(); in cmpOperations() 620 ArrayRef<unsigned> RIndices = cast<ExtractValueInst>(R)->getIndices(); in cmpOperations()
|
D | Evaluator.cpp | 423 getVal(EVI->getAggregateOperand()), EVI->getIndices()); in EvaluateBlock() 429 getVal(IVI->getInsertedValueOperand()), IVI->getIndices()); in EvaluateBlock()
|
/external/llvm/lib/Transforms/Utils/ |
D | Evaluator.cpp | 299 getVal(EVI->getAggregateOperand()), EVI->getIndices()); in EvaluateBlock() 305 getVal(IVI->getInsertedValueOperand()), IVI->getIndices()); in EvaluateBlock()
|
D | SimplifyIndVar.cpp | 401 if (EVI->getIndices()[0] == 1) in eliminateOverflowIntrinsic() 404 assert(EVI->getIndices()[0] == 0 && "Only two possibilities!"); in eliminateOverflowIntrinsic()
|
/external/fonttools/Lib/fontTools/misc/ |
D | macRes.py | 151 def getIndices(self, resType): member in ResourceReader
|