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

1 2 3 4 5 6 7 8 910

  /external/llvm/lib/Target/PTX/
PTXRegisterInfo.cpp 37 unsigned Index;
47 Index = 0;
48 while (!MI.getOperand(Index).isFI()) {
49 ++Index;
50 assert(Index < MI.getNumOperands() &&
54 int FrameIndex = MI.getOperand(Index).getIndex();
70 // This frame index is post stack slot re-use assignments
71 //MI.getOperand(Index).ChangeToRegister(Reg, false);
72 MI.getOperand(Index).ChangeToImmediate(FrameIndex);
73 //MI.getOperand(Index) = ESOp
    [all...]
PTXParamManager.cpp 33 unsigned Index = AllParams.size();
34 AllParams[Index] = Param;
35 ArgumentParams.push_back(Index);
37 return Index;
50 unsigned Index = AllParams.size();
51 AllParams[Index] = Param;
52 ReturnParams.push_back(Index);
54 return Index;
67 unsigned Index = AllParams.size();
68 AllParams[Index] = Param
    [all...]
  /external/clang/lib/Driver/
Option.cpp 117 Arg *OptionGroup::accept(const ArgList &Args, unsigned &Index) const {
125 Arg *InputOption::accept(const ArgList &Args, unsigned &Index) const {
133 Arg *UnknownOption::accept(const ArgList &Args, unsigned &Index) const {
142 Arg *FlagOption::accept(const ArgList &Args, unsigned &Index) const {
145 if (getName().size() != strlen(Args.getArgString(Index)))
148 return new Arg(getUnaliasedOption(), Index++);
156 Arg *JoinedOption::accept(const ArgList &Args, unsigned &Index) const {
158 const char *Value = Args.getArgString(Index) + getName().size();
159 return new Arg(getUnaliasedOption(), Index++, Value);
169 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/clang/lib/AST/
SelectorLocationsKind.cpp 20 static SourceLocation getStandardSelLoc(unsigned Index,
27 assert(Index == 0);
35 assert(Index < NumSelArgs);
38 IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Index);
65 SourceLocation getArgLoc(unsigned Index, ArrayRef<T*> Args) {
66 return Index < Args.size() ? getArgLoc(Args[Index]) : SourceLocation();
104 SourceLocation clang::getStandardSelectorLoc(unsigned Index,
109 return getStandardSelLoc(Index, Sel, WithArgSpace,
110 getArgLoc(Index, Args), EndLoc)
    [all...]
  /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;
158 unsigned Index,
162 unsigned Index,
166 unsigned Index,
169 uint64_t RelocationTableOffset, unsigned Index,
172 uint64_t SymbolTableOffset, unsigned Index,
175 uint64_t SymbolTableOffset, unsigned Index,
    [all...]
  /external/llvm/tools/llvm-objdump/
MCFunction.cpp 48 uint64_t Index = WorkList.pop_back_val();
49 if (VisitedInsts.find(Index) != VisitedInsts.end())
52 for (;Index < End; Index += Size) {
53 VisitedInsts.insert(Index);
56 if (DisAsm->getInstruction(Inst, Size, Region, Index, DebugOut, nulls())){
57 Instructions.push_back(MCDecodedInst(Index, Size, Inst));
59 uint64_t targ = Ana->evaluateBranch(Inst, Index, Size);
60 if (targ != -1ULL && targ == Index+Size)
68 WorkList.push_back(Index+Size)
    [all...]
  /external/llvm/lib/Analysis/
LoopPass.cpp 156 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
157 LoopPass *LP = getContainedPass(Index);
171 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
172 LoopPass *LP = getContainedPass(Index);
214 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 112 uint64_t Index;
114 for (Index = 0; Index < FuncSize; Index += Size) {
117 if (Disassmbler->getInstruction(Inst, Size, *BufferMObj, Index,
121 OS.write_hex((uint32_t)Func + Index);
123 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; }
  /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...]
  /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/llvm/lib/Object/
MachOObject.cpp 142 MachOObject::getLoadCommandInfo(unsigned Index) const {
143 assert(Index < getHeader().NumLoadCommands && "Invalid index!");
146 if (Index >= NumLoadedCommands) {
148 if (Index == 0) {
151 const LoadCommandInfo &Prev = getLoadCommandInfo(Index - 1);
155 LoadCommandInfo &Info = LoadCommands[Index];
163 NumLoadedCommands = Index + 1;
166 return LoadCommands[Index];
261 SwapValue(Value.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/clang/include/clang/AST/
SelectorLocationsKind.h 57 SourceLocation getStandardSelectorLoc(unsigned Index,
75 SourceLocation getStandardSelectorLoc(unsigned Index,
  /external/llvm/lib/Target/PTX/InstPrinter/
PTXInstPrinter.cpp 86 unsigned Index = 2;
87 unsigned NumRets = MI->getOperand(Index++).getImm();
91 printOperand(MI, Index++, O);
94 printOperand(MI, Index++, O);
99 O << *(MI->getOperand(Index++).getExpr()) << ", (";
101 unsigned NumArgs = MI->getOperand(Index++).getImm();
103 printOperand(MI, Index++, O);
106 printOperand(MI, Index++, O);
  /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 196 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
197 BasicBlockPass *BP = getContainedPass(Index);
352 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
353 ModulePass *MP = getContainedPass(Index);
868 for (unsigned Index = 0; Index < PMT_Last; ++Index)
    [all...]

Completed in 635 milliseconds

1 2 3 4 5 6 7 8 910