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

1 2 3 4 5 6 7 8 910

  /external/llvm/lib/Target/PTX/
PTXRegisterInfo.cpp 34 unsigned Index;
37 Index = 0;
38 while (!MI.getOperand(Index).isFI()) {
39 ++Index;
40 assert(Index < MI.getNumOperands() &&
44 int FrameIndex = MI.getOperand(Index).getIndex();
50 // This frame index is post stack slot re-use assignments
51 MI.getOperand(Index).ChangeToImmediate(FrameIndex);
  /external/clang/lib/Driver/
Option.cpp 116 Arg *OptionGroup::accept(const ArgList &Args, unsigned &Index) const {
125 Arg *InputOption::accept(const ArgList &Args, unsigned &Index) const {
134 Arg *UnknownOption::accept(const ArgList &Args, unsigned &Index) const {
144 Arg *FlagOption::accept(const ArgList &Args, unsigned &Index) const {
147 if (getName().size() != strlen(Args.getArgString(Index)))
150 return new Arg(getUnaliasedOption(), Index++);
158 Arg *JoinedOption::accept(const ArgList &Args, unsigned &Index) const {
160 const char *Value = Args.getArgString(Index) + getName().size();
161 return new Arg(getUnaliasedOption(), Index++, Value);
171 unsigned &Index) const
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_index.py 7 index = Index.create()
9 # FIXME: test Index.read
12 index = Index.create()
13 assert isinstance(index, Index)
14 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))
  /external/llvm/lib/Target/CellSPU/
SPUMachineFunction.h 42 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
  /external/llvm/lib/Target/MSP430/
MSP430MachineFunctionInfo.h 41 void setRAIndex(int Index) { ReturnAddrIndex = Index; }
  /external/llvm/lib/CodeGen/
ObjectCodeEmitter.cpp 119 /// getJumpTableEntryAddress - Return the address of the jump table with index
120 /// 'Index' in the function that last called initJumpTableInfo.
121 uintptr_t ObjectCodeEmitter::getJumpTableEntryAddress(unsigned Index) const {
122 assert(JTLocations.size() > Index && "JT not emitted!");
123 return JTLocations[Index];
126 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
128 uintptr_t ObjectCodeEmitter::getConstantPoolEntryAddress(unsigned Index) const {
129 assert(CPLocations.size() > Index && "CP not emitted!");
130 return CPLocations[Index];
133 /// getConstantPoolEntrySection - Return the section of the 'Index' entry i
    [all...]
  /external/clang/lib/Sema/
TypeLocBuilder.h 33 /// The index of the first occupied byte in the buffer.
34 size_t Index;
46 : Buffer(InlineBuffer), Capacity(InlineCapacity), Index(InlineCapacity) {}
86 Index = Capacity;
110 size_t FullDataSize = Capacity - Index;
112 memcpy(DI->getTypeLoc().getOpaqueData(), &Buffer[Index], FullDataSize);
123 size_t FullDataSize = Capacity - Index;
125 memcpy(Mem, &Buffer[Index], FullDataSize);
139 if (LocalSize > Index) {
140 size_t RequiredCapacity = Capacity + (LocalSize - Index);
    [all...]
  /external/llvm/include/llvm/Object/
MachOObject.h 117 StringRef getStringAtIndex(unsigned Index) const {
118 size_t End = getStringTableData().find('\0', Index);
119 return getStringTableData().slice(Index, End);
139 const LoadCommandInfo &getLoadCommandInfo(unsigned Index) const;
155 unsigned Index,
159 unsigned Index,
163 unsigned Index,
166 uint64_t RelocationTableOffset, unsigned Index,
169 uint64_t SymbolTableOffset, unsigned Index,
172 uint64_t SymbolTableOffset, unsigned Index,
    [all...]
  /external/llvm/lib/Analysis/
LoopPass.cpp 200 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
201 LoopPass *LP = getContainedPass(Index);
215 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
216 LoopPass *LP = getContainedPass(Index);
258 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
    [all...]
RegionPass.cpp 69 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
70 RegionPass *RP = (RegionPass *)getContainedPass(Index);
83 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
84 RegionPass *P = (RegionPass*)getContainedPass(Index);
136 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index)
    [all...]
  /frameworks/compile/libbcc/lib/Disassembler/
Disassembler.cpp 113 uint64_t Index;
115 for (Index = 0; Index < FuncSize; Index += Size) {
118 if (Disassmbler->getInstruction(Inst, Size, *BufferMObj, Index,
122 OS.write_hex((uint32_t)Func + Index);
124 OS.write_hex(*(uint32_t *)(Func + Index));
  /external/clang/include/clang/Driver/
Arg.h 42 /// The index at which this argument appears in the containing
44 unsigned Index;
57 Arg(const Option *Opt, unsigned Index, const Arg *BaseArg = 0);
58 Arg(const Option *Opt, unsigned Index,
60 Arg(const Option *Opt, unsigned Index,
65 unsigned getIndex() const { return Index; }
Option.h 159 /// Index to the position where argument parsing should resume
161 virtual Arg *accept(const ArgList &Args, unsigned &Index) const = 0;
174 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
189 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
202 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
217 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
230 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
243 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
256 virtual Arg *accept(const ArgList &Args, unsigned &Index) const;
277 virtual Arg *accept(const ArgList &Args, unsigned &Index) const
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseSvnDiffHeader.pl 45 Index: WebKitTools/Scripts/VCSUtils.pm
55 Index: WebKitTools/Scripts/VCSUtils.pm
70 Index: WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl
80 Index: WebKitTools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl
95 Index: index_path.py
105 Index: index_path.py
121 Index: index_path.py\r
131 Index: index_path.py\r
146 Index: index_path.py
156 Index: index_path.p
    [all...]
parseDiff.pl 39 Index: Makefile
52 Index: Makefile
73 Index: test_file.swf
89 Index: test_file.swf
109 Index: test_file.swf
126 Index: test_file.swf
150 Index: Makefile
166 Index: Makefile
187 Index: Makefile_new
207 Index: Makefil
    [all...]
parseDiffHeader.pl 55 Index: index_path.py
65 Index: index_path.py
91 Index: foo.exe
parsePatch.pl 43 Index: Makefile
49 Index: Makefile_new
60 Index: Makefile
  /external/clang/lib/
Makefile 13 FrontendTool Index Driver
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 33 unsigned Index;
40 unsigned Index;
104 EXPECT_EQ(0U, Listener.EmittedEvents[0].Index);
111 EXPECT_EQ(1U, Listener.EmittedEvents[1].Index);
118 EXPECT_EQ(2U, Listener.FreedEvents[0].Index);
121 EXPECT_EQ(3U, Listener.FreedEvents[1].Index);
157 EXPECT_EQ(0U, Listener1.EmittedEvents[0].Index);
164 EXPECT_EQ(1U, Listener1.FreedEvents[0].Index);
171 EXPECT_EQ(0U, Listener2.EmittedEvents[0].Index);
178 EXPECT_EQ(1U, Listener2.EmittedEvents[1].Index);
    [all...]
  /external/clang/bindings/python/examples/cindex/
cindex-includes.py 19 from clang.cindex import Index
32 index = Index.create()
33 tu = index.parse(None, args)
  /external/chromium/chrome/browser/bookmarks/
bookmark_index.h 29 // BookmarkIndex maintains an index of the titles of bookmarks for quick
33 // BookmarkIndex maintains the index (index_) as a map of sets. The map (type
34 // Index) maps from a lower case string to the set (type NodeSet) of
56 typedef std::map<string16, NodeSet> Index;
104 void CombineMatchesInPlace(const Index::const_iterator& index_i,
116 void CombineMatches(const Index::const_iterator& index_i,
129 Index index_;
  /external/llvm/lib/VMCore/
PassManager.cpp 197 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
198 BasicBlockPass *BP = getContainedPass(Index);
353 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
354 ModulePass *MP = getContainedPass(Index);
869 for (unsigned Index = 0; Index < PMT_Last; ++Index)
    [all...]
  /external/llvm/include/llvm/CodeGen/
ObjectCodeEmitter.h 45 /// start of the section for that constant pool index.
49 /// containing the constant pool entry for that index.
53 /// start of the section for that jump table index.
144 /// getJumpTableEntryAddress - Return the address of the jump table with index
145 /// 'Index' in the function that last called initJumpTableInfo.
146 virtual uintptr_t getJumpTableEntryAddress(unsigned Index) const;
153 /// getConstantPoolEntryAddress - Return the address of the 'Index' entry in
155 virtual uintptr_t getConstantPoolEntryAddress(unsigned Index) const;
157 /// getConstantPoolEntrySection - Return the section of the 'Index' entry in
159 virtual uintptr_t getConstantPoolEntrySection(unsigned Index) const
    [all...]
  /external/llvm/lib/Object/
MachOObject.cpp 141 MachOObject::getLoadCommandInfo(unsigned Index) const {
142 assert(Index < getHeader().NumLoadCommands && "Invalid index!");
145 if (Index >= NumLoadedCommands) {
147 if (Index == 0) {
150 const LoadCommandInfo &Prev = getLoadCommandInfo(Index - 1);
154 LoadCommandInfo &Info = LoadCommands[Index];
162 NumLoadedCommands = Index + 1;
165 return LoadCommands[Index];
248 SwapValue(Value.Index);
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 52 unsigned Index = Storage.size();
54 if (Index == 0) return;
58 unsigned Target = (Index + 1) / 2 - 1;
59 if (!Precedes(data[Index], data[Target])) return;
60 std::swap(data[Index], data[Target]);
62 Index = Target;
80 unsigned Index = 0;
82 // With a 1-based index, the children would be Index*2 and Index*2+1
    [all...]

Completed in 680 milliseconds

1 2 3 4 5 6 7 8 910