HomeSort by relevance Sort by last modified time
    Searched defs:Idx (Results 151 - 175 of 200) sorted by null

1 2 3 4 5 67 8

  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReaderDecl.cpp 45 unsigned &Idx;
72 for (unsigned I = 0, Size = Record[Idx++]; I != Size; ++I)
73 IDs.push_back(ReadDeclID(Record, Idx));
199 unsigned RawLocation, const RecordData &Record, unsigned &Idx)
201 RawLocation(RawLocation), Record(Record), Idx(Idx),
431 GetTypeSourceInfo(Record, Idx);
434 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
455 if (Record[Idx++]) {
457 CD->NumCtorInitializers = Record[Idx++]
    [all...]
ASTReaderStmt.cpp 35 unsigned &Idx;
83 const ASTReader::RecordData &Record, unsigned &Idx)
84 : Reader(Reader), F(F), DeclsCursor(Cursor), Record(Record), Idx(Idx) { }
111 SourceLocation TemplateKWLoc = ReadSourceLocation(Record, Idx);
113 ArgInfo.setLAngleLoc(ReadSourceLocation(Record, Idx));
114 ArgInfo.setRAngleLoc(ReadSourceLocation(Record, Idx));
117 Reader.ReadTemplateArgumentLoc(F, Record, Idx));
122 assert(Idx == NumStmtFields && "Incorrect statement field count");
127 S->setSemiLoc(ReadSourceLocation(Record, Idx));
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 373 unsigned Idx = Proto.find('i');
374 assert(Idx > 0 && "Can't return an immediate!");
375 return Idx - 1;
383 unsigned Idx = Proto.find('a');
384 assert(Idx > 0 && "Can't return a splat!");
385 return Idx - 1;
404 unsigned Idx = 0;
407 ++Idx;
410 Idx += std::max(1U, getParamType(I).getNumVectors());
412 return Idx;
    [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /external/llvm/lib/Analysis/
ValueTracking.cpp     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 87 Constant *getConstantFwdRef(unsigned Idx, Type *Ty);
88 Value *getValueFwdRef(unsigned Idx, Type *Ty);
90 void assignValue(Value *V, unsigned Idx);
128 Metadata *getValueFwdRef(unsigned Idx);
129 void assignValue(Metadata *MD, unsigned Idx);
624 static bool convertToString(ArrayRef<uint64_t> Record, unsigned Idx,
626 if (Idx > Record.size())
629 for (unsigned i = Idx, e = Record.size(); i != e; ++i)
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 156 std::pair<unsigned, bool> getRegForGEPIndex(const Value *Idx);
564 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
565 TmpOffset += SL->getElementOffset(Idx);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]
ARMFastISel.cpp 497 unsigned Idx = MCP.getConstantPoolIndex(cast<Constant>(CFP), Align);
504 .addConstantPoolIndex(Idx)
562 unsigned Idx = MCP.getConstantPoolIndex(C, Align);
567 .addConstantPoolIndex(Idx));
573 .addConstantPoolIndex(Idx)
631 unsigned Idx = MCP.getConstantPoolIndex(CPV, Align);
638 DestReg).addConstantPoolIndex(Idx);
647 .addConstantPoolIndex(Idx)
808 unsigned Idx = cast<ConstantInt>(Op)->getZExtValue();
809 TmpOffset += SL->getElementOffset(Idx);
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
HexagonInstrInfo.cpp 867 int32_t Idx = Off;
870 .addImm(Idx)
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 831 unsigned Idx;
839 : V(V), Idx(I), K(K) {}
841 : V(SDValue(nullptr, 0)), Idx(UINT32_MAX), K(K) {}
858 return Idx;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 416 ConstantInt *Idx = cast<ConstantInt>(U->getOperand(2));
421 if (Idx->getZExtValue() >= NumElements)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 43 static ConstantInt *ExtractElement(Constant *V, Constant *Idx) {
44 return cast<ConstantInt>(ConstantExpr::getExtractElement(V, Idx));
66 Constant *Idx = ConstantInt::get(Type::getInt32Ty(In1->getContext()), i);
67 if (HasAddOverflow(ExtractElement(Result, Idx),
68 ExtractElement(In1, Idx),
69 ExtractElement(In2, Idx),
101 Constant *Idx = ConstantInt::get(Type::getInt32Ty(In1->getContext()), i);
102 if (HasSubOverflow(ExtractElement(Result, Idx),
103 ExtractElement(In1, Idx),
104 ExtractElement(In2, Idx),
    [all...]
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 216 int Idx = PN->getBasicBlockIndex(Invoke->getParent());
217 if (Idx == -1) continue;
218 PN->setIncomingBlock(Idx, NewBB);
378 Constant *getConstantFwdRef(unsigned Idx, Type *Ty);
379 Value *getValueFwdRef(unsigned Idx, Type *Ty);
381 void AssignValue(Value *V, unsigned Idx);
422 Metadata *getValueFwdRef(unsigned Idx);
423 void AssignValue(Metadata *MD, unsigned Idx);
658 static bool ConvertToString(ArrayRef<uint64_t> Record, unsigned Idx,
660 if (Idx > Record.size()
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
CGExprScalar.cpp     [all...]
CGOpenMPRuntime.cpp     [all...]
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]
SemaDeclAttr.cpp 89 static QualType getFunctionOrMethodParamType(const Decl *D, unsigned Idx) {
91 return cast<FunctionProtoType>(FnTy)->getParamType(Idx);
93 return BD->getParamDecl(Idx)->getType();
95 return cast<ObjCMethodDecl>(D)->parameters()[Idx]->getType();
98 static SourceRange getFunctionOrMethodParamRange(const Decl *D, unsigned Idx) {
100 return FD->getParamDecl(Idx)->getSourceRange();
102 return MD->parameters()[Idx]->getSourceRange();
104 return BD->getParamDecl(Idx)->getSourceRange();
219 unsigned Idx = UINT_MAX) {
223 if (Idx != UINT_MAX
    [all...]

Completed in 924 milliseconds

1 2 3 4 5 67 8