Home
last modified time | relevance | path

Searched defs:Idx (Results 1 – 25 of 204) sorted by relevance

123456789

/external/llvm/include/llvm/ADT/
DPackedVector.h30 static T getValue(const BitVectorTy &Bits, unsigned Idx) { in getValue()
37 static void setValue(BitVectorTy &Bits, unsigned Idx, T val) { in setValue()
47 static T getValue(const BitVectorTy &Bits, unsigned Idx) { in getValue()
56 static void setValue(BitVectorTy &Bits, unsigned Idx, T val) { in setValue()
84 const unsigned Idx; variable
DSmallBitVector.h63 reference(SmallBitVector &b, unsigned Idx) : TheVector(b), BitPos(Idx) {} in reference()
295 SmallBitVector &set(unsigned Idx) { in set()
326 SmallBitVector &reset(unsigned Idx) { in reset()
357 SmallBitVector &flip(unsigned Idx) { in flip()
383 bool test(unsigned Idx) const { in test()
DBitVector.h47 reference(BitVector &b, unsigned Idx) { in reference()
235 BitVector &set(unsigned Idx) { in set()
273 BitVector &reset(unsigned Idx) { in reset()
313 BitVector &flip(unsigned Idx) { in flip()
330 bool test(unsigned Idx) const { in test()
DSparseMultiSet.h160 unsigned Idx = FreelistIdx; in addValue() local
171 void makeTombstone(unsigned Idx) { in makeTombstone()
217 unsigned Idx; variable
355 iterator findIndex(unsigned Idx) { in findIndex()
424 unsigned Idx = sparseIndex(Val); in insert() local
DStringRef.h432 size_t Idx = find(Separator); in split() local
449 size_t Idx = find(Separator); in split() local
484 size_t Idx = rfind(Separator); in rsplit() local
/external/llvm/lib/Target/ARM/
DARMTargetTransformInfo.cpp191 int Idx = CostTableLookup<MVT>(NEONFltDblTbl, array_lengthof(NEONFltDblTbl), in getCastInstrCost() local
274 int Idx = ConvertCostTableLookup<MVT>(NEONVectorConversionTbl, in getCastInstrCost() local
305 int Idx = ConvertCostTableLookup<MVT>(NEONFloatConversionTbl, in getCastInstrCost() local
338 int Idx = ConvertCostTableLookup<MVT>(NEONIntegerConversionTbl, in getCastInstrCost() local
359 int Idx = in getCastInstrCost() local
402 int Idx = ConvertCostTableLookup<MVT>(NEONVectorSelectTbl, in getCmpSelInstrCost() local
444 int Idx = CostTableLookup<MVT>(NEONShuffleTbl, array_lengthof(NEONShuffleTbl), in getShuffleCost() local
DThumb2RegisterInfo.cpp46 unsigned Idx = ConstantPool->getConstantPoolIndex(C, 4); in emitLoadConstPool() local
/external/llvm/lib/Target/AArch64/
DAArch64MachineFunctionInfo.h128 void setVariadicGPRIdx(int Idx) { VariadicGPRIdx = Idx; } in setVariadicGPRIdx()
134 void setVariadicFPRIdx(int Idx) { VariadicFPRIdx = Idx; } in setVariadicFPRIdx()
140 void setVariadicStackIdx(int Idx) { VariadicStackIdx = Idx; } in setVariadicStackIdx()
143 void setFramePointerOffset(int Idx) { FramePointerOffset = Idx; } in setFramePointerOffset()
/external/llvm/lib/Target/X86/
DX86TargetTransformInfo.cpp191 int Idx = CostTableLookup<MVT>(AVX1CostTable, array_lengthof(AVX1CostTable), in getArithmeticInstrCost() local
204 int Idx = CostTableLookup<MVT>(CustomLowered, array_lengthof(CustomLowered), in getArithmeticInstrCost() local
266 int Idx = ConvertCostTableLookup<MVT>(AVXConversionTbl, in getCastInstrCost() local
313 int Idx = CostTableLookup<MVT>(AVX2CostTbl, array_lengthof(AVX2CostTbl), ISD, MTy); in getCmpSelInstrCost() local
319 int Idx = CostTableLookup<MVT>(AVX1CostTbl, array_lengthof(AVX1CostTbl), ISD, MTy); in getCmpSelInstrCost() local
325 int Idx = CostTableLookup<MVT>(SSE42CostTbl, array_lengthof(SSE42CostTbl), ISD, MTy); in getCmpSelInstrCost() local
DX86MachineFunctionInfo.h124 void setVarArgsFrameIndex(int Idx) { VarArgsFrameIndex = Idx; } in setVarArgsFrameIndex()
127 void setRegSaveFrameIndex(int Idx) { RegSaveFrameIndex = Idx; } in setRegSaveFrameIndex()
/external/llvm/lib/CodeGen/
DSplitKit.cpp374 SlotIndex Idx) { in defValue()
471 void SplitEditor::selectIntv(unsigned Idx) { in selectIntv()
478 SlotIndex SplitEditor::enterIntvBefore(SlotIndex Idx) { in enterIntvBefore()
495 SlotIndex SplitEditor::enterIntvAfter(SlotIndex Idx) { in enterIntvAfter()
543 SlotIndex SplitEditor::leaveIntvAfter(SlotIndex Idx) { in leaveIntvAfter()
574 SlotIndex SplitEditor::leaveIntvBefore(SlotIndex Idx) { in leaveIntvBefore()
985 SlotIndex Idx = LIS.getInstructionIndex(MI); in rewriteAssigned() local
1203 SlotIndex Idx = leaveIntvAtTop(*MBB); in splitLiveThroughBlock() local
1217 SlotIndex Idx = enterIntvAtEnd(*MBB); in splitLiveThroughBlock() local
1247 SlotIndex Idx; in splitLiveThroughBlock() local
[all …]
DLiveDebugVariables.cpp204 void addDef(SlotIndex Idx, const MachineOperand &LocMO) { in addDef()
445 bool LDVImpl::handleDebugValue(MachineInstr *MI, SlotIndex Idx) { in handleDebugValue()
473 SlotIndex Idx = MBBI == MBB->begin() ? in collectDebugValues() local
489 void UserValue::extendDef(SlotIndex Idx, unsigned LocNo, in extendDef()
581 SlotIndex Idx = LIS.getInstructionIndex(MI); in addDefsFromCopies() local
601 SlotIndex Idx = Kills[i]; in addDefsFromCopies() local
638 SlotIndex Idx = Defs[i].first; in computeIntervals() local
890 findInsertLocation(MachineBasicBlock *MBB, SlotIndex Idx, in findInsertLocation()
916 void UserValue::insertDebugValue(MachineBasicBlock *MBB, SlotIndex Idx, in insertDebugValue()
/external/clang/unittests/AST/
DCommentParser.cpp94 size_t Idx, in GetChildAt()
119 size_t Idx, in HasTextAt()
140 size_t Idx, in HasTextWithNewlineAt()
162 size_t Idx, in HasBlockCommandAt()
184 size_t Idx, in HasParamCommandAt()
232 size_t Idx, in HasTParamCommandAt()
265 size_t Idx, in HasInlineCommandAt()
285 size_t Idx, in HasInlineCommandAt()
303 size_t Idx, in HasInlineCommandAt()
326 size_t Idx, in HasHTMLStartTagAt()
[all …]
/external/llvm/utils/TableGen/
DCodeGenSchedule.h284 const CodeGenSchedRW &getSchedWrite(unsigned Idx) const { in getSchedWrite()
290 const CodeGenSchedRW &getSchedRead(unsigned Idx) const { in getSchedRead()
296 const CodeGenSchedRW &getSchedRW(unsigned Idx, bool IsRead) const { in getSchedRW()
301 unsigned Idx = getSchedRWIdx(Def, IsRead); in getSchedRW() local
315 CodeGenSchedClass &getSchedClass(unsigned Idx) { in getSchedClass()
319 const CodeGenSchedClass &getSchedClass(unsigned Idx) const { in getSchedClass()
/external/llvm/include/llvm/Support/
DArrayRecycler.h43 T *pop(unsigned Idx) { in pop()
54 void push(unsigned Idx, T *Ptr) { in push()
DTargetFolder.h137 Constant *CreateGetElementPtr(Constant *C, Constant *Idx) const { in CreateGetElementPtr()
152 Constant *CreateInBoundsGetElementPtr(Constant *C, Constant *Idx) const { in CreateInBoundsGetElementPtr()
235 Constant *CreateExtractElement(Constant *Vec, Constant *Idx) const { in CreateExtractElement()
240 Constant *Idx) const { in CreateInsertElement()
DConstantFolder.h125 Constant *CreateGetElementPtr(Constant *C, Constant *Idx) const { in CreateGetElementPtr()
140 Constant *CreateInBoundsGetElementPtr(Constant *C, Constant *Idx) const { in CreateInBoundsGetElementPtr()
211 Constant *CreateExtractElement(Constant *Vec, Constant *Idx) const { in CreateExtractElement()
216 Constant *Idx) const { in CreateInsertElement()
/external/clang/test/PCH/
Dexprs.c82 double get_from_double_array(unsigned Idx) { return double_array[Idx]; } in get_from_double_array()
85 float get_from_designated(unsigned Idx) { in get_from_designated()
/external/clang/lib/Serialization/
DASTReader.cpp756 unsigned Idx = 0; in ParseLineTable() local
1768 unsigned Idx = 0, N = Record.size(); in ReadControlBlock() local
2059 unsigned Idx = 0; in ReadASTBlock() local
2221 for (unsigned Idx = 0, N = Record.size() - 1; Idx < N; /* in loop */) { in ReadASTBlock() local
2371 for (unsigned Idx = 0, N = Record.size(); Idx != N; /* In loop */) { in ReadASTBlock() local
2593 for (unsigned Idx = 0; Idx < Record.size(); /* increment in loop */) { in ReadASTBlock() local
3616 for (unsigned Idx = 0; Idx != Record.size(); ++Idx) { in ReadSubmoduleBlock() local
3637 for (unsigned Idx = 0; Idx + 1 < Record.size(); Idx += 2) { in ReadSubmoduleBlock() local
3693 unsigned Idx = 0; in ParseLanguageOptions() local
3724 unsigned Idx = 0; in ParseTargetOptions() local
[all …]
/external/llvm/lib/IR/
DAttributeImpl.h251 iterator begin(unsigned Idx) in begin()
253 iterator end(unsigned Idx) in end()
256 const_iterator begin(unsigned Idx) const in begin()
258 const_iterator end(unsigned Idx) const in end()
DAttributes.cpp595 AttributeSet AttributeSet::get(LLVMContext &C, unsigned Idx, AttrBuilder &B) { in get()
624 AttributeSet AttributeSet::get(LLVMContext &C, unsigned Idx, in get()
646 AttributeSet AttributeSet::addAttribute(LLVMContext &C, unsigned Idx, in addAttribute()
652 AttributeSet AttributeSet::addAttribute(LLVMContext &C, unsigned Idx, in addAttribute()
659 AttributeSet AttributeSet::addAttributes(LLVMContext &C, unsigned Idx, in addAttributes()
708 AttributeSet AttributeSet::removeAttribute(LLVMContext &C, unsigned Idx, in removeAttribute()
714 AttributeSet AttributeSet::removeAttributes(LLVMContext &C, unsigned Idx, in removeAttributes()
922 AttrBuilder::AttrBuilder(AttributeSet AS, unsigned Idx) in AttrBuilder()
985 unsigned Idx = ~0U; in removeAttributes() local
1072 unsigned Idx = ~0U; in hasAttributes() local
DDebugLoc.cpp164 int &Idx = ScopeRecordIdx[Scope]; in getOrAddScopeRecordIdxEntry() local
187 int &Idx = ScopeInlinedAtIdx[std::make_pair(Scope, IA)]; in getOrAddScopeInlinedAtIdxEntry() local
/external/llvm/unittests/ADT/
DSCCIteratorTest.cpp27 static void ValidateIndex(unsigned Idx) { in ValidateIndex()
54 void AddNode(unsigned Idx) { in AddNode()
60 void DeleteNode(unsigned Idx) { in DeleteNode()
66 bool count(unsigned Idx) { in count()
DHashingTest.cpp178 for (unsigned Idx = 1, Size = all_one_c.size(); Idx < Size; ++Idx) { in TEST() local
186 for (unsigned Idx = 1, Size = all_zero_c.size(); Idx < Size; ++Idx) { in TEST() local
194 for (unsigned Idx = 1, Size = all_one_int.size(); Idx < Size; ++Idx) { in TEST() local
202 for (unsigned Idx = 1, Size = all_zero_int.size(); Idx < Size; ++Idx) { in TEST() local
/external/llvm/lib/Transforms/Instrumentation/
DThreadSanitizer.cpp373 int Idx = getMemoryAccessFuncIndex(Addr); in instrumentLoadOrStore() local
438 int Idx = getMemoryAccessFuncIndex(Addr); in instrumentAtomic() local
453 int Idx = getMemoryAccessFuncIndex(Addr); in instrumentAtomic() local
468 int Idx = getMemoryAccessFuncIndex(Addr); in instrumentAtomic() local
485 int Idx = getMemoryAccessFuncIndex(Addr); in instrumentAtomic() local
520 size_t Idx = CountTrailingZeros_32(TypeSize / 8); in getMemoryAccessFuncIndex() local

123456789