HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 76 - 100 of 235) sorted by null

1 2 34 5 6 7 8 910

  /external/llvm/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 247 SDValue &Index);
251 SDValue &Index);
263 SDValue &Index);
315 \arg Index The base address index
319 SDValue &Index) {
329 Index = Zero;
352 Index = Zero;
360 Index = Zero;
385 \arg Index Base address inde
    [all...]
  /external/llvm/utils/TableGen/
ClangDiagnosticsEmitter.cpp 319 // Diagnostic name index generation
348 std::vector<RecordIndexElement> Index;
349 Index.reserve(Diags.size());
352 Index.push_back(RecordIndexElement(R));
355 std::sort(Index.begin(), Index.end(), RecordIndexElementSorter());
357 for (unsigned i = 0, e = Index.size(); i != e; ++i) {
358 const RecordIndexElement &R = Index[i];
ClangSACheckersEmitter.cpp 77 unsigned Index;
206 // Group index
234 // Group index
248 unsigned index = 0; local
251 I->second.Index = index++;
264 OS << "static const short CheckerArray" << I->second.Index << "[] = { ";
279 OS << "static const short SubPackageArray" << I->second.Index << "[] = { ";
288 OS << recordGroupMap[I->second]->Index << ", ";
306 OS << "CheckerArray" << I->second.Index << ", ";
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_index.cc 20 // represents a set of terms (as an interator into the Index) matching the
24 std::list<Index::const_iterator> terms;
161 Index::const_iterator i = index_.lower_bound(term);
179 // index adding all entries that start with term to matches.
189 // Prefix match and not the first term. Loop through index combining
203 void BookmarkIndex::CombineMatchesInPlace(const Index::const_iterator& index_i,
221 void BookmarkIndex::CombineMatches(const Index::const_iterator& index_i,
262 Index::iterator i = index_.find(term);
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 89 SDValue &Index);
130 SDValue &Base, SDValue &Disp, SDValue &Index);
132 SDValue &Base, SDValue &Disp, SDValue &Index);
134 SDValue &Base, SDValue &Disp, SDValue &Index);
139 SDValue &Base, SDValue &Disp, SDValue &Index);
219 // the index field with the index field unused, use -B as the index.
223 // it costs an additional mov if the index register has other uses.
231 // Test if the index field is free for use
    [all...]
