HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 176 - 200 of 382) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 310 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
313 virtual uintptr_t getConstantPoolEntryAddress(unsigned Index) const = 0;
315 /// getJumpTableEntryAddress - Return the address of the jump table with index
316 /// 'Index' in the function that last called initJumpTableInfo.
318 virtual uintptr_t getJumpTableEntryAddress(unsigned Index) const = 0;
MachineCodeEmitter.h 307 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
310 virtual uintptr_t getConstantPoolEntryAddress(unsigned Index) const = 0;
312 /// getJumpTableEntryAddress - Return the address of the jump table with index
313 /// 'Index' in the function that last called initJumpTableInfo.
315 virtual uintptr_t getJumpTableEntryAddress(unsigned Index) const = 0;
MachineOperand.h 45 MO_FrameIndex, ///< Abstract Stack Frame Index
159 int Index; // For MO_*Index - The index itself.
325 /// subregister Reg:SubReg. Take any existing SubReg index into account,
412 return Contents.OffsetedInfo.Val.Index;
490 Contents.OffsetedInfo.Val.Index = Idx;
  /external/llvm/include/llvm/
PassManagers.h 360 unsigned Index = 0;
363 InheritedAnalysis[Index++] = (*I)->getAvailableAnalysis();
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 320 Value *Index = *I;
321 // Compute the (potentially symbolic) offset in bytes for this index.
324 unsigned FieldNo = cast<ConstantInt>(Index)->getZExtValue();
332 if (ConstantInt *CIdx = dyn_cast<ConstantInt>(Index)) {
343 unsigned Width = cast<IntegerType>(Index->getType())->getBitWidth();
347 // Use GetLinearExpression to decompose the index into a C1*V+C2 form.
349 Index = GetLinearExpression(Index, IndexScale, IndexOffset, Extension,
352 // The GEP index scale ("Scale") scales C1*V+C2, yielding (C1*V+C2)*Scale.
358 // If we already had an occurrence of this index variable, merge thi
    [all...]
ConstantFolding.cpp 254 if (!CI) return false; // Index isn't a simple constant?
315 unsigned Index = SL->getElementContainingOffset(ByteOffset);
316 uint64_t CurEltOffset = SL->getElementOffset(Index);
322 uint64_t EltSize = TD.getTypeAllocSize(CS->getOperand(Index)->getType());
325 !ReadDataFromGlobal(CS->getOperand(Index), ByteOffset, CurPtr,
329 ++Index;
332 if (Index == CS->getType()->getNumElements())
336 uint64_t NextEltOffset = SL->getElementOffset(Index);
354 uint64_t Index = ByteOffset / EltSize;
355 uint64_t Offset = ByteOffset - Index * EltSize
    [all...]
  /external/llvm/lib/MC/
MachObjectWriter.cpp 426 unsigned Index = 1;
428 ie = Asm.end(); it != ie; ++it, ++Index)
429 SectionIndexMap[&it->getSection()] = Index;
430 assert(Index <= 256 && "Too many sections!");
432 // Index 0 is always the empty string.
473 assert(MSD.SectionIndex && "Invalid section index!");
506 assert(MSD.SectionIndex && "Invalid section index!");
516 Index = 0;
518 LocalSymbolData[i].SymbolData->setIndex(Index++);
520 ExternalSymbolData[i].SymbolData->setIndex(Index++)
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnDiffFooter.pl 156 Index: Makefile.shared
164 expectedNextLine => "Index: Makefile.shared\n",
295 diffName => "custom property followed by svn:executable, empty line and start of next index diff",
304 Index: Makefile.shared
312 expectedNextLine => "Index: Makefile.shared\n",
  /frameworks/compile/mclinker/lib/LD/
ELFWriter.cpp 450 Elf32_Word Index;
452 Index = 0;
454 Index = static_cast<Elf32_Word>(
457 rel->setSymbolAndType(Index, relocation->type());
491 Elf32_Word Index;
493 Index = 0;
495 Index = static_cast<Elf32_Word>(
498 rel->setSymbolAndType(Index, relocation->type());
565 return info_link->index();
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
BatchNode.java 422 compsForBuf[VertexBuffer.Type.Index.ordinal()] = components;
429 formatForBuf[VertexBuffer.Type.Index.ordinal()] = VertexBuffer.Format.UnsignedInt;
431 formatForBuf[VertexBuffer.Type.Index.ordinal()] = VertexBuffer.Format.UnsignedShort;
441 if (i == VertexBuffer.Type.Index.ordinal()) {
471 if (VertexBuffer.Type.Index.ordinal() == bufType) {
522 int index = 0; local
523 while (index < length) {
524 pos.x = tmpFloat[index];
525 norm.x = tmpFloatN[index++];
526 pos.y = tmpFloat[index];
573 int index = 0; local
    [all...]
Mesh.java 248 // if the bone weight/index buffers are modified
300 * This method does nothing if the mesh has no bone weight or index
350 * Prepares the mesh for software skinning by converting the bone index
376 * Set the LOD (level of detail) index buffers on this mesh.
386 * index buffer, returns zero if there are no lod levels.
393 * Returns the lod level at the given index.
395 * @param lod The lod level index, this does not include
396 * the main index buffer.
397 * @return The LOD index buffer at the index
    [all...]
  /external/llvm/lib/CodeGen/
MachineModuleInfo.cpp 61 unsigned Index; // The index in BBCallbacks for the BasicBlock.
118 Entry.Index = BBCallbacks.size()-1;
167 BBCallbacks[Entry.Index] = 0; // Clear the callback.
212 BBCallbacks[OldEntry.Index].setPtr(New); // Update the callback.
217 BBCallbacks[OldEntry.Index] = 0; // Update the callback.
556 /// getPersonalityIndex - Return unique index for current personality
557 /// function. NULL/first personality function should always get zero index.
574 // in the zero index.
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 83 /// The Lexer tracks line/col info as well as input index so its markers are
89 /// <see cref="IIntStream.Index"/>, or some other marker.</returns>
93 /// Return the current input symbol index 0..N where N indicates the
94 /// last symbol has been read. The index is the symbol about to be
97 function Index: Integer;
101 /// <see cref="IIntStream.Index"/> would return marker.
104 /// The marker will usually be <see cref="IIntStream.Index"/> but
142 /// Set the input cursor to the position indicated by index. This is
150 /// and in that its argument is strictly an input cursor (index).
162 /// The index is 0..N-1. A seek to position i means that LA(1) will retur
    [all...]
  /external/clang/tools/scan-build/
scan-build 325 my $Index = shift;
392 push @$Index,[ $FName, $BugCategory, $BugType, $BugFile, $BugLine,
499 # Scan each report file and build an index.
500 my @Index;
502 foreach my $file (@files) { ScanFile(\@Index, $Dir, $file, \@Stats); }
523 # Generate an index.html file.
524 my $FName = "$Dir/index.html";
607 for my $row ( @Index ) {
622 my $TotalBugs = scalar(@Index);
684 for my $row ( sort { $a->[2] cmp $b->[2] } @Index ) {
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 463 for (uint64_t Index = Start; Index < End; Index += Size) {
466 if (DisAsm->getInstruction(Inst, Size, memoryObject, Index,
470 outs() << format("%8" PRIx64 ":\t", SectAddress + Index);
472 DumpBytes(StringRef(Bytes.data() + Index, Size));
478 diContext->getLineInfoForAddress(SectAddress + Index);
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BufferedTreeNodeStream.cs 119 /** <summary>The complete mapping from stream index to tree node.
142 /** <summary>The index into the nodes list of the current node (next node
277 /** What is the stream index for node? 0..n-1
318 throw new InvalidOperationException("Cannot get the node at index i before the buffer is filled.");
348 int i = Index;
392 lastMarker = Index;
400 public virtual int Index {
414 public virtual void Seek(int index) {
418 p = index;
426 public virtual void Push(int index) {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BufferedTreeNodeStream.cs 128 /** <summary>The complete mapping from stream index to tree node.
151 /** <summary>The index into the nodes list of the current node (next node
318 /** What is the stream index for node? 0..n-1
376 throw new InvalidOperationException( "Cannot get the node at index i before the buffer is filled." );
412 int i = Index;
464 lastMarker = Index;
473 public virtual int Index
491 public virtual void Seek( int index )
497 p = index;
505 public virtual void Push( int index )
    [all...]
  /frameworks/compile/slang/
slang_rs_metadata_spec_encoder.cpp 63 typedef std::map</* key */unsigned, unsigned/* index */> TypesMapTy;
69 typedef std::map</* name */std::string, unsigned/* index */> RecordTypesMapTy;
72 typedef std::map<std::string, unsigned/* index */> StringsMapTy;
82 // and encodeRSFunc. Return false if the value of Index indicates failure.
83 inline bool checkReturnIndex(unsigned *Index) {
84 if (*Index == 0)
87 (*Index)--;
223 // This record type has been encoded before. Fast return its index here.
362 // Write string table and string index table
370 // Prepare named MDNode for string table and string index table
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 513 /// \brief Retrieve the depth and index of a template parameter.
526 /// \brief Retrieve the depth and index of an unexpanded parameter pack.
743 unsigned Depth, Index;
744 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]);
745 if (Depth == 0 && !SawIndices[Index]) {
746 SawIndices[Index] = true;
747 PackIndices.push_back(Index);
754 // expanded by this pack expansion (the outer index) and for each
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRStringStream.cs 53 /** <summary>0..n-1 index into string of next char</summary> */
59 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
69 * A null is kept @ index 0. Create upon first call to mark().
112 * Return the current input symbol index 0..n where n indicates the
113 * last symbol has been read. The index is the index of char to
117 public virtual int Index {
246 * consume() ahead until p==index; can't just set p=index as we must
250 public virtual void Seek(int index) {
    [all...]
BaseRecognizer.cs 379 if (state.lastErrorIndex == input.Index) {
380 // uh oh, another error at same token index; must be a case
386 state.lastErrorIndex = input.Index;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRStringStream.cs 55 /** <summary>0..n-1 index into string of next char</summary> */
61 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
71 * A null is kept @ index 0. Create upon first call to mark().
119 * Return the current input symbol index 0..n where n indicates the
120 * last symbol has been read. The index is the index of char to
124 public virtual int Index
281 * consume() ahead until p==index; can't just set p=index as we must
285 public virtual void Seek( int index )
    [all...]
BaseRecognizer.cs 446 if ( state.lastErrorIndex == input.Index )
448 // uh oh, another error at same token index; must be a case
454 state.lastErrorIndex = input.Index;
    [all...]

Completed in 708 milliseconds

1 2 3 4 5 6 78 91011>>