Searched refs:Index (Results 1 - 25 of 265) sorted by relevance

1234567891011

/freebsd-10.0-release/contrib/llvm/lib/Target/MSP430/
H A DMSP430MachineFunctionInfo.h46 void setRAIndex(int Index) { ReturnAddrIndex = Index; } argument
49 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } argument
/freebsd-10.0-release/contrib/llvm/lib/Option/
H A DOption.cpp96 unsigned &Index,
102 Spelling = StringRef(Args.getArgString(Index), ArgSize);
110 if (ArgSize != strlen(Args.getArgString(Index)))
113 return new Arg(UnaliasedOption, Spelling, Index++);
115 const char *Value = Args.getArgString(Index) + ArgSize;
116 return new Arg(UnaliasedOption, Spelling, Index++, Value);
120 const char *Str = Args.getArgString(Index) + ArgSize;
121 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
149 if (ArgSize != strlen(Args.getArgString(Index)))
152 Index
95 accept(const ArgList &Args, unsigned &Index, unsigned ArgSize) const argument
[all...]
H A DOptTable.cpp187 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index) const {
188 unsigned Prev = Index;
189 const char *Str = Args.getArgString(Index);
194 return new Arg(getOption(TheInputOptionID), Str, Index++, Str);
221 if (Arg *A = Option(Start, this).accept(Args, Index, ArgSize))
225 if (Prev != Index)
229 return new Arg(getOption(TheUnknownOptionID), Str, Index++, Str);
241 unsigned Index = 0, End = ArgEnd - ArgBegin; local
242 while (Index < End) {
244 if (Args->getArgString(Index)[
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DOption.cpp94 unsigned &Index,
100 Spelling = StringRef(Args.getArgString(Index), ArgSize);
108 if (ArgSize != strlen(Args.getArgString(Index)))
111 return new Arg(UnaliasedOption, Spelling, Index++);
113 const char *Value = Args.getArgString(Index) + ArgSize;
114 return new Arg(UnaliasedOption, Spelling, Index++, Value);
118 const char *Str = Args.getArgString(Index) + ArgSize;
119 Arg *A = new Arg(UnaliasedOption, Spelling, Index++);
147 if (ArgSize != strlen(Args.getArgString(Index)))
150 Index
93 accept(const ArgList &Args, unsigned &Index, unsigned ArgSize) const argument
[all...]
H A DOptTable.cpp186 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index) const {
187 unsigned Prev = Index;
188 const char *Str = Args.getArgString(Index);
193 return new Arg(getOption(TheInputOptionID), Str, Index++, Str);
220 if (Arg *A = Option(Start, this).accept(Args, Index, ArgSize))
224 if (Prev != Index)
228 return new Arg(getOption(TheUnknownOptionID), Str, Index++, Str);
240 unsigned Index = 0, End = ArgEnd - ArgBegin; local
241 while (Index < End) {
243 if (Args->getArgString(Index)[
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/components/dispatcher/
H A Ddsmthdat.c61 UINT32 Index,
67 UINT32 Index,
75 UINT32 Index,
155 UINT32 Index; local
163 for (Index = 0; Index < ACPI_METHOD_NUM_LOCALS; Index++)
165 if (WalkState->LocalVariables[Index].Object)
168 Index, WalkState->LocalVariables[Index]
218 UINT32 Index = 0; local
273 AcpiDsMethodDataGetNode( UINT8 Type, UINT32 Index, ACPI_WALK_STATE *WalkState, ACPI_NAMESPACE_NODE **Node) argument
345 AcpiDsMethodDataSetValue( UINT8 Type, UINT32 Index, ACPI_OPERAND_OBJECT *Object, ACPI_WALK_STATE *WalkState) argument
404 AcpiDsMethodDataGetValue( UINT8 Type, UINT32 Index, ACPI_WALK_STATE *WalkState, ACPI_OPERAND_OBJECT **DestDesc) argument
517 AcpiDsMethodDataDeleteValue( UINT8 Type, UINT32 Index, ACPI_WALK_STATE *WalkState) argument
583 AcpiDsStoreObjectToLocal( UINT8 Type, UINT32 Index, ACPI_OPERAND_OBJECT *ObjDesc, ACPI_WALK_STATE *WalkState) argument
735 AcpiDsMethodDataGetType( UINT16 Opcode, UINT32 Index, ACPI_WALK_STATE *WalkState) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DSelectorLocationsKind.cpp20 static SourceLocation getStandardSelLoc(unsigned Index, argument
27 assert(Index == 0);
35 assert(Index < NumSelArgs);
38 IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Index);
65 SourceLocation getArgLoc(unsigned Index, ArrayRef<T*> Args) { argument
66 return Index < Args.size() ? getArgLoc(Args[Index]) : SourceLocation();
104 SourceLocation clang::getStandardSelectorLoc(unsigned Index, argument
109 return getStandardSelLoc(Index, Sel, WithArgSpace,
110 getArgLoc(Index, Arg
121 getStandardSelectorLoc(unsigned Index, Selector Sel, bool WithArgSpace, ArrayRef<ParmVarDecl *> Args, SourceLocation EndLoc) argument
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DLoopPass.cpp140 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
141 LoopPass *LP = getContainedPass(Index);
155 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
156 LoopPass *LP = getContainedPass(Index);
201 for (unsigned Index = 0; Index < getNumContainedPasse
[all...]
H A DRegionPass.cpp69 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 < getNumContainedPasse
[all...]
/freebsd-10.0-release/sys/contrib/dev/acpica/components/namespace/
H A Dnsnames.c78 ACPI_SIZE Index; local
87 Index = Size - 1;
88 if (Index < ACPI_NAME_SIZE)
98 NameBuffer[Index] = 0;
100 while ((Index > ACPI_NAME_SIZE) && (ParentNode != AcpiGbl_RootNode))
102 Index -= ACPI_NAME_SIZE;
106 ACPI_MOVE_32_TO_32 ((NameBuffer + Index), &ParentNode->Name);
111 Index--;
112 NameBuffer[Index] = ACPI_PATH_SEPARATOR;
117 NameBuffer[Index]
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DTypeLocBuilder.h34 size_t Index; member in class:clang::TypeLocBuilder
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);
147 Index
[all...]
/freebsd-10.0-release/contrib/llvm/tools/llvm-objdump/
H A DMCFunction.cpp48 uint64_t Index = WorkList.pop_back_val(); local
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
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Option/
H A DArg.h51 unsigned Index; member in class:llvm::opt::Arg
65 Arg(const Option Opt, StringRef Spelling, unsigned Index,
67 Arg(const Option Opt, StringRef Spelling, unsigned Index,
69 Arg(const Option Opt, StringRef Spelling, unsigned Index,
75 unsigned getIndex() const { return Index; }
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Driver/
H A DArg.h52 unsigned Index; member in class:clang::driver::Arg
66 Arg(const Option Opt, StringRef Spelling, unsigned Index,
68 Arg(const Option Opt, StringRef Spelling, unsigned Index,
70 Arg(const Option Opt, StringRef Spelling, unsigned Index,
76 unsigned getIndex() const { return Index; }
/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DArrayRecycler.h71 uint8_t Index; member in class:llvm::ArrayRecycler::Capacity
72 explicit Capacity(uint8_t idx) : Index(idx) {}
75 Capacity() : Index(0) {}
83 size_t getSize() const { return size_t(1u) << Index; }
86 unsigned getBucket() const { return Index; }
91 Capacity getNext() const { return Capacity(Index + 1); }
/freebsd-10.0-release/sys/contrib/dev/acpica/components/executer/
H A Dexoparg6.c229 UINT64 Index; local
257 Index = Operand[5]->Integer.Value;
258 if (Index >= Operand[0]->Package.Count)
261 "Index (0x%8.8X%8.8X) beyond package end (0x%X)",
262 ACPI_FORMAT_UINT64 (Index), Operand[0]->Package.Count));
289 for ( ; Index < Operand[0]->Package.Count; Index++)
293 ThisElement = Operand[0]->Package.Elements[Index];
319 /* Match found: Index is the return value */
321 ReturnDesc->Integer.Value = Index;
[all...]
H A Dexnames.c186 UINT32 Index; local
207 for (Index = 0;
208 (Index < ACPI_NAME_SIZE) && (AcpiUtValidAcpiChar (*AmlAddress, 0));
209 Index++)
211 CharBuf[Index] = *AmlAddress++;
212 ACPI_DEBUG_PRINT ((ACPI_DB_LOAD, "%c\n", CharBuf[Index]));
218 if (Index == 4)
236 else if (Index == 0)
/freebsd-10.0-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp54 // Base + Disp + Index + (IncludesDynAlloc ? ADJDYNALLOC : 0)
57 SDValue Index; member in struct:__anon2503::SystemZAddressingMode
61 : Form(form), DR(dr), Base(), Disp(0), Index(),
80 errs() << " Index ";
81 if (Index.getNode() != 0)
82 Index.getNode()->dump();
114 SDValue &Base, SDValue &Disp, SDValue &Index);
124 // displacement and index in Base, Disp and Index respectively.
127 SDValue &Base, SDValue &Disp, SDValue &Index);
154 SDValue &Index) {
153 selectBDXAddr12Only(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) argument
159 selectBDXAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) argument
165 selectDynAlloc12Only(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) argument
171 selectBDXAddr20Only(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) argument
177 selectBDXAddr20Only128(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) argument
183 selectBDXAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) argument
189 selectLAAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) argument
195 selectLAAddr20Pair(SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) argument
284 expandIndex(SystemZAddressingMode &AM, SDValue Base, SDValue Index) argument
364 shouldUseLA(SDNode *Base, int64_t Disp, SDNode *Index) argument
487 getAddressOperands(const SystemZAddressingMode &AM, EVT VT, SDValue &Base, SDValue &Disp, SDValue &Index) argument
509 selectBDXAddr(SystemZAddressingMode::AddrForm Form, SystemZAddressingMode::DispRange DR, SDValue Addr, SDValue &Base, SDValue &Disp, SDValue &Index) argument
608 SDValue Base, Disp, Index; local
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/IR/
H A DAttributes.h213 AttributeSetNode *getAttributes(unsigned Index) const;
237 static AttributeSet get(LLVMContext &C, unsigned Index,
239 static AttributeSet get(LLVMContext &C, unsigned Index, AttrBuilder &B);
243 AttributeSet addAttribute(LLVMContext &C, unsigned Index,
248 AttributeSet addAttribute(LLVMContext &C, unsigned Index,
253 AttributeSet addAttributes(LLVMContext &C, unsigned Index,
259 AttributeSet removeAttribute(LLVMContext &C, unsigned Index,
265 AttributeSet removeAttributes(LLVMContext &C, unsigned Index,
276 AttributeSet getParamAttributes(unsigned Index) const;
285 bool hasAttribute(unsigned Index, Attribut
[all...]
/freebsd-10.0-release/contrib/llvm/tools/llvm-mc/
H A DDisassembler.cpp60 uint64_t Index; local
62 for (Index = 0; Index < Bytes.size(); Index += Size) {
66 S = DisAsm.getInstruction(Inst, Size, memoryObject, Index,
70 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second),
78 SM.PrintMessage(SMLoc::getFromPointer(Bytes[Index].second),
/freebsd-10.0-release/contrib/llvm/lib/IR/
H A DAttributes.cpp501 uint64_t AttributeSetImpl::Raw(unsigned Index) const {
503 if (getSlotIndex(I) != Index) continue;
575 unsigned Index = I->first; local
577 while (I != E && I->first == Index) {
582 AttrPairVec.push_back(std::make_pair(Index,
599 AttributeSet AttributeSet::get(LLVMContext &C, unsigned Index, AttrBuilder &B) { argument
611 Attrs.push_back(std::make_pair(Index, Attribute::
614 Attrs.push_back(std::make_pair(Index, Attribute::
617 Attrs.push_back(std::make_pair(Index, Attribute::get(C, Kind)));
623 Attrs.push_back(std::make_pair(Index, Attribut
628 get(LLVMContext &C, unsigned Index, ArrayRef<Attribute::AttrKind> Kind) argument
650 addAttribute(LLVMContext &C, unsigned Index, Attribute::AttrKind Attr) const argument
656 addAttribute(LLVMContext &C, unsigned Index, StringRef Kind) const argument
663 addAttributes(LLVMContext &C, unsigned Index, AttributeSet Attrs) const argument
712 removeAttribute(LLVMContext &C, unsigned Index, Attribute::AttrKind Attr) const argument
718 removeAttributes(LLVMContext &C, unsigned Index, AttributeSet Attrs) const argument
797 hasAttribute(unsigned Index, Attribute::AttrKind Kind) const argument
802 hasAttribute(unsigned Index, StringRef Kind) const argument
826 getAttribute(unsigned Index, Attribute::AttrKind Kind) const argument
832 getAttribute(unsigned Index, StringRef Kind) const argument
848 getAsString(unsigned Index, bool InAttrGrp) const argument
910 uint64_t Index = getSlotIndex(i); local
926 AttrBuilder(AttributeSet AS, unsigned Index) argument
988 removeAttributes(AttributeSet A, uint64_t Index) argument
1140 typeIncompatible(Type *Ty, uint64_t Index) argument
[all...]
H A DPassManager.cpp190 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
191 BasicBlockPass *BP = getContainedPass(Index);
348 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
349 ModulePass *MP = getContainedPass(Index);
895 for (unsigned Index = 0; Index < PMT_Las
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Target/Mips/
H A DMipsMachineFunction.h78 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; } argument
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DSelectorLocationsKind.h57 SourceLocation getStandardSelectorLoc(unsigned Index,
75 SourceLocation getStandardSelectorLoc(unsigned Index,
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedArraySubscriptChecker.cpp37 const Expr *Index = A->getIdx(); local
38 if (!C.getSVal(Index).isUndef())

Completed in 560 milliseconds

1234567891011