SystemZAsmPrinter.cpp 202 const MachineOperand &Index = MI->getOperand(OpNum+2);
211 if (Index.getReg()) {
217 assert(!Index.getReg() && "Should allocate base register first!");
  /external/libvpx/vp8/common/x86/
boolcoder.cxx 37 assert( ebits + mbits < sizeof(Index) * 8);
60 cdouble p = ( *this)( (Index) i);
153 return (Index) ( (e << mbits) + (m & mmask));
177 return (Index) i;
180 double bool_coder_spec::operator()( Index i) const {
184 return 1. - ( *this)( (Index) (max_index - i));
  /external/clang/include/clang/Basic/
SourceManager.h 359 /// \brief Read the source location entry with index ID, which will always be
464 /// Negative FileIDs are indexes into this table. To get from ID to an index,
    [all...]
  /external/llvm/include/llvm/
Attributes.h 164 /// with an index.
167 unsigned Index; ///< Index of the parameter for which the attributes apply.
168 ///< Index 0 is used for return value attributes.
169 ///< Index ~0U is used for function attributes.
173 P.Index = Idx;
212 /// addAttr - Add the specified attribute at the specified index to this
217 /// removeAttr - Remove the specified attribute at the specified index from
225 /// getParamAttributes - The attributes for the specified index are
228 assert (Idx && Idx != ~0U && "Invalid parameter index!");
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineCodeEmitter.h 304 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
307 virtual uintptr_t getConstantPoolEntryAddress(unsigned Index) const = 0;
309 /// getJumpTableEntryAddress - Return the address of the jump table with index
310 /// 'Index' in the function that last called initJumpTableInfo.
312 virtual uintptr_t getJumpTableEntryAddress(unsigned Index) const = 0;
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 231 unsigned Index = 0;
236 Result[Index] = *I;
244 Result[Index] = JustLoad;
246 ++Index;
263 unsigned Index = 0;
268 Result[Index] = *I;
276 Result[Index] = JustStore;
278 ++Index;
436 /// index with a negative value.
441 // The alignment of the frame index can be determined from its offset fro
    [all...]
ELFWriter.cpp 174 // the global symbol lookup, use a zero index because the table
175 // index will be determined later.
184 // and to the external symbol lookup, use a zero index because
185 // the symbol table index will be determined later.
320 // For a private symbols, keep track of the index inside
336 /// header index.
781 // Symbol index in the symbol table
790 // them needs a different approach to retrieve the symbol table index.
809 // Get the symbol index for the section symbol
    [all...]
  /external/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.h 230 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
ARMMachObjectWriter.cpp 327 unsigned Index = 0;
349 Index = SD->getIndex();
357 // The index is the section ordinal (1-based).
360 Index = SymSD.getOrdinal() + 1;
373 MRE.Word1 = ((Index << 0) |
  /external/clang/include/clang/Driver/
OptTable.h 76 /// The index of the first option which can be parsed (i.e., is not a
146 /// updating Index.
148 /// \param [in] [out] Index - The current parsing position in the argument
149 /// string list; on return this will be the index of the next argument
153 /// (in which case Index still points at the conceptual next argument string
155 Arg *ParseOneArg(const ArgList &Args, unsigned &Index) const;
168 /// \param MissingArgIndex - On error, the index of the option which could
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 49 // Compute field index.
51 // FIXME: The index here is closely tied to how ASTContext::getObjCLayout is
54 unsigned Index = 0;
61 ++Index;
63 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
65 return RL->getFieldOffset(Index);
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnProperty.pl 187 Index: Makefile.shared
196 expectedNextLine => "Index: Makefile.shared\n",
205 Index: Makefile.shared
215 expectedNextLine => "Index: Makefile.shared\r\n",
263 Index: Makefile.shared
272 expectedNextLine => "Index: Makefile.shared\n",
283 Index: Makefile.shared
293 expectedNextLine => "Index: Makefile.shared\r\n",
  /external/clang/include/clang/Analysis/
AnalysisContext.h 234 // The index of the callsite in the CFGBlock.
235 unsigned Index;
242 Block(blk), Index(idx) {}
251 unsigned getIndex() const { return Index; }
  /external/clang/test/CodeGenCXX/
temp-order.cpp 13 unsigned Product, Index;
15 TempTracker() : Product(1), Index(0) {}
30 TT.Product *= pow(P, ++TT.Index);
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 41 CXDiagnostic clang_getDiagnostic(CXTranslationUnit Unit, unsigned Index) {
43 if (!CXXUnit || Index >= CXXUnit->stored_diag_size())
46 return new CXStoredDiagnostic(CXXUnit->stored_diag_begin()[Index],
  /external/llvm/include/llvm/ADT/
StringRef.h 179 char operator[](size_t Index) const {
180 assert(Index < Length && "Invalid index!");
181 return Data[Index];
214 /// \return - The index of the first occurrence of \arg C, or npos if not
225 /// \return - The index of the first occurrence of \arg Str, or npos if not
231 /// \return - The index of the last occurrence of \arg C, or npos if not
246 /// \return - The index of the last occurrence of \arg Str, or npos if not
335 /// \param Start - The index of the starting character in the substring; if
336 /// the index is npos or greater than the length of the string then th
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeISelDAGToDAG.cpp 85 bool SelectAddrRegReg(SDValue N, SDValue &Base, SDValue &Index);
121 SelectAddrRegReg(SDValue N, SDValue &Base, SDValue &Index) {
137 Index = N.getOperand(1);
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 68 int Index;
155 void MakeSymbolReal(COFFSymbol &S, size_t Index);
291 /// @returns the index into the string table where the string is now located.
496 void WinCOFFObjectWriter::MakeSymbolReal(COFFSymbol &S, size_t Index) {
503 S.Index = Index;
761 coff_symbol->Index = -1;
768 assert(coff_symbol->Index != -1);
773 coff_symbol->Aux[0].Aux.WeakExternal.TagIndex = coff_symbol->Other->Index;
809 assert((*cr).Symb->Index != -1)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp     [all...]
LegalizeTypes.cpp     [all...]

Completed in 578 milliseconds

1 2 34 5 6 7 8 910